Searched refs:raw (Results 1 - 25 of 1168) sorted by relevance

1234567891011>>

/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/messages/
H A DMessageBuilderTest.java60 Message.raw("Once"),
61 Message.raw(" upon"),
62 Message.raw(" a"),
63 Message.raw(" time.") },
68 Message.raw("Once"),
70 Message.raw(" a"),
76 Message.raw("North"),
77 Message.raw(" America"),
78 Message.raw(" is"),
79 Message.raw(" divide
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/messages/
H A DMessageBuilderTest.java59 Message.raw("Once"),
60 Message.raw(" upon"),
61 Message.raw(" a"),
62 Message.raw(" time.") },
67 Message.raw("Once"),
69 Message.raw(" a"),
75 Message.raw("North"),
76 Message.raw(" America"),
77 Message.raw(" is"),
78 Message.raw(" divide
[all...]
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/messages/
H A DMessageBuilderTest.java60 Message.raw("Once"),
61 Message.raw(" upon"),
62 Message.raw(" a"),
63 Message.raw(" time.") },
68 Message.raw("Once"),
70 Message.raw(" a"),
76 Message.raw("North"),
77 Message.raw(" America"),
78 Message.raw(" is"),
79 Message.raw(" divide
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/messages/
H A DMessageBuilderTest.java59 Message.raw("Once"),
60 Message.raw(" upon"),
61 Message.raw(" a"),
62 Message.raw(" time.") },
67 Message.raw("Once"),
69 Message.raw(" a"),
75 Message.raw("North"),
76 Message.raw(" America"),
77 Message.raw(" is"),
78 Message.raw(" divide
[all...]
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/messages/
H A DMessageBuilderTest.java60 Message.raw("Once"),
61 Message.raw(" upon"),
62 Message.raw(" a"),
63 Message.raw(" time.") },
68 Message.raw("Once"),
70 Message.raw(" a"),
76 Message.raw("North"),
77 Message.raw(" America"),
78 Message.raw(" is"),
79 Message.raw(" divide
[all...]
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/common/views/jsonSchema/iteratees/
H A DemptyProperties.js22 ], (_) => (schemaValuePair) => _.isEmpty(schemaValuePair.schema.raw.defaultProperties));
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/common/models/
H A DJSONSchema.js58 function groupTopLevelSimpleProperties (raw) {
59 const collectionProperties = _(raw.properties)
65 const simplePropertiesToGroup = _.omit(raw.properties, ...predicate);
68 return raw;
71 const schema = _.cloneDeep(raw);
95 * @param {Object} raw Schema
99 function ungroupCollectionProperties (raw, groupKey) {
100 const collectionProperties = _.pick(raw.properties[groupKey].properties, (value) => {
105 return raw;
108 const schema = _.cloneDeep(raw);
[all...]
H A DJSONValues.js43 function groupTopLevelSimpleValues (raw) {
44 const collectionProperties = _(raw)
50 const simplePropertiesToGroup = _.omit(raw, ...predicate);
53 return raw;
57 ..._.omit(raw, _.keys(simplePropertiesToGroup)),
67 * @param {Object} raw Values
71 function ungroupCollectionProperties (raw, groupKey) {
72 const collectionProperties = _.pick(raw[groupKey], (value) => {
77 return raw;
80 const values = { ...raw,
[all...]
/forgerock/openam/openam-ui/openam-ui-ria/src/test/js/org/forgerock/openam/ui/common/models/
H A DJSONSchemaTest.js96 expect(schemaWithGlobalProps.raw.properties).to.contain.keys("global");
97 expect(schemaWithGlobalProps.raw.properties.global.properties).to.contain.keys("globalSimpleProperty");
102 expect(schemaWithGlobalProps.raw.properties.global.title).eq("Global Attributes");
106 expect(schemaWithGlobalProps.raw.properties.global.propertyOrder).eq(-10);
110 expect(schemaWithGlobalProps.raw.properties).to.contain.keys("global");
111 expect(schemaWithGlobalProps.raw.properties.global.properties).to.not.have
117 expect(schemaWithDefaultsProps.raw.properties).to.contain.keys("defaultsCollectionProperty");
121 expect(schemaWithDefaultsProps.raw.properties.defaults.properties).to.contain
126 expect(schemaWithDefaultsCollectionProps.raw.properties).to.contain.keys("defaultsCollectionProperty");
130 expect(schemaWithDefaultsCollectionProps.raw
[all...]
H A DJSONValuesTest.js64 expect(globalValues.raw).to.contain.keys("global");
65 expect(globalValues.raw.global).to.contain.keys("globalSimpleKey");
69 expect(globalValues.raw).to.contain.keys("global");
70 expect(globalValues.raw.global).to.not.contain.keys("globalCollectionKey");
75 expect(defaultsValues.raw).to.contain.keys("defaults");
76 expect(defaultsValues.raw.defaults).to.contain.keys("defaultsSimple");
80 expect(defaultsValues.raw).to.contain.keys("defaultsCollection");
84 expect(defaultsValues.raw).to.contain.keys("_defaultsCollectionProperties");
88 expect(defaultsCollectionValues.raw).to.contain.keys("defaultsCollection");
92 expect(defaultsCollectionValues.raw)
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSAssertionArtifact.java96 byte raw[] = Base64.decode(theArtifact);
97 if(raw == null) {
105 if (raw.length != ARTIFACT_1_LENGTH) {
108 + " not 42:" + raw.length);
114 if ((raw[0] != ARTIFACT_1_TYPE_CODE_0) ||
115 (raw[1] != ARTIFACT_1_TYPE_CODE_1)) {
126 System.arraycopy(raw, 2, sBytes, 0, IFSConstants.ART_ID_LENGTH);
127 System.arraycopy(raw, 22, aBytes, 0, IFSConstants.ART_ID_LENGTH);
154 byte raw[] = new byte[42];
155 raw[
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/federation/message/
H A DFSAssertionArtifact.java96 byte raw[] = Base64.decode(theArtifact);
97 if(raw == null) {
105 if (raw.length != ARTIFACT_1_LENGTH) {
108 + " not 42:" + raw.length);
114 if ((raw[0] != ARTIFACT_1_TYPE_CODE_0) ||
115 (raw[1] != ARTIFACT_1_TYPE_CODE_1)) {
126 System.arraycopy(raw, 2, sBytes, 0, IFSConstants.ART_ID_LENGTH);
127 System.arraycopy(raw, 22, aBytes, 0, IFSConstants.ART_ID_LENGTH);
154 byte raw[] = new byte[42];
155 raw[
[all...]
/forgerock/opendj-b2.6/tests/unit-tests-testng/src/server/org/opends/server/util/args/
H A DTestSubCommand.java52 .getClass().getName(), Message.raw("test description"), true);
53 SubCommand sc = new SubCommand(parser, "sub-command1", Message.raw("XXX"));
68 .getClass().getName(), Message.raw("test description"), true);
70 Message.raw("XXX"));
85 .getClass().getName(), Message.raw("test description"), true);
87 "args1 arg2 [arg3 arg4]", Message.raw("XXX"));
102 .getClass().getName(), Message.raw("test description"), true);
103 SubCommand sc = new SubCommand(parser, "sub-command1", Message.raw("XXX"));
118 .getClass().getName(), Message.raw("test description"), true);
120 Message.raw("XX
[all...]
/forgerock/opendj2/tests/unit-tests-testng/src/server/org/opends/server/util/args/
H A DTestSubCommand.java51 .getClass().getName(), Message.raw("test description"), true);
52 SubCommand sc = new SubCommand(parser, "sub-command1", Message.raw("XXX"));
67 .getClass().getName(), Message.raw("test description"), true);
69 Message.raw("XXX"));
84 .getClass().getName(), Message.raw("test description"), true);
86 "args1 arg2 [arg3 arg4]", Message.raw("XXX"));
101 .getClass().getName(), Message.raw("test description"), true);
102 SubCommand sc = new SubCommand(parser, "sub-command1", Message.raw("XXX"));
117 .getClass().getName(), Message.raw("test description"), true);
119 Message.raw("XX
[all...]
/forgerock/opendj2.6.2/tests/unit-tests-testng/src/server/org/opends/server/util/args/
H A DTestSubCommand.java52 .getClass().getName(), Message.raw("test description"), true);
53 SubCommand sc = new SubCommand(parser, "sub-command1", Message.raw("XXX"));
68 .getClass().getName(), Message.raw("test description"), true);
70 Message.raw("XXX"));
85 .getClass().getName(), Message.raw("test description"), true);
87 "args1 arg2 [arg3 arg4]", Message.raw("XXX"));
102 .getClass().getName(), Message.raw("test description"), true);
103 SubCommand sc = new SubCommand(parser, "sub-command1", Message.raw("XXX"));
118 .getClass().getName(), Message.raw("test description"), true);
120 Message.raw("XX
[all...]
/forgerock/opendj2-hg/tests/unit-tests-testng/src/server/org/opends/server/util/args/
H A DTestSubCommand.java51 .getClass().getName(), Message.raw("test description"), true);
52 SubCommand sc = new SubCommand(parser, "sub-command1", Message.raw("XXX"));
67 .getClass().getName(), Message.raw("test description"), true);
69 Message.raw("XXX"));
84 .getClass().getName(), Message.raw("test description"), true);
86 "args1 arg2 [arg3 arg4]", Message.raw("XXX"));
101 .getClass().getName(), Message.raw("test description"), true);
102 SubCommand sc = new SubCommand(parser, "sub-command1", Message.raw("XXX"));
117 .getClass().getName(), Message.raw("test description"), true);
119 Message.raw("XX
[all...]
/forgerock/opendj2-jel-hg/tests/unit-tests-testng/src/server/org/opends/server/util/args/
H A DTestSubCommand.java52 .getClass().getName(), Message.raw("test description"), true);
53 SubCommand sc = new SubCommand(parser, "sub-command1", Message.raw("XXX"));
68 .getClass().getName(), Message.raw("test description"), true);
70 Message.raw("XXX"));
85 .getClass().getName(), Message.raw("test description"), true);
87 "args1 arg2 [arg3 arg4]", Message.raw("XXX"));
102 .getClass().getName(), Message.raw("test description"), true);
103 SubCommand sc = new SubCommand(parser, "sub-command1", Message.raw("XXX"));
118 .getClass().getName(), Message.raw("test description"), true);
120 Message.raw("XX
[all...]
/forgerock/opendj2/src/quicksetup/org/opends/quicksetup/util/
H A DWebBrowserLauncher.java82 Message.raw("Could not find web browser"),
93 Message.raw("Class Not Found Exception"), cnfe);
97 Message.raw("IO Exception"), ioe);
101 Message.raw("Interrupted Exception"), ie);
105 Message.raw("No Such Method Exception"), nsme);
109 Message.raw("Invocation Target Exception"), ite);
113 Message.raw("Illegal Access Exception"), iae);
/forgerock/opendj-b2.6/src/quicksetup/org/opends/quicksetup/util/
H A DWebBrowserLauncher.java83 Message.raw("Could not find web browser"),
94 Message.raw("Class Not Found Exception"), cnfe);
98 Message.raw("IO Exception"), ioe);
102 Message.raw("Interrupted Exception"), ie);
106 Message.raw("No Such Method Exception"), nsme);
110 Message.raw("Invocation Target Exception"), ite);
114 Message.raw("Illegal Access Exception"), iae);
/forgerock/opendj2.6.2/src/quicksetup/org/opends/quicksetup/util/
H A DWebBrowserLauncher.java83 Message.raw("Could not find web browser"),
94 Message.raw("Class Not Found Exception"), cnfe);
98 Message.raw("IO Exception"), ioe);
102 Message.raw("Interrupted Exception"), ie);
106 Message.raw("No Such Method Exception"), nsme);
110 Message.raw("Invocation Target Exception"), ite);
114 Message.raw("Illegal Access Exception"), iae);
/forgerock/opendj2-hg/src/quicksetup/org/opends/quicksetup/util/
H A DWebBrowserLauncher.java82 Message.raw("Could not find web browser"),
93 Message.raw("Class Not Found Exception"), cnfe);
97 Message.raw("IO Exception"), ioe);
101 Message.raw("Interrupted Exception"), ie);
105 Message.raw("No Such Method Exception"), nsme);
109 Message.raw("Invocation Target Exception"), ite);
113 Message.raw("Illegal Access Exception"), iae);
/forgerock/opendj2-jel-hg/src/quicksetup/org/opends/quicksetup/util/
H A DWebBrowserLauncher.java83 Message.raw("Could not find web browser"),
94 Message.raw("Class Not Found Exception"), cnfe);
98 Message.raw("IO Exception"), ioe);
102 Message.raw("Interrupted Exception"), ie);
106 Message.raw("No Such Method Exception"), nsme);
110 Message.raw("Invocation Target Exception"), ite);
114 Message.raw("Illegal Access Exception"), iae);
/forgerock/openam/openam-ui/openam-ui-ria/src/main/js/org/forgerock/openam/ui/admin/views/common/server/
H A DEditServerView.js37 return _(schema.raw.properties)
67 createBody: () => new InlineEditTable({ values: _.cloneDeep(this.values.raw) }),
75 if (schema.raw.properties[id].type === "array") {
77 values: _.cloneDeep(this.values.raw)[id],
78 rowSchema: schema.raw.properties[id].items
82 schema: new JSONSchema(schema.raw.properties[id]),
83 values: new JSONValues(_.cloneDeep(this.values.raw)[id])
90 properties: this.schema.raw.properties,
132 ServersService.servers.update(this.sectionId, this.values.raw, this.serverId)
150 propValue = this.values.raw[thi
[all...]
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/protocol/
H A DAssertionArtifact.java81 byte raw[] = null;
83 raw = Base64.decode(theArtifact);
94 if (raw.length != ARTIFACT_1_LENGTH) {
97 + " not 42:" + raw.length);
104 if ((raw[0] != ARTIFACT_1_TYPE_CODE_0) ||
105 (raw[1] != ARTIFACT_1_TYPE_CODE_1)) {
117 System.arraycopy(raw, 2, sBytes, 0, SAMLConstants.ID_LENGTH);
118 System.arraycopy(raw, 22, aBytes, 0, SAMLConstants.ID_LENGTH);
166 byte raw[] = new byte[42];
167 raw[
[all...]
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/saml/protocol/
H A DAssertionArtifact.java81 byte raw[] = null;
83 raw = Base64.decode(theArtifact);
94 if (raw.length != ARTIFACT_1_LENGTH) {
97 + " not 42:" + raw.length);
104 if ((raw[0] != ARTIFACT_1_TYPE_CODE_0) ||
105 (raw[1] != ARTIFACT_1_TYPE_CODE_1)) {
117 System.arraycopy(raw, 2, sBytes, 0, SAMLConstants.ID_LENGTH);
118 System.arraycopy(raw, 22, aBytes, 0, SAMLConstants.ID_LENGTH);
166 byte raw[] = new byte[42];
167 raw[
[all...]

Completed in 1124 milliseconds

1234567891011>>