Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 759 for applyTo (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    		return false
    	}
    
    	// skip listener port check for special virtual inbound and outbound listeners
    	// to support portNumber listener filter field within those special listeners as well
    	if lp.ApplyTo != networking.EnvoyFilter_LISTENER &&
    		(listener.Name == model.VirtualInboundListenerName || listener.Name == model.VirtualOutboundListenerName) {
    		return true
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/upgrade/apply.go

    	if ok {
    		upgradeCfg.Apply.EtcdUpgrade = etcdUpgrade
    	} else {
    		return cmdutil.TypeMismatchErr("etcdUpgrade", "bool")
    	}
    
    	renewCerts, ok := cmdutil.ValueFromFlagsOrConfig(flagSet, options.CertificateRenewal, upgradeCfg.Apply.CertificateRenewal, &flags.renewCerts).(*bool)
    	if ok {
    		upgradeCfg.Apply.CertificateRenewal = renewCerts
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/plugins/DefaultPluginManagerTest.groovy

            manager.findPlugin("foo") == null
        }
    
        def "can apply rules plugin with no id"() {
            when:
            manager.apply(rulesClass)
    
            then:
            1 * target.applyRules(null, rulesClass)
    
            and:
            manager.pluginContainer.isEmpty()
        }
    
        def "can apply rules plugin by class with id"() {
            given:
            addPluginId("foo", rulesClass)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 16.1K bytes
    - Viewed (0)
Back to top