Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 75 for userTime (0.12 sec)

  1. cmd/kubeadm/app/constants/constants.go

    	CgroupDriverSystemd = "systemd"
    
    	// KubeControllerManagerUserName is the username of the user that kube-controller-manager runs as.
    	KubeControllerManagerUserName string = "kubeadm-kcm"
    	// KubeAPIServerUserName is the username of the user that kube-apiserver runs as.
    	KubeAPIServerUserName string = "kubeadm-kas"
    	// KubeSchedulerUserName is the username of the user that kube-scheduler runs as.
    	KubeSchedulerUserName string = "kubeadm-ks"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

        }
    
        protected configureRepositoryCredentials(String username, String password, String repositoryName = "maven") {
            // configuration property prefix - the identity - is determined from the repository name
            // https://docs.gradle.org/current/userguide/userguide_single.html#sec:handling_credentials
            propertiesFile << """
            ${repositoryName}Username=${username}
            ${repositoryName}Password=${password}
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpIntegrationTest.groovy

            failure.assertHasErrorOutput("Downloading from http://localhost:${server.port}/$TEST_DISTRIBUTION_URL failed: timeout (10000ms)")
            failure.assertHasErrorOutput('Read timed out')
            failure.assertNotOutput("username")
            failure.assertNotOutput("password")
        }
    
        def "reads timeout from wrapper properties"() {
            given:
            server.expect(server.head("/$TEST_DISTRIBUTION_URL"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleUserHomeScopeServices.java

        }
    
        @Provides
        ScopedListenerManager createListenerManager(ScopedListenerManager parent) {
            return parent.createChild(Scope.UserHome.class);
        }
    
        @Provides
        ScriptSourceHasher createScriptSourceHasher() {
            return new DefaultScriptSourceHasher();
        }
    
        @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile.go

    		field("version", apiservercel.StringType, true),
    		field("resource", apiservercel.StringType, true),
    	))
    	userInfoType := apiservercel.NewObjectType("kubernetes.UserInfo", fields(
    		field("username", apiservercel.StringType, false),
    		field("uid", apiservercel.StringType, false),
    		field("groups", apiservercel.NewListType(apiservercel.StringType, -1), false),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/compile_test.go

    				"request.name == 'fake-name'",
    				"request.namespace == 'fake-namespace'",
    				"request.operation == 'CREATE'",
    				"request.userInfo.username == 'admin'",
    				"request.userInfo.uid == '014fbff9a07c'",
    				"request.userInfo.groups == ['system:authenticated', 'my-admin-group']",
    				"request.userInfo.extra == {'some-key': ['some-value1', 'some-value2']}",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. pkg/kube/util.go

    			TokenFile:             auths.TokenFile,
    			Impersonate:           auths.Impersonate,
    			ImpersonateGroups:     auths.ImpersonateGroups,
    			ImpersonateUserExtra:  auths.ImpersonateUserExtra,
    			Username:              auths.Username,
    			Password:              auths.Password,
    			AuthProvider:          auths.AuthProvider, // Included because it is sanitized above
    			Exec:                  auths.Exec,
    			// Extensions: Not needed,
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. subprojects/core/src/testFixtures/groovy/org/gradle/util/TestUtil.groovy

        private static ServiceRegistry services
    
        private final File rootDir
        private final File userHomeDir
    
        private TestUtil(File rootDir) {
            this(rootDir, new File(rootDir, "userHome"))
        }
    
        private TestUtil(File rootDir, File userHomeDir) {
            NativeServicesTestFixture.initialize()
            this.rootDir = rootDir
            this.userHomeDir = userHomeDir
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/flowcontrol/v1/types.go

    type FlowDistinguisherMethodType string
    
    // These are valid flow-distinguisher methods.
    const (
    	// FlowDistinguisherMethodByUserType specifies that the flow distinguisher is the username in the request.
    	// This type is used to provide some insulation between users.
    	FlowDistinguisherMethodByUserType FlowDistinguisherMethodType = "ByUser"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    systemProp.gradle.wrapperPassword=mypassword
    ----
    
    === System properties reference
    
    For a quick reference, the following are _common_ system properties:
    
    `gradle.wrapperUser=(myuser)`:: Specify username to download Gradle distributions <<gradle_wrapper.adoc#sec:authenticated_download,from servers using HTTP Basic Authentication>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top