Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,193 for applyTo (0.13 sec)

  1. 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 (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pkg/kubeapiserver/options/authentication.go

    			}
    		}
    	}
    
    	return ret, nil
    }
    
    // ApplyTo requires already applied OpenAPIConfig and EgressSelector if present.
    // The input context controls the lifecycle of background goroutines started to reload the authentication config file.
    func (o *BuiltInAuthenticationOptions) ApplyTo(
    	ctx context.Context,
    	authInfo *genericapiserver.AuthenticationInfo,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ExternalResourceResolver.java

            }
    
            @Override
            public void attempted(ExternalResourceName location) {
    
            }
    
            @Override
            public void applyTo(ResourceAwareResolveResult target) {
                throw new UnsupportedOperationException();
            }
        }
    
        private static class DefaultComponentVersionsLister implements ComponentMetadataListerDetails {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/token.go

    				bto.TokenStr = args[0]
    			}
    			klog.V(1).Infoln("[token] validating mixed arguments")
    			if err := validation.ValidateMixedArguments(tokenCmd.Flags()); err != nil {
    				return err
    			}
    
    			if err := bto.ApplyTo(cfg); err != nil {
    				return err
    			}
    
    			klog.V(1).Infoln("[token] getting Clientsets from kubeconfig file")
    			kubeConfigFile = cmdutil.GetKubeConfigPath(kubeConfigFile)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/accesslog_test.go

    		ConfigPointers: nil,
    		ConfigString: `
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: access-log-format
      namespace: default
    spec:
      configPatches:
      - applyTo: NETWORK_FILTER
        match:
          context: ANY
          listener:
            filterChain:
              filter:
                name: envoy.filters.network.tcp_proxy
        patch:
          operation: MERGE
          value:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/init.go

    		return nil, err
    	}
    
    	if err = validation.ValidateMixedArguments(cmd.Flags()); err != nil {
    		return nil, err
    	}
    
    	if err = initOptions.bto.ApplyTo(initOptions.externalInitCfg); err != nil {
    		return nil, err
    	}
    
    	// Either use the config file if specified, or convert public kubeadm API to the internal InitConfiguration
    	// and validates InitConfiguration
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
Back to top