Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,558 for Patches (0.17 sec)

  1. operator/pkg/patch/patch_test.go

    			}
    		})
    	}
    }
    
    func makeOverlayHeader(path, value string) string {
    	const (
    		patchCommon = `overlays:
    - kind: Deployment
      name: istio-citadel
      patches:
      - path: `
    		valueStr = `    value: `
    	)
    
    	ret := patchCommon
    	ret += fmt.Sprintf("%s\n", path)
    	if value != "" {
    		ret += fmt.Sprintf("%s%s\n", valueStr, value)
    	}
    	return ret
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 29 08:32:11 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  2. operator/README.md

    ```yaml
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      components:
        pilot:
          k8s:
            overlays:
            - kind: Deployment
              name: istio-pilot
              patches:
              - path: spec.template.spec.containers.[name:discovery].args.[30m]
                value: "60m" # OVERRIDDEN
              - path: spec.template.spec.containers.[name:discovery].ports.[containerPort:8080].containerPort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Sep 17 08:27:52 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  3. operator/pkg/util/yaml.go

    			return nil, err
    		}
    	}
    
    	out := make(map[string]any)
    	err = yaml.Unmarshal([]byte(by), &out)
    	if err != nil {
    		return nil, err
    	}
    	return out, nil
    }
    
    // OverlayYAML patches the overlay tree over the base tree and returns the result. All trees are expressed as YAML
    // strings.
    func OverlayYAML(base, overlay string) (string, error) {
    	if strings.TrimSpace(base) == "" {
    		return overlay, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 14 02:41:27 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/resolver/IdeDependencySet.java

                //
                // We assume that a test-only dependency is not a module, which corresponds to how Eclipse does test running for modules:
                // It patches the main module with the tests and expects test dependencies to be part of the unnamed module (classpath).
                return javaModuleDetector.isModule(inferModulePath && !testOnly, artifact);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    		},
    		{
    			name:  "valid-negative-index-patch",
    			patch: `[{"op": "test", "value": "foo", "path": "/metadata/finalizers/-1"}]`,
    		},
    	} {
    		p := &patcher{
    			patchType:  types.JSONPatchType,
    			patchBytes: []byte(test.patch),
    		}
    		jp := jsonPatcher{patcher: p}
    		codec := codecs.LegacyCodec(examplev1.SchemeGroupVersion)
    		pod := &examplev1.Pod{}
    		pod.Name = "podA"
    		pod.ObjectMeta.Finalizers = []string{"foo"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  6. hack/cherry_pick_pull.sh

      echo
      echo "  Set the DRY_RUN environment var to skip git push and creating PR."
      echo "  This is useful for creating patches to a release branch without making a PR."
      echo "  When DRY_RUN is set the script will leave you in a branch containing the commits you cherry-picked."
      echo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 26 03:51:05 UTC 2022
    - 8.9K bytes
    - Viewed (0)
  7. pkg/controller/replicaset/replica_set_test.go

    		return fmt.Errorf("Unexpected number of deletes.  Expected %d, saw %d\n", e, a)
    	}
    
    	if e, a := expectedPatches, len(fakePodControl.Patches); e != a {
    		return fmt.Errorf("Unexpected number of patches.  Expected %d, saw %d\n", e, a)
    	}
    
    	return nil
    }
    
    func TestSyncReplicaSetDoesNothing(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/join/kubelet.go

    			options.NodeName,
    			options.FileDiscovery,
    			options.TokenDiscovery,
    			options.TokenDiscoveryCAHash,
    			options.TokenDiscoverySkipCAHash,
    			options.TLSBootstrapToken,
    			options.TokenStr,
    			options.Patches,
    			options.DryRun,
    		},
    	}
    }
    
    func getKubeletStartJoinData(c workflow.RunData) (*kubeadmapi.JoinConfiguration, *kubeadmapi.InitConfiguration, *clientcmdapi.Config, error) {
    	data, ok := c.(JoinData)
    	if !ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. SECURITY.md

    potentially exploit a vulnerability in the TensorFlow code that handles videos,
    which could allow them to execute arbitrary code on the system running
    TensorFlow.
    
    It is important to keep TensorFlow up to date with the latest security patches
    and follow the sandboxing guideline above to protect against these types of
    vulnerabilities.
    
    ## Security properties of execution modes
    
    TensorFlow has several execution modes, with Eager-mode being the default in v2.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 01 06:06:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. pkg/webhooks/validation/controller/controller.go

    type Options struct {
    	// Istio system namespace where istiod resides.
    	WatchedNamespace string
    
    	// File path to the x509 certificate bundle used by the webhook server
    	// and patched into the webhook config.
    	CABundleWatcher *keycertbundle.Watcher
    
    	// Revision for control plane performing patching on the validating webhook.
    	Revision string
    
    	// Name of the service running the webhook server.
    	ServiceName string
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 16:52:19 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top