Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 287 for Credential (0.21 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

     */
    
    package org.gradle.api.provider;
    
    import org.gradle.api.Action;
    import org.gradle.api.Incubating;
    import org.gradle.api.NonExtensible;
    import org.gradle.api.credentials.AwsCredentials;
    import org.gradle.api.credentials.Credentials;
    import org.gradle.api.credentials.PasswordCredentials;
    import org.gradle.api.file.FileContents;
    import org.gradle.api.file.RegularFile;
    import org.gradle.api.initialization.Settings;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_container_windows_test.go

    		},
    		Limits: v1.ResourceList{
    			v1.ResourceMemory: resource.MustParse("256Mi"),
    			v1.ResourceCPU:    resource.MustParse("3"),
    		},
    	}
    
    	gmsaCredSpecName := "gmsa spec name"
    	gmsaCredSpec := "credential spec"
    	username := "ContainerAdministrator"
    	asHostProcess := true
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			UID:       "12345678",
    			Name:      "bar",
    			Namespace: "new",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. buildscripts/verify-healing.sh

    function __init__() {
    	echo "Initializing environment"
    	mkdir -p "$WORK_DIR"
    	mkdir -p "$MINIO_CONFIG_DIR"
    
    	## version is purposefully set to '3' for minio to migrate configuration file
    	echo '{"version": "3", "credential": {"accessKey": "minio", "secretKey": "minio123"}, "region": "us-east-1"}' >"$MINIO_CONFIG_DIR/config.json"
    
    	if [ ! -f /tmp/mc ]; then
    		wget --quiet -O /tmp/mc https://dl.minio.io/client/mc/release/linux-amd64/mc &&
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. pilot/pkg/xds/sds.go

    	// Fetch the appropriate cluster's secret, based on the credential type
    	var secretController credscontroller.Controller
    	switch sr.ResourceType {
    	case credentials.KubernetesGatewaySecretType:
    		secretController = configClusterSecrets
    	default:
    		secretController = proxyClusterSecrets
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. cmd/admin-handlers-users.go

    	// Not allowed to add a user with same access key as root credential
    	if accessKey == globalActiveCred.AccessKey {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrAddUserInvalidArgument), r.URL)
    		return
    	}
    
    	user, exists := globalIAMSys.GetUser(ctx, accessKey)
    	if exists && (user.Credentials.IsTemp() || user.Credentials.IsServiceAccount()) {
    		// Updating STS credential is not allowed, and this API does not
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/CallTest.kt

      }
    
      @Test
      fun attemptAuthorization20Times() {
        for (i in 0..19) {
          server.enqueue(MockResponse(code = 401))
        }
        server.enqueue(MockResponse(body = "Success!"))
        val credential = basic("jesse", "secret")
        client =
          client.newBuilder()
            .authenticator(RecordingOkAuthenticator(credential, null))
            .build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  7. buildscripts/verify-healing-empty-erasure-set.sh

    function __init__() {
    	echo "Initializing environment"
    	mkdir -p "$WORK_DIR"
    	mkdir -p "$MINIO_CONFIG_DIR"
    
    	## version is purposefully set to '3' for minio to migrate configuration file
    	echo '{"version": "3", "credential": {"accessKey": "minio", "secretKey": "minio123"}, "region": "us-east-1"}' >"$MINIO_CONFIG_DIR/config.json"
    
    	if [ ! -f /tmp/mc ]; then
    		wget --quiet -O /tmp/mc https://dl.minio.io/client/mc/release/linux-amd64/mc &&
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. internal/kms/config.go

    	EnvKMSDefaultKey = "MINIO_KMS_SSE_KEY" // Default key used for SSE-S3 or when no SSE-KMS key ID is specified
    	EnvKMSAPIKey     = "MINIO_KMS_API_KEY" // Credential to access the MinIO KMS.
    )
    
    // Environment variables for MinIO KES.
    const (
    	EnvKESEndpoint       = "MINIO_KMS_KES_ENDPOINT"     // One or multiple KES endpoints, separated by ','
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 12 14:31:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure.sh

      # When ENABLE_AUTH_PROVIDER_GCP is set, following flags for out-of-tree credential provider for GCP
      # are presented to kubelet:
      # --image-credential-provider-config=${path-to-config}
      # --image-credential-provider-bin-dir=${path-to-auth-provider-binary}
      # Also, it is required that DisableKubeletCloudCredentialProviders
      # feature gate is set to true for kubelet to use external credential provider.
      if [[ "${ENABLE_AUTH_PROVIDER_GCP:-}" == "true" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  10. buildscripts/verify-build.sh

    	shred -n 1 -s 1M - 1>"$FILE_1_MB" 2>/dev/null
    	shred -n 1 -s 65M - 1>"$FILE_65_MB" 2>/dev/null
    
    	## version is purposefully set to '3' for minio to migrate configuration file
    	echo '{"version": "3", "credential": {"accessKey": "minio", "secretKey": "minio123"}, "region": "us-east-1"}' >"$MINIO_CONFIG_DIR/config.json"
    
    	if ! wget -q -O "$FUNCTIONAL_TESTS" https://raw.githubusercontent.com/minio/mc/master/functional-tests.sh; then
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 19:28:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top