Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Patches (0.12 sec)

  1. 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)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/policies.go

    				Namespace: meshCfg.GetRootNamespace(),
    				Scope:     security.Scope_WORKLOAD_SELECTOR,
    				Action:    security.Action_DENY,
    				Groups: []*security.Group{
    					{
    						Rules: []*security.Rules{
    							{
    								Matches: []*security.Match{
    									{
    										NotPrincipals: []*security.StringMatch{
    											{
    												MatchType: &security.StringMatch_Presence{},
    											},
    										},
    									},
    								},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. buildscripts/minio-upgrade.sh

    	local expected
    	expected=$(mc cat "$1" | sha256sum)
    	local got
    	got=$(mc cat "$2" | sha256sum)
    
    	if [ "${expected}" != "${got}" ]; then
    		echo "mismatch - expected ${expected}, got ${got}"
    		exit 1
    	fi
    	echo "matches - ${expected}, got ${got}"
    }
    
    add_alias() {
    	for i in $(seq 1 4); do
    		echo "... attempting to add alias $i"
    		until (mc alias set minio http://127.0.0.1:9000 minioadmin minioadmin); do
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listenertest/match.go

    }
    
    type FilterChainTest struct {
    	// Match a filter chain by name
    	Name string
    	// Match filter chain by 'type'. This can be important since Name is currently not unique
    	Type FilterChainType
    	// Port the filter chain matches
    	Port uint32
    
    	NetworkFilters []string
    	HTTPFilters    []string
    
    	ValidateHCM func(t test.Failer, hcm *hcm.HttpConnectionManager)
    
    	TotalMatch bool
    }
    
    type FilterChainType string
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    		Namespace(c.ns).
    		Resource("examples").
    		VersionedParams(&opts, scheme.ParameterCodec).
    		Timeout(timeout).
    		WatchList(ctx).
    		Into(result)
    	return
    }
    
    // Watch returns a watch.Interface that watches the requested examples.
    func (c *examples) Watch(ctx context.Context, opts metav1.ListOptions) (watch.Interface, error) {
    	var timeout time.Duration
    	if opts.TimeoutSeconds != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top