- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 332 for IdentityN (0.29 seconds)
-
build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts
import gradlebuild.identity.extension.GradleModuleExtension import java.util.jar.Attributes plugins { id("gradlebuild.module-identity") } val gradleModule = the<GradleModuleExtension>() configureJarTasks() fun configureJarTasks() { tasks.withType<Jar>().configureEach { archiveBaseName = gradleModule.identity.baseName archiveVersion = gradleModule.identity.version.map { it.baseVersion.version }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Jan 06 16:39:05 GMT 2026 - 713 bytes - Click Count (0) -
docs/sts/wso2.md
By default, a UUID is issued as an id_token in WSO2 Identity Server, which is of the first type above. But, it also can be configured to issue a self-contained id_token (JWT), which is of the second type above. - Open the `<IS_HOME>/repository/conf/identity/identity.xml` file and uncomment the following entry under `<OAuth>` element. ``` <IdentityOAuthTokenGenerator>org.wso2.carbon.identity.oauth2.token.JWTTokenIssuer</IdentityOAuthTokenGenerator> ```
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 8.7K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/base/EquivalenceTest.java
new EqualsTester() .addEqualityGroup( Equivalence.identity().onResultOf(Functions.toStringFunction()), Equivalence.identity().onResultOf(Functions.toStringFunction())) .addEqualityGroup(Equivalence.equals().onResultOf(Functions.toStringFunction())) .addEqualityGroup(Equivalence.identity().onResultOf(Functions.identity())) .testEquals(); } public void testEquivalentTo() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 6.6K bytes - Click Count (0) -
docs/sts/dex.md
# Dex Quickstart Guide [](https://slack.min.io)
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 3.8K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/testing/DummyProxy.java
public int hashCode() { return identity().hashCode(); } @Override public boolean equals(@Nullable Object obj) { if (obj instanceof DummyHandler) { DummyHandler that = (DummyHandler) obj; return identity().equals(that.identity()); } else { return false; } } private DummyProxy identity() { return DummyProxy.this; }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Aug 11 22:10:29 GMT 2025 - 4.5K bytes - Click Count (0) -
internal/config/lambda/event/event.go
// You should have received a copy of the GNU Affero General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. package event import "net/http" // Identity represents access key who caused the event. type Identity struct { Type string `json:"type"` PrincipalID string `json:"principalId"` AccessKeyID string `json:"accessKeyId"` } // UserRequest user request headers
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Mar 07 16:12:41 GMT 2023 - 2.6K bytes - Click Count (0) -
guava-tests/test/com/google/common/base/FunctionsTest.java
public void testIdentity_same() { Function<@Nullable String, @Nullable String> identity = Functions.identity(); assertThat(identity.apply(null)).isNull(); assertThat(identity.apply("foo")).isSameInstanceAs("foo"); } public void testIdentity_notSame() { Function<Long, Long> identity = Functions.identity(); assertThat(identity.apply(new Long(135135L))).isNotSameInstanceAs(new Long(135135L)); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 15:59:55 GMT 2026 - 16.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/BooleanFunctionTest.java
assertFalse(isNotNull.apply(null)); } @Test public void test_apply_boolean() { BooleanFunction<Boolean> identity = b -> b != null && b; assertTrue(identity.apply(true)); assertFalse(identity.apply(false)); assertFalse(identity.apply(null)); } @Test public void test_lambda_expression() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 2.6K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/base/ConverterTest.java
assertThat(stringIdentityConverter.reverse().convert(STR_VAL)).isSameInstanceAs(STR_VAL); assertThat(stringIdentityConverter.toString()).isEqualTo("Converter.identity()"); assertThat(Converter.identity()).isSameInstanceAs(Converter.identity()); } public void testFrom() { Function<String, Integer> forward = Integer::parseInt; Function<Object, String> backward = toStringFunction();
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 18 18:06:14 GMT 2026 - 8.3K bytes - Click Count (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/extension/GradleModuleExtension.kt
companion object { const val NAME: String = "gradleModule" } @get:Nested abstract val identity: ModuleIdentity fun identity(action: ModuleIdentity.() -> Unit) { action(identity) } /** * Describes the target processes that the code in this module must be ableCreated: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 22:40:18 GMT 2026 - 4.8K bytes - Click Count (0)