Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for Credential (0.15 sec)

  1. cmd/metrics-v2.go

    	return MetricDescription{
    		Namespace: namespace,
    		Subsystem: replicationSubsystem,
    		Name:      credentialErrors,
    		Help:      "Total number of replication credential errors since server uptime",
    		Type:      counterMetric,
    	}
    }
    
    func getClusterReplCurrQueuedOperationsMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. pkg/config/validation/validation.go

    		}
    	}
    	if tls.CaCrl != "" {
    		if tls.CredentialName != "" {
    			v = AppendValidation(v, fmt.Errorf("CRL is not supported with credentialName. CRL has to be specified in the credential"))
    		}
    		if tls.Mode == networking.ServerTLSSettings_SIMPLE {
    			v = AppendValidation(v, fmt.Errorf("CRL is not supported with SIMPLE TLS"))
    		}
    	}
    	return
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "description": "WindowsSecurityContextOptions contain Windows-specific options and credentials.",
          "properties": {
            "gmsaCredentialSpec": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  4. cmd/object-handlers_test.go

    			objectName:         objectName,
    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    			expectedRespStatus: http.StatusOK,
    		},
    		// Test case - 2.
    		// Case with non-existent object name.
    		{
    			bucketName:         bucketName,
    			objectName:         "abcd",
    			accessKey:          credentials.AccessKey,
    			secretKey:          credentials.SecretKey,
    			expectedRespStatus: http.StatusNotFound,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  5. maven-model-builder/src/test/resources/dag.txt

    	quarkus/extensions/schema-registry/confluent/common/runtime/pom.xml
    	quarkus/core/deployment/pom.xml
    	quarkus/extensions/schema-registry/devservice/deployment/pom.xml
    quarkus/extensions/credentials/deployment/pom.xml
    	quarkus/extensions/credentials/runtime/pom.xml
    	quarkus/core/deployment/pom.xml
    	quarkus/extensions/arc/deployment/pom.xml
    quarkus/extensions/panache/mongodb-panache-common/runtime/pom.xml
    	quarkus/core/runtime/pom.xml
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.credentials.AwsCredentials.getAccessKey()> does not have raw return type assignable to org.gradle.api.provider.Property in (AwsCredentials.java:0)
    Method <org.gradle.api.credentials.AwsCredentials.getSecretKey()> does not have raw return type assignable to org.gradle.api.provider.Property in (AwsCredentials.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  7. cmd/object-handlers.go

    	cred := getReqAccessCred(r, globalSite.Region())
    	// In a federated deployment, all the instances share config files
    	// and hence expected to have same credentials.
    	core, err := miniogo.NewCore(host, &miniogo.Options{
    		Creds:     credentials.NewStaticV4(cred.AccessKey, cred.SecretKey, ""),
    		Secure:    globalIsTLS,
    		Transport: getRemoteInstanceTransport(),
    	})
    	if err != nil {
    		return nil, err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-helper.sh

      local config_path='/etc/srv/kubernetes/kube-controller-manager/kubeconfig'
      params+=("--use-service-account-credentials")
      params+=("--cloud-provider=${CLOUD_PROVIDER_FLAG:-external}")
      params+=("--kubeconfig=${config_path}" "--authentication-kubeconfig=${config_path}" "--authorization-kubeconfig=${config_path}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    	// but we do not have the information necessary to do TLS verification.
    	//
    	// This client must not be modified to include credentials, because it is
    	// critical that credentials not leak from the client to arbitrary hosts.
    	insecureContainerLifecycleHTTPClient := &http.Client{
    		Transport: &http.Transport{
    			TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. cmd/admin-handlers.go

    	enc := json.NewEncoder(w)
    	if err := enc.Encode(madmin.NetperfResult{NodeResults: results}); err != nil {
    		return
    	}
    }
    
    func isAllowedRWAccess(r *http.Request, cred auth.Credentials, bucketName string) (rd, wr bool) {
    	owner := cred.AccessKey == globalActiveCred.AccessKey
    
    	// Set prefix value for "s3:prefix" policy conditionals.
    	r.Header.Set("prefix", "")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
Back to top