Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,558 for Patches (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pilot/pkg/networking/core/envoyfilter/rc_patch_test.go

    			Action: &route.Route_Route{
    				Route: &route.RouteAction{
    					PrefixRewrite: "/shared",
    				},
    			},
    		},
    	}
    	type args struct {
    		patchContext       networking.EnvoyFilter_PatchContext
    		patches            map[networking.EnvoyFilter_ApplyTo][]*model.EnvoyFilterConfigPatchWrapper
    		routeConfiguration *route.RouteConfiguration
    		virtualHost        *route.VirtualHost
    		routeIndex         int
    		routesRemoved      *bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/init/etcd.go

    		InheritFlags: getEtcdPhaseFlags(),
    	}
    	return phase
    }
    
    func getEtcdPhaseFlags() []string {
    	flags := []string{
    		options.CertificatesDir,
    		options.CfgPath,
    		options.ImageRepository,
    		options.Patches,
    		options.DryRun,
    	}
    	return flags
    }
    
    func runEtcdPhaseLocal() func(c workflow.RunData) error {
    	return func(c workflow.RunData) error {
    		data, ok := c.(InitData)
    		if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/join/controlplaneprepare.go

    			options.FileDiscovery,
    			options.TokenDiscovery,
    			options.TokenDiscoveryCAHash,
    			options.TokenDiscoverySkipCAHash,
    			options.TLSBootstrapToken,
    			options.TokenStr,
    			options.CertificateKey,
    			options.Patches,
    			options.DryRun,
    		}
    	case "download-certs":
    		flags = []string{
    			options.CfgPath,
    			options.ControlPlane,
    			options.FileDiscovery,
    			options.TokenDiscovery,
    			options.TokenDiscoveryCAHash,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:46:34 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/kubelet/config_test.go

    	var (
    		input          = []byte("bar: 0\nfoo: 0\n")
    		patch          = []byte("bar: 1\n")
    		expectedOutput = []byte("bar: 1\nfoo: 0\n")
    	)
    
    	dir, err := os.MkdirTemp("", "patches")
    	if err != nil {
    		t.Fatalf("could not create temp dir: %v", err)
    	}
    	defer os.RemoveAll(dir)
    
    	if err := os.WriteFile(filepath.Join(dir, "kubeletconfiguration.yaml"), patch, 0644); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 02 12:34:30 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. pkg/util/pod/pod.go

    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/strategicpatch"
    	clientset "k8s.io/client-go/kubernetes"
    	podutil "k8s.io/kubernetes/pkg/api/v1/pod"
    )
    
    // PatchPodStatus patches pod status. It returns true and avoids an update if the patch contains no changes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 15:22:29 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/init/controlplane.go

    	return phase
    }
    
    func getControlPlanePhaseFlags(name string) []string {
    	flags := []string{
    		options.CfgPath,
    		options.CertificatesDir,
    		options.KubernetesVersion,
    		options.ImageRepository,
    		options.Patches,
    		options.DryRun,
    	}
    	if name == "all" || name == kubeadmconstants.KubeAPIServer {
    		flags = append(flags,
    			options.APIServerAdvertiseAddress,
    			options.ControlPlaneEndpoint,
    			options.APIServerBindPort,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 17 14:40:46 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/mergepatch/util.go

    	}
    
    	return string(y), nil
    }
    
    // HasConflicts returns true if the left and right JSON interface objects overlap with
    // different values in any key. All keys are required to be strings. Since patches of the
    // same Type have congruent keys, this is valid for multiple patch types. This method
    // supports JSON merge patch semantics.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top