Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 4,686 for applyTo (0.18 sec)

  1. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/service/internal/DefaultInjectedClasspathPluginResolver.java

                visitor.visitClassLoader(plugin.asClass().getClassLoader());
            }
    
            @Override
            public void applyTo(PluginManagerInternal pluginManager) {
                pluginManager.apply(plugin);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:19:55 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/DefaultTaskContainerFactory.java

                    MutableModelNode mutableModelNode = (MutableModelNode) modelNode;
    
                    // Add tasks created through rules to the actual task container
                    mutableModelNode.applyTo(allLinks(), ModelActionRole.Initialize, DirectNodeNoInputsModelAction.of(TASK_MODEL_REFERENCE, COPY_TO_TASK_CONTAINER_DESCRIPTOR, new BiAction<MutableModelNode, Task>() {
                        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 09:54:40 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelNodeInternal.java

        @Override
        public void applyToSelf(ExtractedRuleSource<?> rules) {
            rules.apply(modelRegistry, this);
        }
    
        @Override
        public void applyToSelf(Class<? extends RuleSource> rulesClass) {
            ExtractedRuleSource<?> rules = modelRegistry.newRuleSource(rulesClass);
            rules.assertNoPlugins();
            rules.apply(modelRegistry, this);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 12:51:08 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodeBackedModelMap.java

                return elementType.isAssignableFrom(element) && parent.isSatisfiedBy(element);
            }
    
            @Override
            public boolean apply(MutableModelNode node) {
                node.ensureAtLeast(ModelNode.State.Discovered);
                return node.canBeViewedAs(elementType) && parent.apply(node);
            }
    
            @Override
            public void validateCanBindAction(MutableModelNode node, ModelAction action) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 23K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/options/authentication_test.go

    		t.Run(tc.name, func(t *testing.T) {
    			c := &server.AuthenticationInfo{}
    			servingInfo := &server.SecureServingInfo{}
    			openAPIConfig := &openapicommon.Config{}
    
    			err := tc.options.ApplyTo(c, servingInfo, openAPIConfig)
    			if (err != nil) != tc.expectError {
    				t.Errorf("expected error=%v, got %v", tc.expectError, err)
    			}
    			if (c.Authenticator != nil) != tc.expectAuthenticator {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 23 15:01:56 UTC 2019
    - 6.9K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/resolve/internal/ArtifactRepositoriesPluginResolver.java

            }
    
            @Override
            public void applyTo(PluginManagerInternal pluginManager) {
                PluginCoordinates altCoords = pluginRequest.getAlternativeCoordinates().orElse(null);
                if (altCoords != null && pluginManager.hasPlugin(altCoords.getId().getId())) {
                    return;
                }
    
                pluginManager.apply(pluginRequest.getId().getId());
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:20:28 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/audit_test.go

    			assert.Equal(t, tc.options(), options, "Flag defaults should match default options.")
    
    			assert.Empty(t, options.Validate(), "Options should be valid.")
    			config := &server.Config{}
    			require.NoError(t, options.ApplyTo(config))
    			if tc.expected == "" {
    				assert.Nil(t, config.AuditBackend)
    			} else {
    				assert.Equal(t, tc.expected, fmt.Sprintf("%s", config.AuditBackend))
    			}
    
    			w, err := options.LogOptions.getWriter()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 27 14:57:26 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  8. tests/integration/helm/util.go

    	if err != nil {
    		ctx.Fatalf("failed to install istio %s chart", DiscoveryChartsDir)
    	}
    
    	err = ctx.ConfigIstio().YAML(IstioNamespace, template).Apply()
    	if err != nil {
    		ctx.Fatalf("failed to apply templated revision tags yaml: %v", err)
    	}
    
    	scopes.Framework.Infof("=== succeeded === ")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. pkg/config/analysis/msg/messages.gen.go

    	// Description: The ADD operation will be ignored when applyTo is set to ROUTE_CONFIGURATION, or HTTP_ROUTE.
    	EnvoyFilterUsesAddOperationIncorrectly = diag.NewMessageType(diag.Error, "IST0153", "The ADD operation will be ignored when applyTo is set to ROUTE_CONFIGURATION, or HTTP_ROUTE.")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    		MaxRequestBodyBytes:                 defaults.MaxRequestBodyBytes,
    		ShutdownSendRetryAfter:              false,
    	}
    }
    
    // ApplyTo applies the run options to the method receiver and returns self
    func (s *ServerRunOptions) ApplyTo(c *server.Config) error {
    	c.CorsAllowedOriginList = s.CorsAllowedOriginList
    	c.HSTSDirectives = s.HSTSDirectives
    	c.ExternalAddress = s.ExternalHost
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
Back to top