Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 220 for Credential (0.23 sec)

  1. cmd/kubeadm/app/phases/controlplane/manifests_test.go

    				"--cluster-signing-cert-file=" + filepath.Join(testCertsDir, "ca.crt"),
    				"--cluster-signing-key-file=" + filepath.Join(testCertsDir, "ca.key"),
    				"--use-service-account-credentials=true",
    				"--controllers=*,bootstrapsigner,tokencleaner",
    				"--authentication-kubeconfig=" + filepath.Join(kubeadmconstants.KubernetesDir, "controller-manager.conf"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/PluginManagementDslSpec.groovy

                            url "http://repo.internal.net/m2"
                            authentication {
                                basic(BasicAuthentication)
                            }
                            credentials {
                                username = "noob"
                                password = "hunter2"
                            }
                        }
                    }
                }
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:16:47 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    Credentials in system properties take precedence over the ones embedded in `distributionUrl`.
    
    [TIP]
    ====
    HTTP Basic Authentication should only be used with `HTTPS` URLs and not plain `HTTP` ones.
    With Basic Authentication, the user credentials are sent in clear text.
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. architecture/networking/pilot.md

    * `kclient.NewDelayedInformer` can also fully abstract this away, by providing a client that handles this behind the scenes.
    
    #### Credentials Controller
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 17:53:24 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  5. cmd/admin-handlers_test.go

    	if cmd == restartCmd {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			testServiceSignalReceiver(cmd, t)
    		}()
    	}
    	credentials := globalActiveCred
    
    	req, err := getServiceCmdRequest(cmd, credentials)
    	if err != nil {
    		t.Fatalf("Failed to build service status request %v", err)
    	}
    
    	rec := httptest.NewRecorder()
    	adminTestBed.router.ServeHTTP(rec, req)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. src/net/http/roundtrip_js.go

    	// See https://developer.mozilla.org/en-US/docs/Web/API/WindowOrWorkerGlobalScope/fetch
    	// for options available.
    	opt.Set("method", req.Method)
    	opt.Set("credentials", "same-origin")
    	if h := req.Header.Get(jsFetchCreds); h != "" {
    		opt.Set("credentials", h)
    		req.Header.Del(jsFetchCreds)
    	}
    	if h := req.Header.Get(jsFetchMode); h != "" {
    		opt.Set("mode", h)
    		req.Header.Del(jsFetchMode)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  7. cmd/testdata/xl-meta-merge.zip

    ang.org/dl/#stable) ```sh go install github.com/minio/minio@latest ``` The MinIO deployment starts using default root credentials `minioadmin:minioadmin`. You can test the deployment using the MinIO Console, an embedded web-based object browser built into MinIO Server. Point a web browser running on the host machine to <http://127.0.0.1:9000> and log in with the root credentials. You can use the Browser to create buckets, upload objects, and browse the contents of the MinIO server. You can also connect...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  8. cmd/object-api-utils_test.go

    // with following object names "\\../.minio.sys/config/iam/${username}/identity.json"
    // #16852
    func testPathTraversalExploit(obj ObjectLayer, instanceType, bucketName string, apiRouter http.Handler,
    	credentials auth.Credentials, t *testing.T,
    ) {
    	if err := newTestConfig(globalMinioDefaultRegion, obj); err != nil {
    		t.Fatalf("Initializing config.json failed")
    	}
    
    	objectName := `\../.minio.sys/config/hello.txt`
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/signing_plugin.adoc

    If the `required` condition does not hold true, artifacts will only be signed if signatory credentials are configured.
    Alternatively, you may want to skip signing entirely whether or not signatory credentials are available.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  10. pkg/bootstrap/platform/gcp.go

    	labels := map[string]string{}
    	var instanceLabels map[string]string
    	go func() {
    		// use explicit credentials with compute.instances.get IAM permissions
    		creds, err := google.FindDefaultCredentials(ctx, ComputeReadonlyScope)
    		if err != nil {
    			log.Warnf("failed to find default credentials: %v", err)
    			success <- false
    			return
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 15 00:37:33 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top