Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,217 for Patches (0.13 sec)

  1. samples/security/spire/istio-spire-config.yaml

            label:
              istio: ingressgateway
            k8s:
              overlays:
                - apiVersion: apps/v1
                  kind: Deployment
                  name: istio-ingressgateway
                  patches:
                    - path: spec.template.spec.volumes.[name:workload-socket]
                      value:
                        name: workload-socket
                        csi:
                          driver: "csi.spiffe.io"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 22:08:56 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/envoyfilter/extension_configuration_patch.go

    	result := make([]*core.TypedExtensionConfig, 0)
    	if efw == nil {
    		return result
    	}
    	hasName := sets.New(names...)
    	for _, p := range efw.Patches[networking.EnvoyFilter_EXTENSION_CONFIG] {
    		if p.Operation != networking.EnvoyFilter_Patch_ADD {
    			continue
    		}
    		ec, ok := p.Value.(*core.TypedExtensionConfig)
    		if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/fuzzer/fuzzer.go

    			TTL:    &metav1.Duration{Duration: 1234},
    		},
    	}
    	obj.SkipPhases = nil
    	obj.NodeRegistration.ImagePullPolicy = corev1.PullIfNotPresent
    	obj.NodeRegistration.ImagePullSerial = ptr.To(true)
    	obj.Patches = nil
    	obj.DryRun = false
    	kubeadm.SetDefaultTimeouts(&obj.Timeouts)
    }
    
    func fuzzNodeRegistration(obj *kubeadm.NodeRegistrationOptions, c fuzz.Continue) {
    	c.FuzzNoCustom(obj)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 13 06:41:07 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. README.md

     * Logging through SLF4J
     * Drop pre-java 1.7 support
     * Unify authentication subsystem, NTLMSSP/Kerberos support
     * Large ReadX/WriteX support
     * Streaming list operations
     * NtTransNotifyChange support
     * Google patches: various bugfixes, lastAccess support, retrying requests
     * A proper test suite
     * Various fixes
    
    ## Others
    
    ### This jcifs or jcifs-ng
    
    jcifs-ng will be a proper choice for many users. 
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed May 10 09:29:34 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. CONTRIBUTING.md

    For change proposals, see [Proposing Changes To Go](https://go.dev/s/proposal-process).
    
    ## Contributing code
    
    Please read the [Contribution Guidelines](https://golang.org/doc/contribute.html) before sending patches.
    
    Unless otherwise noted, the Go source files are distributed under
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 22:00:27 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top