Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 952 for Credential (0.14 sec)

  1. pkg/config/analysis/analyzers/testdata/gateway-secrets.yaml

    spec:
      selector:
        istio: ingressgateway # use istio default ingress gateway, so we expect the credential in istio-system
      servers:
      - port:
          number: 443
          name: https
          protocol: HTTPS
        tls:
          mode: SIMPLE
          credentialName: "httpbin-credential" # Correct credential, should not produce an error message
        hosts:
        - "httpbin.example.com"
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 17 11:51:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  2. platforms/software/resources-gcs/src/test/groovy/org/gradle/internal/resource/transport/gcp/gcs/RetryHttpInitializerWrapperTest.groovy

            .setLowLevelHttpResponse(httpResponse)
            .build()
        def jsonFactory = new GsonFactory()
        def credential = Mock(Credential)
        def credentialSupplier = new Supplier<Credential>() {
            @Override
            Credential get() {
                return credential
            }
        }
    
        def "initialize should configure request for retries"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/input/sidecar_template.yaml

          defaultTemplates: ["sidecar", "credential-volume"]
          templates:
            credential-volume: |
              spec:
                volumes:
                - name: application-credentials
                  secret:
                    secretName: secret
                containers:
                - name: istio-proxy
                  volumeMounts:
                  - name: application-credentials
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 26 17:54:11 UTC 2021
    - 566 bytes
    - Viewed (0)
  4. api/go1.9.txt

    pkg syscall (netbsd-386-cgo), type Credential struct, NoSetGroups bool
    pkg syscall (netbsd-386), type Credential struct, NoSetGroups bool
    pkg syscall (netbsd-amd64-cgo), type Credential struct, NoSetGroups bool
    pkg syscall (netbsd-amd64), type Credential struct, NoSetGroups bool
    pkg syscall (netbsd-arm-cgo), type Credential struct, NoSetGroups bool
    pkg syscall (netbsd-arm), type Credential struct, NoSetGroups bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 04 20:20:20 UTC 2021
    - 10.7K bytes
    - Viewed (0)
  5. pilot/pkg/xds/ecds_test.go

    			wantSecrets:      sets.String{"default-docker-credential": {}},
    		},
    		// All the credentials should be sent to istio-agent even if one of them is only updated,
    		// because `istio-agent` does not keep the credentials.
    		{
    			name:           "multi_wasmplugin_update_secret",
    			proxyNamespace: "default",
    			request: &model.PushRequest{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. cmd/post-policy_test.go

    		formData       map[string]string
    	}{
    		{http.StatusForbidden, credentials.SecretKey, map[string]string{"AWSAccessKeyId": "invalidaccesskey"}},
    		{http.StatusForbidden, "invalidsecretkey", map[string]string{"AWSAccessKeyId": credentials.AccessKey}},
    		{http.StatusNoContent, credentials.SecretKey, map[string]string{"AWSAccessKeyId": credentials.AccessKey}},
    		{http.StatusForbidden, credentials.SecretKey, map[string]string{"Awsaccesskeyid": "invalidaccesskey"}},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/base/login/FessLoginAssist.java

                this.resolver = resolver;
            }
    
            public <CREDENTIAL extends LoginCredential> void resolve(final Class<CREDENTIAL> credentialType,
                    final Function<CREDENTIAL, OptionalEntity<FessUser>> oneArgLambda) {
                resolver.resolve(credentialType, credential -> oneArgLambda.apply(credential));
            }
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. pkg/kubelet/config/flags.go

    	// Image credential provider settings.
    	fs.StringVar(&s.ImageCredentialProviderConfigFile, "image-credential-provider-config", s.ImageCredentialProviderConfigFile, "The path to the credential provider plugin config file.")
    	fs.StringVar(&s.ImageCredentialProviderBinDir, "image-credential-provider-bin-dir", s.ImageCredentialProviderBinDir, "The path to the directory where credential provider plugin binaries are located.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 09 03:14:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/hello-multi.yaml.injected

            volumeMounts:
            - mountPath: /var/run/secrets/workload-spiffe-uds
              name: workload-socket
            - mountPath: /var/run/secrets/credential-uds
              name: credential-socket
            - mountPath: /var/run/secrets/workload-spiffe-credentials
              name: workload-certs
            - mountPath: /var/run/secrets/istio
              name: istiod-ca-cert
            - mountPath: /var/lib/istio/data
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/Authenticator.kt

     *
     * ```java
     * if (response.request().header("Authorization") != null) {
     *   return null; // Give up, we've already failed to authenticate.
     * }
     *
     * String credential = Credentials.basic(...)
     * return response.request().newBuilder()
     *     .header("Authorization", credential)
     *     .build();
     * ```
     *
     * When reactive authentication is requested by a proxy server, the response code is 407 and the
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top