Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 4,686 for applyTo (0.11 sec)

  1. 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)
  2. 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)
  3. tests/fuzz/testdata/FuzzConfigValidation2/fuzz_config_validation2.dict

    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 07 17:07:53 UTC 2021
    - 2K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/EnumBuildOptionTest.groovy

        static class MyEnumBuildOption extends EnumBuildOption<MyEnum, Dummy> {
    
            MyEnumBuildOption() {
                super("my option", MyEnum, MyEnum.values(), "test")
            }
    
            @Override
            void applyTo(MyEnum value, Dummy settings, Origin origin) {
                settings.accept(value)
            }
        }
    
        enum MyEnum {
            THOU,
            SHALT,
            NOT,
            PASS
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 2K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/internal/DefaultPluginRequestApplicator.java

                this.request = request;
                this.resolved = resolved;
            }
    
            public void apply(PluginManagerInternal target) {
                try {
                    try {
                        pluginApplicationListenerBroadcaster.pluginApplied(request);
                        resolved.applyTo(target);
                    } catch (UnknownPluginException e) {
                        throw couldNotApply(request, request.getId(), e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 04:49:39 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainComponentMetaDataResolver.java

                metadataValueContainer.finalizeIfNotAlready();
                metadataValueContainer.get().applyTo(result);
            } catch (ExecutionException e) {
                throw UncheckedException.throwAsUncheckedException(e);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/LoggingConfigurationBuildOptions.java

            }
    
            @Override
            public void applyTo(String value, LoggingConfiguration settings, Origin origin) {
                String consoleValue = TextUtil.capitalize(TextUtil.toLowerCaseLocaleSafe(value));
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/resolve/result/ResourceAwareResolveResult.java

         */
        void attempted(ExternalResourceName location);
    
        /**
         * Copies the locations for this result to the given target.
         */
        void applyTo(ResourceAwareResolveResult target);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_builder_test.go

    		{
    			ApplyTo: networking.EnvoyFilter_LISTENER,
    			Match: &networking.EnvoyFilter_EnvoyConfigObjectMatch{
    				Context: networking.EnvoyFilter_SIDECAR_OUTBOUND,
    			},
    			Patch: &networking.EnvoyFilter_Patch{
    				Operation: networking.EnvoyFilter_Patch_ADD,
    				Value:     buildPatchStruct(`{"name":"new-outbound-listener"}`),
    			},
    		},
    		{
    			ApplyTo: networking.EnvoyFilter_LISTENER,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/serving_with_loopback_test.go

    	ln, err := net.Listen("tcp", "127.0.0.1:0")
    	if err != nil {
    		t.Fatalf("failed to listen on 127.0.0.1:0")
    	}
    	defer ln.Close()
    	s.Listener = ln
    	s.BindPort = ln.Addr().(*net.TCPAddr).Port
    
    	if err := s.ApplyTo(&secureServingInfo, &loopbackClientConfig); err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    	if loopbackClientConfig == nil {
    		t.Errorf("unexpected empty loopbackClientConfig")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 20 08:42:09 UTC 2021
    - 1.4K bytes
    - Viewed (0)
Back to top