Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for patchSets (0.35 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    				var subschema LookupPatchMeta
    				var patchMeta PatchMeta
    				var patchStrategy string
    				var err error
    				switch leftValue.(type) {
    				case []interface{}:
    					subschema, patchMeta, err = schema.LookupPatchMetadataForSlice(key)
    					if err != nil {
    						return true, err
    					}
    					_, patchStrategy, err = extractRetainKeysPatchStrategy(patchMeta.patchStrategies)
    					if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.conversion.go

    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*Patches)(nil), (*kubeadm.Patches)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1beta4_Patches_To_kubeadm_Patches(a.(*Patches), b.(*kubeadm.Patches), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*kubeadm.Patches)(nil), (*Patches)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  3. pilot/pkg/model/push_context_test.go

    				}
    				return
    			}
    			if len(filter.Patches[networking.EnvoyFilter_CLUSTER]) != tt.expectedClusterPatches {
    				t.Errorf("Expect %d envoy filter cluster patches, but got %d", tt.expectedClusterPatches, len(filter.Patches[networking.EnvoyFilter_CLUSTER]))
    			}
    			if len(filter.Patches[networking.EnvoyFilter_LISTENER]) != tt.expectedListenerPatches {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/go/internal/modget/get.go

    // arbitrarily in order to guarantee forward progress.
    //
    // If all pathSets are resolved without any changes to the build list,
    // resolveQueries returns with changed=false.
    func (r *resolver) resolveQueries(ctx context.Context, queries []*query) (changed bool) {
    	defer base.ExitIfErrors()
    
    	// Note: this is O(N²) with the number of pathSets in the worst case.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. pilot/pkg/model/push_context.go

    			Patches: make(map[networking.EnvoyFilter_ApplyTo][]*EnvoyFilterConfigPatchWrapper),
    		}
    		// merge EnvoyFilterWrapper
    		for _, efw := range matchedEnvoyFilters {
    			for applyTo, cps := range efw.Patches {
    				for _, cp := range cps {
    					if proxyMatch(proxy, cp) {
    						out.Patches[applyTo] = append(out.Patches[applyTo], cp)
    					}
    				}
    			}
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.31.md

    - Kubeadm: enhance the "patches" functionality to be able to patch coredns deployment. The new patch target is called "corednsdeployment" (e.g. patch file "corednsdeployment+json.json"). This makes it possible to apply custom patches to coredns deployment during "init" and "upgrade". ([#124820](https://github.com/kubernetes/kubernetes/pull/124820), [@SataQiu](https://github.com/SataQiu))...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

             "xffNumTrustedHops": "4"
     }
    }`),
    			},
    		},
    		// Ensure we can mix v3 patches with v2 internal
    		// Note that alwaysSetRequestIdInResponse is only present in v3 protos. It will be silently ignored
    		// as we are working in v2 protos internally
    		{
    			ApplyTo: networking.EnvoyFilter_NETWORK_FILTER,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener.go

    	listeners := make([]*listener.Listener, 0, len(listenerMap))
    	for _, le := range listenerMap {
    		// TODO: this could be outside the loop, but we would get object sharing in EnvoyFilter patches.
    		fallthroughNetworkFilters := buildOutboundCatchAllNetworkFiltersOnly(lb.push, lb.node)
    		l := buildListenerFromEntry(lb, le, fallthroughNetworkFilters)
    		listeners = append(listeners, l)
    	}
    	return listeners
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // don't have access to other platforms, support for them may be less
    // stable.  If you notice any problems on your platform, please notify
    // ******@****.*** (patches for fixing them are
    // even more welcome!).
    //
    // Note that it is possible that none of the GTEST_OS_* macros are defined.
    //
    // Macros indicating available Google Test features (defined to 1 if
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
Back to top