Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 4,686 for applyTo (0.15 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/converter/WelcomeMessageBuildOptions.java

            public WelcomeMessageOption() {
                super(PROPERTY_NAME, WelcomeMessageDisplayMode.class, WelcomeMessageDisplayMode.values(), PROPERTY_NAME);
            }
    
            @Override
            public void applyTo(WelcomeMessageDisplayMode value, WelcomeMessageConfiguration settings, Origin origin) {
                settings.setWelcomeMessageDisplayMode(value);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/options/endpointslicemirroringcontroller.go

    }
    
    // ApplyTo fills up EndpointSliceMirroringController config with options.
    func (o *EndpointSliceMirroringControllerOptions) ApplyTo(cfg *endpointslicemirroringconfig.EndpointSliceMirroringControllerConfiguration) error {
    	if o == nil {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 19 13:01:01 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/DefaultResourceAwareResolveResult.java

            attempted.add(locationDescription);
        }
    
        @Override
        public void attempted(ExternalResourceName location) {
            attempted(location.getDisplayName());
        }
    
        @Override
        public void applyTo(ResourceAwareResolveResult target) {
            if (attempted != null) {
                for (String location : attempted) {
                    target.attempted(location);
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/BuildableComponentResolveResult.java

        /**
         * Replaces the graph resolution state in the result. Result must already be resolved.
         */
        void setResult(ComponentGraphResolveState state);
    
        void applyTo(BuildableComponentResolveResult target);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 13 13:05:26 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. tests/testdata/networking/envoyfilter-without-service/configs.yaml

    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: test-lua
      namespace: istio-system
    spec:
      workloadSelector:
        labels:
          app: envoyfilter-test-app
      configPatches:
      - applyTo: HTTP_FILTER
        match:
          listener:
            filterChain:
              filter:
                name: "envoy.filters.network.http_connection_manager"
                subFilter:
                  name: "envoy.filters.http.router"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 16:44:49 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/converters/FixedBuildIdentifierProvider.java

            return buildIdentifier;
        }
    
        public DefaultProjectIdentifier getProjectIdentifier() {
            return projectIdentifier;
        }
    
        public <T> ViewBuilder<T> applyTo(ViewBuilder<T> builder) {
            builder.mixInTo(BuildModel.class, this);
            builder.mixInTo(ProjectModel.class, this);
            return builder;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. cmd/kube-controller-manager/app/options/nodelifecyclecontroller.go

    }
    
    // ApplyTo fills up NodeLifecycleController config with options.
    func (o *NodeLifecycleControllerOptions) ApplyTo(cfg *nodelifecycleconfig.NodeLifecycleControllerConfiguration) error {
    	if o == nil {
    		return nil
    	}
    
    	cfg.NodeStartupGracePeriod = o.NodeStartupGracePeriod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 09:25:51 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/SimplePluginResolution.java

            this.plugin = plugin;
        }
    
        @Override
        public PluginId getPluginId() {
            return plugin.getPluginId();
        }
    
        @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.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/registry/RegistrySpec.groovy

            @Override
            def void applyToLink(ModelActionRole type, ModelAction action) {
    
            }
    
            @Override
            void applyTo(NodePredicate predicate, ModelActionRole role, ModelAction action) {
    
            }
    
            @Override
            void applyTo(NodePredicate predicate, Class<? extends RuleSource> rules) {
    
            }
    
            @Override
            ModelNodeInternal getLink(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/resolve/ResolveTestFixture.groovy

                def node = graph.projectNode(selectedProjectIdentityPath, selectedModuleVersionId)
                deps << new EdgeBuilder(this, requested, node)
                applyTo(node, cl)
                return node
            }
    
            private static void applyTo(NodeBuilder node, Closure cl) {
                cl.resolveStrategy = Closure.DELEGATE_ONLY
                cl.delegate = node
                cl.call()
            }
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 37.8K bytes
    - Viewed (0)
Back to top