Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,474 for applyTo (0.24 sec)

  1. subprojects/core/src/main/java/org/gradle/initialization/ParallelismBuildOptions.java

            }
    
            @Override
            public void applyTo(boolean value, ParallelismConfiguration settings, Origin origin) {
                settings.setParallelProjectExecutionEnabled(value);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 19:00:19 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/options/persistentvolumebindercontroller.go

    }
    
    // ApplyTo fills up PersistentVolumeBinderController config with options.
    func (o *PersistentVolumeBinderControllerOptions) ApplyTo(cfg *persistentvolumeconfig.PersistentVolumeBinderControllerConfiguration) error {
    	if o == nil {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/options/token.go

    		"A human friendly description of how this token is used.",
    	)
    }
    
    // ApplyTo applies the values set internally in the BootstrapTokenOptions object to a InitConfiguration object at runtime
    // If --token was specified in the CLI (as a string), it's parsed and validated before it's added to the BootstrapToken object.
    func (bto *BootstrapTokenOptions) ApplyTo(cfg *kubeadmapiv1.InitConfiguration) error {
    	if len(bto.TokenStr) > 0 {
    		var err error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 10:34:21 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/api_enablement.go

    	}
    	if len(groups) != 0 {
    		errors = append(errors, fmt.Errorf("unknown api groups %s", strings.Join(groups, ",")))
    	}
    
    	return errors
    }
    
    // ApplyTo override MergedResourceConfig with defaults and registry
    func (s *APIEnablementOptions) ApplyTo(c *server.Config, defaultResourceConfig *serverstore.ResourceConfig, registry resourceconfig.GroupVersionRegistry) error {
    	if s == nil {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 09:22:37 UTC 2023
    - 4K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/attachdetachcontroller.go

    }
    
    // ApplyTo fills up AttachDetachController config with options.
    func (o *AttachDetachControllerOptions) ApplyTo(cfg *attachdetachconfig.AttachDetachControllerConfiguration) error {
    	if o == nil {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-use/src/test/groovy/org/gradle/plugin/use/resolve/internal/CorePluginResolverTest.groovy

            result.getFound(request).applyTo(pluginManager)
    
            then:
            1 * pluginManager.apply(impl)
            1 * pluginRegistry.lookup(DefaultPluginId.of("foo")) >> impl
        }
    
        def "can resolve qualified"() {
            when:
            def request = request("org.gradle.foo")
            def result = resolver.resolve(request)
            result.getFound(request).applyTo(pluginManager)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/ClassPathPluginResolution.java

            return pluginId;
        }
    
        @Nullable
        @Override
        public String getPluginVersion() {
            return pluginVersion;
        }
    
        @Override
        public void applyTo(PluginManagerInternal pluginManager) {
            pluginManager.apply(plugin);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 03:54:58 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/dsl/org.gradle.testing.jacoco.plugins.JacocoPluginExtension.xml

            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
                <tr>
                    <td>applyTo</td>
                </tr>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 18:21:45 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/tracing.go

    	if o == nil {
    		return
    	}
    
    	fs.StringVar(&o.ConfigFile, "tracing-config-file", o.ConfigFile,
    		"File with apiserver tracing configuration.")
    }
    
    // ApplyTo fills up Tracing config with options.
    func (o *TracingOptions) ApplyTo(es *egressselector.EgressSelector, c *server.Config) error {
    	if o == nil || o.ConfigFile == "" {
    		return nil
    	}
    	if !feature.DefaultFeatureGate.Enabled(features.APIServerTracing) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 21:39:39 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resolve/result/DefaultBuildableComponentResolveResultTest.groovy

            given:
            result.attempted("a")
            result.attempted("b")
            result.resolved(state, graphState)
    
            when:
            result.applyTo(idResult)
    
            then:
            1 * idResult.attempted("a")
            1 * idResult.attempted("b")
            1 * idResult.resolved(state, graphState)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top