Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 191 for idempotent (0.24 sec)

  1. src/go/printer/printer_test.go

    	{"slow.input", "slow.golden", idempotent},
    	{"complit.input", "complit.x", export},
    	{"go2numbers.input", "go2numbers.golden", idempotent},
    	{"go2numbers.input", "go2numbers.norm", normNumber | idempotent},
    	{"generics.input", "generics.golden", idempotent | allowTypeParams},
    	{"gobuild1.input", "gobuild1.golden", idempotent},
    	{"gobuild2.input", "gobuild2.golden", idempotent},
    	{"gobuild3.input", "gobuild3.golden", idempotent},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cpumanager/policy.go

    )
    
    // Policy implements logic for pod container to CPU assignment.
    type Policy interface {
    	Name() string
    	Start(s state.State) error
    	// Allocate call is idempotent
    	Allocate(s state.State, pod *v1.Pod, container *v1.Container) error
    	// RemoveContainer call is idempotent
    	RemoveContainer(s state.State, podUID string, containerName string) error
    	// GetTopologyHints implements the topologymanager.HintProvider Interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/testing/helpers.go

    )
    
    // WithReinvocationTesting wraps a mutating admission handler and reinvokes it each time Admit is
    // called. It checks the admission output object and reports a test error if the admission handler
    // performs non-idempotent mutatations to the object.
    func WithReinvocationTesting(t *testing.T, admission admission.MutationInterface) admission.MutationInterface {
    	return &reinvoker{t, admission}
    }
    
    type reinvoker struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/memorymanager/policy_none.go

    	return string(policyTypeNone)
    }
    
    func (p *none) Start(s state.State) error {
    	return nil
    }
    
    // Allocate call is idempotent
    func (p *none) Allocate(s state.State, pod *v1.Pod, container *v1.Container) error {
    	return nil
    }
    
    // RemoveContainer call is idempotent
    func (p *none) RemoveContainer(s state.State, podUID string, containerName string) {
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 05 17:52:25 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/memorymanager/policy.go

    // Policy implements logic for pod container to a memory assignment.
    type Policy interface {
    	Name() string
    	Start(s state.State) error
    	// Allocate call is idempotent
    	Allocate(s state.State, pod *v1.Pod, container *v1.Container) error
    	// RemoveContainer call is idempotent
    	RemoveContainer(s state.State, podUID string, containerName string)
    	// GetTopologyHints implements the topologymanager.HintProvider Interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 05 17:52:25 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. src/cmd/gofmt/long_test.go

    	// the first and 2nd result should be identical
    	if !bytes.Equal(b1.Bytes(), b2.Bytes()) {
    		// A known instance of gofmt not being idempotent
    		// (see Issue #24472)
    		if strings.HasSuffix(filename, "issue22662.go") {
    			t.Log("known gofmt idempotency bug (Issue #24472)")
    			return
    		}
    		t.Errorf("gofmt %s not idempotent", filename)
    	}
    }
    
    func testFiles(t *testing.T, filenames <-chan string, done chan<- int) {
    	b1 := new(bytes.Buffer)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 20:27:28 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. docs/bucket/versioning/README.md

    > NOTE: Server side replication is supported for idempotent versions on directory objects.
    
    ### Idempotent versions on delete markers
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 04 21:43:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. pkg/kubelet/util/manager/manager.go

    	//
    	// NOTE: All implementations of RegisterPod should be idempotent.
    	RegisterPod(pod *v1.Pod)
    
    	// UnregisterPod unregisters objects referenced from a given pod that are not
    	// used by any other registered pod.
    	//
    	// NOTE: All implementations of UnregisterPod should be idempotent.
    	UnregisterPod(pod *v1.Pod)
    }
    
    // Store is the interface for a object cache that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 02:22:52 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/primitives/Primitives.java

        return WRAPPER_TO_PRIMITIVE_TYPE.containsKey(checkNotNull(type));
      }
    
      /**
       * Returns the corresponding wrapper type of {@code type} if it is a primitive type; otherwise
       * returns {@code type} itself. Idempotent.
       *
       * <pre>
       *     wrap(int.class) == Integer.class
       *     wrap(Integer.class) == Integer.class
       *     wrap(String.class) == String.class
       * </pre>
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 05 19:04:25 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/primitives/Primitives.java

        return WRAPPER_TO_PRIMITIVE_TYPE.containsKey(checkNotNull(type));
      }
    
      /**
       * Returns the corresponding wrapper type of {@code type} if it is a primitive type; otherwise
       * returns {@code type} itself. Idempotent.
       *
       * <pre>
       *     wrap(int.class) == Integer.class
       *     wrap(Integer.class) == Integer.class
       *     wrap(String.class) == String.class
       * </pre>
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 05 19:04:25 UTC 2022
    - 4.5K bytes
    - Viewed (0)
Back to top