Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 4,686 for applyTo (0.36 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    }
    
    // ApplyTo mutates the provided server.Config.  It must never mutate the receiver (EtcdOptions).
    func (s *EtcdOptions) ApplyTo(c *server.Config) error {
    	if s == nil {
    		return nil
    	}
    
    	storageConfigCopy := s.StorageConfig
    	if storageConfigCopy.StorageObjectCountTracker == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/ToolingApiGradleExecutor.java

            DefaultGradleConnector gradleConnector = (DefaultGradleConnector) GradleConnector.newConnector();
            gradleConnector.useDistributionBaseDir(GradleUserHomeLookup.gradleUserHome());
            gradleProvider.applyTo(gradleConnector);
            gradleConnector.useGradleUserHomeDir(gradleUserHome);
            gradleConnector.daemonBaseDir(new File(gradleUserHome, TEST_KIT_DAEMON_DIR_NAME));
            gradleConnector.forProjectDirectory(projectDir);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 14:27:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/authorization.go

    		"A list of HTTP paths to skip during authorization, i.e. these are authorized without "+
    			"contacting the 'core' kubernetes server.")
    }
    
    func (s *DelegatingAuthorizationOptions) ApplyTo(c *server.AuthorizationInfo) error {
    	if s == nil {
    		c.Authorizer = authorizerfactory.NewAlwaysAllowAuthorizer()
    		return nil
    	}
    
    	client, err := s.getClient()
    	if err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    			"to wildcard IPs like 0.0.0.0 and specific IPs in parallel, and it avoids waiting "+
    			"for the kernel to release sockets in TIME_WAIT state. [default=false]")
    }
    
    // ApplyTo fills up serving information in the server configuration.
    func (s *SecureServingOptions) ApplyTo(config **server.SecureServingInfo) error {
    	if s == nil {
    		return nil
    	}
    	if s.BindPort <= 0 && s.Listener == nil {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (1)
  5. staging/src/k8s.io/apiserver/pkg/server/config.go

    	// RecommendedOptions.CoreAPI.ApplyTo called by RecommendedOptions.ApplyTo. It uses an in-cluster client config
    	// by default, or the kubeconfig given with kubeconfig command line flag.
    	SharedInformerFactory informers.SharedInformerFactory
    
    	// ClientConfig holds the kubernetes client configuration.
    	// This value is set by RecommendedOptions.CoreAPI.ApplyTo called by RecommendedOptions.ApplyTo.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 47.7K bytes
    - Viewed (0)
  6. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoPlugin.java

        /**
         * Applies the Jacoco agent to all tasks of type {@code Test}.
         *
         * @param extension the extension to apply Jacoco with
         */
        private void applyToDefaultTasks(final JacocoPluginExtension extension) {
            project.getTasks().withType(Test.class).configureEach(extension::applyTo);
        }
    
        private void configureJacocoReportsDefaults(final JacocoPluginExtension extension) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 21:09:25 UTC 2023
    - 14K bytes
    - Viewed (0)
  7. cmd/cloud-controller-manager/nodeipamcontroller.go

    	allErrors := nodeIpamController.nodeIPAMControllerOptions.Validate()
    	if len(allErrors) > 0 {
    		klog.Fatal("NodeIPAM controller values are not properly set.")
    	}
    	nodeIpamController.nodeIPAMControllerOptions.ApplyTo(&nodeIpamController.nodeIPAMControllerConfiguration)
    
    	return func(ctx context.Context, controllerContext genericcontrollermanager.ControllerContext) (controller.Interface, bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 14 19:06:22 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/BaseGradleRunnerIntegrationTest.groovy

                .withTestKitDir(testKitDir)
                .withProjectDir(testDirectory)
                .withArguments(allArgs)
                .withDebug(debug)
    
            gradleProvider.applyTo(gradleRunner)
            gradleRunner
        }
    
        static String helloWorldTask() {
            """
            task helloWorld {
                doLast {
                    println 'Hello world!'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:29:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/serving_test.go

    			}
    
    			secureOptions.Listener = ln
    			// get port
    			secureOptions.BindPort = ln.Addr().(*net.TCPAddr).Port
    			config.LoopbackClientConfig = &restclient.Config{}
    			if err := secureOptions.ApplyTo(&config.SecureServing, &config.LoopbackClientConfig); err != nil {
    				t.Fatalf("failed applying the SecureServingOptions: %v", err)
    			}
    
    			s, err := config.Complete(nil).New("test", server.NewEmptyDelegate())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 15:52:39 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  10. tests/integration/pilot/common/routing.go

                end
      - applyTo: VIRTUAL_HOST
        match:
          context: SIDECAR_OUTBOUND
        patch:
          operation: MERGE
          value:
            request_headers_to_add:
            - header:
                key: x-vhost-outbound
                value: "hello world"
      - applyTo: CLUSTER
        match:
          context: SIDECAR_OUTBOUND
          cluster: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top