- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 79 for ANONYMOUS (0.08 sec)
-
compat/maven-compat/src/test/java/org/apache/maven/artifact/resolver/ArtifactResolverTest.java
assertLocalArtifactPresent(b); } @Override protected Artifact createArtifact(String groupId, String artifactId, String version, String type) throws Exception { // for the anonymous classes return super.createArtifact(groupId, artifactId, version, type); } @Test void testTransitiveResolutionWhereAllArtifactsArePresentInTheLocalRepository() throws Exception {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Mar 26 10:49:22 UTC 2025 - 10.1K bytes - Viewed (0) -
cmd/bucket-policy.go
groups = cred.Groups ) if cred.IsTemp() || cred.IsServiceAccount() { // For derived credentials, check the parent user's permissions. username = cred.ParentUser } principalType := "Anonymous" if username != "" { principalType = "User" if len(claims) > 0 { principalType = "AssumedRole" } if username == globalActiveCred.AccessKey { principalType = "Account" } }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 7.9K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.5.md
* Changes the default value of the "anonymous-auth" flag to a safer default value of false. This affects kube apiserver and federation apiserver. See https://groups.google.com/forum/#!topic/kubernetes-announce/iclRj-6Nfsg for more details. ([#38708](https://github.com/kubernetes/kubernetes/pull/38708), [@erictune](https://github.com/erictune))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 136.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java
import org.codelibs.fess.entity.DataStoreParams; import org.codelibs.fess.unit.UnitFessTestCase; public class IndexUpdateCallbackTest extends UnitFessTestCase { public void test_interface_methods() { // Test with anonymous implementation IndexUpdateCallback callback = new IndexUpdateCallback() { private final AtomicLong docSize = new AtomicLong(0); private final AtomicLong execTime = new AtomicLong(0);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.4K bytes - Viewed (0) -
cmd/test-utils_test.go
// response for anonymous/unsigned and unknown signature type HTTP request. // Here is the brief description of some of the arguments to the function below. // // apiRouter - http.Handler with the relevant API endPoint (API endPoint under test) registered. // anonReq - unsigned *http.Request to invoke the handler's response for anonymous requests.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 77K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthentication.java
/** The CIFS context for this authentication */ private CIFSContext context; /** * */ private NtlmPasswordAuthentication() { } /** * Construct anonymous credentials * * @param tc the CIFS context to use */ public NtlmPasswordAuthentication(final CIFSContext tc) { this(tc, "", "", ""); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/jcifs/CIFSContextTest.java
// Then assertEquals(newContext, context); verify(mockContext).withDefaultCredentials(); } @Test @DisplayName("Should get context with anonymous credentials") void testWithAnonymousCredentials() { // Given CIFSContext newContext = mock(CIFSContext.class); when(mockContext.withAnonymousCredentials()).thenReturn(newContext);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java
static String DEFAULT_USERNAME; static String DEFAULT_PASSWORD; static final String BLANK = ""; /** * Anonymous credentials instance with empty domain, username, and password. */ public static final NtlmPasswordAuthentication ANONYMOUS = new NtlmPasswordAuthentication("", "", ""); static void initDefaults() { if (DEFAULT_DOMAIN != null) { return; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 26.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/eventbus/EventBusTest.java
* methods to be subscribed (since both are annotated @Subscribe) without specifically checking * for bridge methods. */ // We use an anonymous class to be sure that we generate two methods (bridge and original). @SuppressWarnings("AnonymousToLambda") public void testRegistrationWithBridgeMethod() { AtomicInteger calls = new AtomicInteger();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 17:42:14 UTC 2025 - 11.3K bytes - Viewed (0) -
cmd/globals.go
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Sep 03 18:23:41 UTC 2024 - 16.2K bytes - Viewed (1)