Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 157 for patchSets (0.23 sec)

  1. CONTRIBUTING.md

      Push your changes to a topic branch in your fork of the repository.
    + Make commits of logical units.
    + Respect the original code style: by using the same [codestyle][code-style],
      patches should only highlight the actual difference, not being disturbed by any formatting issues:
      + Only use spaces for indentation.
      + Create minimal diffs - disable on save actions like reformat source code or organize imports.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 10 09:48:27 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta3/doc.go

    //     "IfNotPresent". "IfNotPresent" is the default, which has been the existing behavior prior to this addition.
    //   - Add "InitConfiguration.Patches.Directory", "JoinConfiguration.Patches.Directory" to allow
    //     the user to configure a directory from which to take patches for components deployed by kubeadm.
    //   - Move the BootstrapToken* API and related utilities out of the "kubeadm" API group to a new group
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 13:30:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/versioning_test.go

    							Type:    "string",
    						},
    					},
    					Required: []string{"apiVersion"},
    				},
    			}
    		}
    	})
    	assert.NoError(t, err)
    
    	time.Sleep(time.Second)
    
    	// patches via handler version v1beta1 should succeed (validation allows that API version)
    	{
    		t.Logf("patch of handler version v1beta1 (non-storage version) should succeed")
    		i := 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 05 13:10:47 UTC 2021
    - 8.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    	if example == nil {
    		return nil, fmt.Errorf("example provided to Apply must not be nil")
    	}
    	patchOpts := opts.ToPatchOptions()
    	data, err := json.Marshal(example)
    	if err != nil {
    		return nil, err
    	}
    	name := example.Name
    	if name == nil {
    		return nil, fmt.Errorf("example.Name must be provided to Apply")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/integTest/groovy/org/gradle/integtests/fixtures/ScalaCoverage.groovy

            // There are finer grained version requirements, but we don't need to worry about them here, as we use latest patch versions
            if (javaVersion.isCompatibleWith(JavaVersion.VERSION_1_9)) {
                // All latest patches of 2.13 work on Java 9+
                // 2.12 in theory supports it, but doesn't actually take it as a -target so we can't use it
                return VersionCoverage.versionsAtLeast(SCALA_2, "2.13.0")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:33 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. cluster/addons/calico-policy-controller/calico-clusterrole.yaml

          - list
      # Used by Calico for policy information.
      - apiGroups: [""]
        resources:
          - pods
          - namespaces
          - serviceaccounts
        verbs:
          - list
          - watch
      # The CNI plugin patches pods/status.
      - apiGroups: [""]
        resources:
          - pods/status
        verbs:
          - patch
      # Calico monitors various CRDs for config.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 26 02:52:06 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/upgrade/node/kubeletconfig.go

    		Short: "Upgrade the kubelet configuration for this node",
    		Long:  kubeletConfigLongDesc,
    		Run:   runKubeletConfigPhase(),
    		InheritFlags: []string{
    			options.DryRun,
    			options.KubeconfigPath,
    			options.Patches,
    		},
    	}
    	return phase
    }
    
    func runKubeletConfigPhase() func(c workflow.RunData) error {
    	return func(c workflow.RunData) error {
    		data, ok := c.(Data)
    		if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    1\\lib\\launcher.jar;C:\\tcagent1\\lib\\log4j-1.2.12-json-layout-1.0.9.jar;C:\\tcagent1\\lib\\log4j-1.2.12.jar;C:\\tcagent1\\lib\\messages.jar;C:\\tcagent1\\lib\\nuget-utils.jar;C:\\tcagent1\\lib\\openapi.jar;C:\\tcagent1\\lib\\patches-impl.jar;C:\\tcagent1\\lib\\patches.jar;C:\\tcagent1\\lib\\processesTerminator.jar;C:\\tcagent1\\lib\\resources_en.jar;C:\\tcagent1\\lib\\runtime-util.jar;C:\\tcagent1\\lib\\server-logging.jar;C:\\tcagent1\\lib\\serviceMessages.jar;C:\\tcagent1\\lib\\slf4j-api-1.7...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/upgrade/node/controlplane.go

    		Run:   runControlPlane(),
    		InheritFlags: []string{
    			options.DryRun,
    			options.KubeconfigPath,
    			options.CertificateRenewal,
    			options.EtcdUpgrade,
    			options.Patches,
    		},
    	}
    	return phase
    }
    
    func runControlPlane() func(c workflow.RunData) error {
    	return func(c workflow.RunData) error {
    		data, ok := c.(Data)
    		if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    	allErrs := field.ErrorList{}
    	if c.Apply.Patches != nil {
    		allErrs = append(allErrs, ValidateAbsolutePath(c.Apply.Patches.Directory, field.NewPath("patches").Child("directory"))...)
    	}
    	if c.Node.Patches != nil {
    		allErrs = append(allErrs, ValidateAbsolutePath(c.Node.Patches.Directory, field.NewPath("patches").Child("directory"))...)
    	}
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top