Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for termination (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

      %1 = "tf.VarHandleOp"() {container = "", shape = #tf_type.shape<>, shared_name = "x"} : () -> !tf_res
    
      "tf.opA"() ({
        "tf.AssignAddVariableOp"(%1, %0) : (!tf_res, tensor<f32>) -> ()
        "tf.terminator"() : () -> ()
      }) { _xla_compile_device_type = "TPU", _replication_info = "foo" } : () -> ()
      "tf.AssignAddVariableOp"(%1, %0) : (!tf_res, tensor<f32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      auto new_result_types = llvm::to_vector<4>(op_->getResultTypes());
      int result_region = isa<TF::WhileRegionOp>(op_) ? 1 : 0;
      Operation* terminator = op_->getRegion(result_region).front().getTerminator();
      auto extra_result_types =
          terminator->getOperands().drop_front(op_->getNumResults()).getTypes();
      new_result_types.insert(new_result_types.end(), extra_result_types.begin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    then_branch: A region that computes the outputs of the op if cond = true.
        It returns a list of tensors using tf.yield (as the terminator). The
        types of these returned tensors is same as that of the else_branch
    else_branch: A region that computes the outputs of the op if cond = false.
        It returns a list of tensors using tf.yield (as the terminator). The
        types of these returned tensors is same as that of the then_branch
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  4. src/crypto/tls/common.go

    	// Deprecated: if this field is left at zero, session ticket keys will be
    	// automatically rotated every day and dropped after seven days. For
    	// customizing the rotation schedule or synchronizing servers that are
    	// terminating connections for the same host, use SetSessionTicketKeys.
    	SessionTicketKey [32]byte
    
    	// ClientSessionCache is a cache of ClientSessionState entries for TLS
    	// session resumption. It is only used by clients.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  5. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			expectedRequeueDuration:    1*time.Hour - time.Second*time.Duration(shortDead+1) + nextScheduleDelta,
    			expectUpdateStatus:         true,
    			jobPresentInCJActiveStatus: true,
    		},
    		"do nothing if the namespace is terminating": {
    			jobCreateError: &errors.StatusError{ErrStatus: metav1.Status{Details: &metav1.StatusDetails{Causes: []metav1.StatusCause{
    				{
    					Type:    v1.NamespaceTerminatingCause,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/route/route.go

    	mesh *meshconfig.MeshConfig,
    	mostSpecificWildcardVsIndex map[host.Name]types.NamespacedName,
    ) []VirtualHostWrapper {
    	meshGateway := sets.New(constants.IstioMeshGateway)
    	opts := RouteOptions{
    		// Sidecar is never terminating TLS
    		IsTLS: false,
    		// Sidecar is never doing H3 (yet)
    		IsHTTP3AltSvcHeaderNeeded: false,
    		Mesh:                      mesh,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			// if all containers are done and should not be started, there is no need to create a new sandbox.
    			// this stops confusing logs on pods whose containers all have exit codes, but we recreate a sandbox before terminating it.
    			//
    			// If ContainerStatuses is empty, we assume that we've never
    			// successfully created any containers. In this case, we should
    			// retry creating the sandbox.
    			changes.CreateSandbox = false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbFile.java

         * compare authentication information. In essence, two
         * <code>SmbFile</code> objects that refer to
         * the same file should generate the same hashcode provided it is possible
         * to make such a determination.
         *
         * @return A hashcode for this abstract file
         */
        @Override
        public int hashCode () {
            return this.fileLocator.hashCode();
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  9. guava/src/com/google/common/collect/MapMakerInternalMap.java

        void readEntries(ObjectInputStream in) throws IOException, ClassNotFoundException {
          while (true) {
            K key = (K) in.readObject();
            if (key == null) {
              break; // terminator
            }
            V value = (V) in.readObject();
            delegate.put(key, value);
          }
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    			t.Fatalf("service instances store `instancesBySE` memory leak, expect 1, got %d", len(sd.serviceInstances.instancesBySE[namespacedName]))
    		}
    
    		// The following sections mimic this scenario:
    		// f1 starts terminating, f3 picks up the IP, f3 delete event (pod
    		// not ready yet) comes before f1
    		//
    		// Delete f3 event
    		callInstanceHandlers([]*model.WorkloadInstance{fi3}, sd, model.EventDelete, t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
Back to top