Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,470 for applyTo (0.17 sec)

  1. 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)
  2. 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)
  3. staging/src/k8s.io/apiserver/pkg/server/options/authorization.go

    		"A list of HTTP paths to skip during authorization, i.e. these are authorized without "+
    			"contacting the 'core' kubernetes server.")
    }
    
    func (s *DelegatingAuthorizationOptions) ApplyTo(c *server.AuthorizationInfo) error {
    	if s == nil {
    		c.Authorizer = authorizerfactory.NewAlwaysAllowAuthorizer()
    		return nil
    	}
    
    	client, err := s.getClient()
    	if err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  4. cmd/cloud-controller-manager/nodeipamcontroller.go

    	allErrors := nodeIpamController.nodeIPAMControllerOptions.Validate()
    	if len(allErrors) > 0 {
    		klog.Fatal("NodeIPAM controller values are not properly set.")
    	}
    	nodeIpamController.nodeIPAMControllerOptions.ApplyTo(&nodeIpamController.nodeIPAMControllerConfiguration)
    
    	return func(ctx context.Context, controllerContext genericcontrollermanager.ControllerContext) (controller.Interface, bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 14 19:06:22 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. operator/pkg/helmreconciler/apply.go

    type AppliedResult struct {
    	// processedObjects is the list of objects that were processed in this apply operation.
    	processedObjects object.K8sObjects
    	// deployed is the number of objects have been deployed which means
    	// it's in the cache and it's not changed from the cache.
    	deployed int
    }
    
    // Succeed returns true if the apply operation succeeded.
    func (r AppliedResult) Succeed() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/tunnelingconfig/apply.go

    	networking "istio.io/api/networking/v1alpha3"
    )
    
    type ApplyFunc = func(tcpProxy *tcp.TcpProxy, destinationRule *networking.DestinationRule, subsetName string)
    
    // Apply configures tunneling_config in a given TcpProxy depending on the destination rule and the destination hosts
    var Apply ApplyFunc = func(tcpProxy *tcp.TcpProxy, destinationRule *networking.DestinationRule, subsetName string) {
    	var tunnelSettings *networking.TrafficPolicy_TunnelSettings
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. pkg/test/util/yml/apply.go

    John Howard <******@****.***> 1697526158 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 07:02:38 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  8. hack/testdata/filter/pod-dont-apply.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: selector-test-pod-dont-apply
      labels:
        name: selector-test-pod-dont-apply
        unique-label: biz
    spec:
      containers:
      - name: kubernetes-pause
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 228 bytes
    - Viewed (0)
  9. hack/testdata/pod-apply.yaml

    Lubomir I. Ivanov <******@****.***> 1716462099 +0300
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 174 bytes
    - Viewed (0)
  10. hack/testdata/filter/pod-apply-selector.yaml

    Lubomir I. Ivanov <******@****.***> 1716462099 +0300
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 211 bytes
    - Viewed (0)
Back to top