- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 105 for anonymous (0.08 sec)
-
manifests/addons/values-kiali.yaml
# We set up anonymous authentication as this is for demos. auth: strategy: anonymous deployment: pod_labels: sidecar.istio.io/inject: "false" ingress_enabled: false image_pull_policy: IfNotPresent login_token: signing_key: CHANGEME00000000 external_services: # Kiali will not start up without tracing service. We don't want to require it. tracing:
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Mon Oct 21 15:14:56 UTC 2024 - 385 bytes - Viewed (0) -
cmd/bucket-handlers_test.go
} } // Test for Anonymous/unsigned http request. anonReq, err := newTestRequest(http.MethodHead, getHEADBucketURL("", bucketName), 0, nil) if err != nil { t.Fatalf("MinIO %s: Failed to create an anonymous request for bucket \"%s\": <ERROR> %v", instanceType, bucketName, err) } // ExecObjectLayerAPIAnonTest - Calls the HTTP API handler using the anonymous request, validates the ErrAccessDeniedResponse,
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jun 10 15:50:49 UTC 2024 - 39.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
byte[] token = negoResp.getSecurityBlob(); final int securityMode = negoResp.getSecurityMode(); boolean anonymous = this.credentials.isAnonymous(); final boolean doSigning = securityMode != 0 && !anonymous; long newSessId = 0; long curSessId = this.sessionId; synchronized ( trans ) { this.credentials.refresh();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 17:41:04 UTC 2021 - 49K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/InvokableTest.java
final int i = 1; final String s = "hello world"; Class<?> anonymous = new Runnable() { @Override public void run() { System.out.println(s + i); } }.getClass(); Constructor<?> constructor = anonymous.getDeclaredConstructors()[0]; assertEquals(0, Invokable.from(constructor).getParameters().size()); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 30.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/reflect/InvokableTest.java
final int i = 1; final String s = "hello world"; Class<?> anonymous = new Runnable() { @Override public void run() { System.out.println(s + i); } }.getClass(); Constructor<?> constructor = anonymous.getDeclaredConstructors()[0]; assertEquals(0, Invokable.from(constructor).getParameters().size()); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 30.7K bytes - Viewed (0) -
src/test/java/jcifs/tests/ContextConfigTest.java
NtlmPasswordAuthenticator ntlmGuestCreds = guestCreds.unwrap(NtlmPasswordAuthenticator.class); assertThat("anonymous", ntlmGuestCreds.isAnonymous(), CoreMatchers.is(false)); assertThat("guest", ntlmGuestCreds.isGuest(), CoreMatchers.is(true)); Credentials anonCreds = this.context.withAnonymousCredentials().getCredentials();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 9.9K bytes - Viewed (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AnonymousClassesFilteringTest.kt
* limitations under the License. */ package gradlebuild.binarycompatibility import org.junit.Test class AnonymousClassesFilteringTest : AbstractBinaryCompatibilityTest() { @Test fun `anonymous classes are excluded (java)`() { checkBinaryCompatibleJava( v1 = """ public class Source { public void some() {} } """,
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/Credentials.java
/** * @return the domain the user account is in */ String getUserDomain (); /** * @return whether these are anonymous credentials */ boolean isAnonymous (); /** * @return whether these are guest credentials */ boolean isGuest ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.3K bytes - Viewed (0) -
build-logic/documentation/src/test/resources/org/gradle/test/GroovyClassWithInnerTypes.groovy
/** * This is an inner inner class. */ class AnotherInner { InnerClass outer } } GroovyInterface getSomeProp() { // ignore anonymous classes return new GroovyInterface() {} } InnerClass.AnotherInner innerClassProp
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 609 bytes - Viewed (0) -
cmd/bucket-policy-handlers_test.go
} } } // Test for Anonymous/unsigned http request. // Bucket policy related functions doesn't support anonymous requests, setting policies shouldn't make a difference. // create unsigned HTTP request for PutBucketPolicyHandler. anonReq, err := newTestRequest(http.MethodGet, getPutPolicyURL("", bucketName), 0, nil) if err != nil { t.Fatalf("MinIO %s: Failed to create an anonymous request for bucket \"%s\": <ERROR> %v",
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jun 10 15:50:49 UTC 2024 - 32.9K bytes - Viewed (0)