Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 146 for idempotent (0.16 sec)

  1. internal/s3select/select.go

    type ObjectReadSeekCloser struct {
    	segmentReader ObjectSegmentReaderFn
    
    	size   int64 // actual object size regardless of compression/encryption
    	offset int64
    	reader io.ReadCloser
    
    	// reader can be closed idempotently multiple times
    	closerOnce sync.Once
    	// Error storing reader.Close()
    	closerErr error
    }
    
    // NewObjectReadSeekCloser creates a new ObjectReadSeekCloser.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

                "type": "string"
              },
              "generation": {
                "description": "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  3. pkg/registry/core/service/storage/storage.go

    	// Decorator hook is not called on 'old' in the update path.
    	r.defaultOnReadService(oldSvc)
    
    	// Fix up allocated values that the client may have not specified (for
    	// idempotence).
    	patchAllocatedValues(After{newSvc}, Before{oldSvc})
    
    	// Make sure ClusterIP and ClusterIPs are in sync.  This has to happen
    	// early, before anyone looks at them.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_op_base.td

    // the core implementation requiring SameOperandsAndResultType.
    //
    // This shouldn't be used for side effecting ops.
    def TF_Idempotent : NativeOpTrait<"TF::IsIdempotent">;
    
    // op op X == X
    // This version requires TF_SameOperandsAndResultTypeResolveRef trait unlike
    // the core implementation requiring SameOperandsAndResultType.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/breakup-islands.mlir

    // RUN: tf-opt -tf-executor-break-up-islands %s | FileCheck %s
    // RUN: tf-opt -tf-executor-break-up-islands -tf-executor-break-up-islands %s | FileCheck %s
    
    // All tests also test for idempotence.
    
    // Test that external functions aren't processed (used to crash).
    // CHECK-LABEL: func private @unused_external_func
    func.func private @unused_external_func()
    
    func.func @multiple_return(%arg0: tensor<*xi32>, %arg1: tensor<i32>) -> (tensor<*xi32>, tensor<*xi32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 28.5K bytes
    - Viewed (0)
  6. src/text/scanner/scanner.go

    	}
    
    	// part of the token text was saved in tokBuf: save the rest in
    	// tokBuf as well and return its content
    	s.tokBuf.Write(s.srcBuf[s.tokPos:s.tokEnd])
    	s.tokPos = s.tokEnd // ensure idempotency of TokenText() call
    	return s.tokBuf.String()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  7. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // some resources may allow a client to request the generation of an appropriate name
      // automatically. Name is primarily intended for creation idempotence and configuration
      // definition.
      // Cannot be updated.
      // More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
      // +optional
      optional string name = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // some resources may allow a client to request the generation of an appropriate name
      // automatically. Name is primarily intended for creation idempotence and configuration
      // definition.
      // Cannot be updated.
      // More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names
      // +optional
      optional string name = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  9. pkg/kube/inject/inject.go

    	pod := req.pod.DeepCopy()
    	prevStatus := injectionStatus(pod)
    	if prevStatus == nil {
    		return req.pod
    	}
    	// We found a previous status annotation. Possibly we are re-injecting the pod
    	// To ensure idempotency, remove our injected containers first
    	for _, c := range prevStatus.Containers {
    		pod.Spec.Containers = modifyContainers(pod.Spec.Containers, c, Remove)
    	}
    	for _, c := range prevStatus.InitContainers {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    			existingKubeConfig: invalidConfig,
    			kubeConfig:         invalidConfig,
    			expectedError:      true,
    		},
    		{ // if KubeConfig is equal to the existingKubeConfig - refers to the same cluster -, use the existing (Test idempotency)
    			name:               "KubeConfig refers to the same cluster",
    			existingKubeConfig: config,
    			kubeConfig:         config,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top