Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 93 for Helvert (0.15 sec)

  1. pkg/registry/apps/replicaset/strategy.go

    	// Update is not allowed to set Spec.Selector for all groups/versions except extensions/v1beta1.
    	// If RequestInfo is nil, it is better to revert to old behavior (i.e. allow update to set Spec.Selector)
    	// to prevent unintentionally breaking users who may rely on the old behavior.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 16 21:06:43 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  2. cni/pkg/install/install_test.go

    						t.Fatal(err)
    					}
    					assert.Equal(t, isReady.Load(), false)
    				case <-time.After(5 * time.Second):
    					t.Fatal("timed out waiting for invalid configuration to be detected")
    				}
    
    				// Revert valid SA
    				if err := file.AtomicCopy(filepath.Join("testdata", c.saFilename), tempDir, c.saFilename); err != nil {
    					t.Fatal(err)
    				}
    
    				// Run sleepWatchInstall
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/NoDaemonGradleExecuter.java

                //       is set within builder object for some things such
                //       as CommandLineIntegrationTest, try PATH first, and
                //       then revert to default of Path if null
                Object path = builder.getEnvironment().get("PATH");
                if (path == null) {
                    path = builder.getEnvironment().get("Path");
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 05:38:50 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  4. src/text/template/funcs.go

    type FuncMap map[string]any
    
    // builtins returns the FuncMap.
    // It is not a global variable so the linker can dead code eliminate
    // more when this isn't called. See golang.org/issue/36021.
    // TODO: revert this back to a global map once golang.org/issue/2559 is fixed.
    func builtins() FuncMap {
    	return FuncMap{
    		"and":      and,
    		"call":     emptyCall,
    		"html":     HTMLEscaper,
    		"index":    index,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/reset.go

    	if resetOptions == nil {
    		resetOptions = newResetOptions()
    	}
    	resetRunner := workflow.NewRunner()
    
    	cmd := &cobra.Command{
    		Use:   "reset",
    		Short: "Performs a best effort revert of changes made to this host by 'kubeadm init' or 'kubeadm join'",
    		RunE: func(cmd *cobra.Command, args []string) error {
    			data, err := resetRunner.InitData(args)
    			if err != nil {
    				return err
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 12:26:58 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  6. pkg/registry/core/service/storage/storage.go

    	if err != nil {
    		return nil, err
    	}
    
    	// Our cleanup callback
    	finish := func(_ context.Context, success bool) {
    		if success {
    			txn.Commit()
    		} else {
    			txn.Revert()
    		}
    	}
    
    	return finish, nil
    }
    
    func (r *REST) beginUpdate(ctx context.Context, obj, oldObj runtime.Object, options *metav1.UpdateOptions) (genericregistry.FinishFunc, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (1)
  7. cni/pkg/plugin/sidecar_redirect.go

    	if valErr != nil {
    		return nil, fmt.Errorf("annotation value error for value %s; annotationFound = %t: %v",
    			"includeOutboundPorts", isFound, valErr)
    	}
    	// Add 15090 to sync with non-cni injection template
    	// TODO: Revert below once https://github.com/istio/istio/pull/23037 or its follow up is merged.
    	redir.excludeInboundPorts = strings.TrimSpace(redir.excludeInboundPorts)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/crypto/sha3/keccakf_amd64.s

    	mKeccakRound(rpStack, rpState, $0x8000000080008008, NOP, NOP, NOP, NOP, NOP, NOP, NOP, NOP, NOP, NOP, NOP, NOP, NOP)
    
    	// Revert the internal state to the user state
    	NOTQ _be(rpState)
    	NOTQ _bi(rpState)
    	NOTQ _go(rpState)
    	NOTQ _ki(rpState)
    	NOTQ _mi(rpState)
    	NOTQ _sa(rpState)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 16:37:53 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. samples/ambient-argo/README.md

    ta-application.yaml) (the bootstrap file), Git is the source of truth for all components of our application.  Changes to all components of Istio, including the data plane, are initiated with a pull request.  Likewise, rollbacks are as simple as a revert.
    
    In particular, Istio Sidecars are known to violate the Declarative principle - the version of Istio injected in the sidecar is determined at runtime by the version of the injector at the time the pod was created.  Upgrading the injector...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. pkg/controlplane/apiserver/config.go

    	if utilfeature.DefaultFeatureGate.Enabled(genericfeatures.APIServerTracing) {
    		if lastErr = s.Traces.ApplyTo(genericConfig.EgressSelector, genericConfig); lastErr != nil {
    			return
    		}
    	}
    	// wrap the definitions to revert any changes from disabled features
    	getOpenAPIDefinitions = openapi.GetOpenAPIDefinitionsWithoutDisabledFeatures(getOpenAPIDefinitions)
    	namer := openapinamer.NewDefinitionNamer(schemes...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top