Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 191 for idempotent (1.05 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/split_into_island_per_op.mlir

    // RUN: tf-opt -tf-executor-split-into-island-per-op %s --split-input-file --verify-diagnostics | FileCheck %s
    
    // All tests also test for idempotence.
    
    // Test that functions must have a single graph op in their body, otherwise, the
    // pass will signal failure.
    
    // expected-error@+1 {{expected function to contain only a graph_op}}
    func.func @multiple_func_body_ops() {
      tf_executor.graph {
        tf_executor.island {
          "tf.NoOp"() : () -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 20.2K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cpumanager/cpu_manager.go

    				}
    				m.Unlock()
    				continue
    			}
    
    			// Once we make it here we know we have a running container.
    			// Idempotently add it to the containerMap incase it is missing.
    			// This can happen after a kubelet restart, for example.
    			m.containerMap.Add(string(pod.UID), container.Name, containerID)
    			m.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 19.9K bytes
    - Viewed (2)
  3. 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)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.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 Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. pkg/controller/deployment/sync.go

    	// Create new ReplicaSet
    	newRS := apps.ReplicaSet{
    		ObjectMeta: metav1.ObjectMeta{
    			// Make the name deterministic, to ensure idempotence
    			Name:            d.Name + "-" + podTemplateSpecHash,
    			Namespace:       d.Namespace,
    			OwnerReferences: []metav1.OwnerReference{*metav1.NewControllerRef(d, controllerKind)},
    			Labels:          newRSTemplate.Labels,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"generateName":               "GenerateName is an optional prefix, used by the server, to generate...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
Back to top