Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 59 for assign_id (0.33 sec)

  1. src/runtime/mfinal.go

    // new, by taking the address of a composite literal, or by taking the
    // address of a local variable.
    // The argument finalizer must be a function that takes a single argument
    // to which obj's type can be assigned, and can have arbitrary ignored return
    // values. If either of these is not true, SetFinalizer may abort the
    // program.
    //
    // Finalizers are run in dependency order: if A points at B, both have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. cmd/bucket-replication-utils.go

    type TargetReplicationResyncStatus struct {
    	StartTime  time.Time `json:"startTime" msg:"st"`
    	LastUpdate time.Time `json:"lastUpdated" msg:"lst"`
    	// Resync ID assigned to this reset
    	ResyncID string `json:"resyncID" msg:"id"`
    	// ResyncBeforeDate - resync all objects created prior to this date
    	ResyncBeforeDate time.Time `json:"resyncBeforeDate" msg:"rdt"`
    	// Status of resync operation
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/mlrt/tf_to_mlrt.mlir

      // CHECK: mlrt.await_handle
      mlrt.await_handle %3
      // CHECK: return
      // CHECK-SAME: !tf_mlrt.tensor
      func.return %2 : tensor<i32>
    }
    
    // -----
    
    // Support pre-assigned op_key
    
    // CHECK-LABEL: @main
    // CHECK-SAME: ([[input0:%.*]]: !tf_mlrt.tensor, [[promise_b:%.*]]: !mlrt.promise)
    func.func @main(%input0: tensor<i32>, %promise_b: !mlrt.promise) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    std::unique_ptr<OperationPass<ModuleOp>>
    CreateTFExecutorUpdateControlDependenciesPass();
    
    }  // namespace tf_executor
    
    namespace TFDevice {
    // Creates a pass that forms clusters from instructions that are assigned to
    // same device.
    std::unique_ptr<OperationPass<ModuleOp>> CreateClusterFormationPass();
    
    // Sinks `tf.Const` operations in the ClusterOp region using them. This is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  5. src/runtime/runtime2.go

    	// stack is owned by this goroutine. It is not on a run queue.
    	// It is assigned an M and a P (g.m and g.m.p are valid).
    	_Grunning // 2
    
    	// _Gsyscall means this goroutine is executing a system call.
    	// It is not executing user code. The stack is owned by this
    	// goroutine. It is not on a run queue. It is assigned an M.
    	_Gsyscall // 3
    
    	// _Gwaiting means this goroutine is blocked in the runtime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  6. pkg/kubelet/container/runtime.go

    type PodStatus struct {
    	// ID of the pod.
    	ID types.UID
    	// Name of the pod.
    	Name string
    	// Namespace of the pod.
    	Namespace string
    	// All IPs assigned to this pod
    	IPs []string
    	// Status of containers in the pod.
    	ContainerStatuses []*Status
    	// Status of the pod sandbox.
    	// Only for kuberuntime now, other runtime may keep it nil.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

          if (interface) interface.getEffects(effects);
          if (effects.empty()) {
            // The op is potentially side-effecting and doesn't have any effect
            // assigned, treat it as unknown side effect.
            SideEffects side_effects;
            side_effects.SetResourceId(kUnknownResourceId);
            side_effects.SetUnknownEffect();
            UpdateSideEffectsByResourceId(side_effects,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/infer.go

    package types2
    
    import (
    	"cmd/compile/internal/syntax"
    	"fmt"
    	"strings"
    )
    
    // If enableReverseTypeInference is set, uninstantiated and
    // partially instantiated generic functions may be assigned
    // (incl. returned) to variables of function type and type
    // inference will attempt to infer the missing type arguments.
    // Available with go1.21.
    const enableReverseTypeInference = true // disable for debugging
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  9. src/go/types/infer.go

    package types
    
    import (
    	"fmt"
    	"go/token"
    	"strings"
    )
    
    // If enableReverseTypeInference is set, uninstantiated and
    // partially instantiated generic functions may be assigned
    // (incl. returned) to variables of function type and type
    // inference will attempt to infer the missing type arguments.
    // Available with go1.21.
    const enableReverseTypeInference = true // disable for debugging
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

            assertTrue(cancellationSuccess.get());
            // cancellation can interleave in 3 ways
            // 1. prior to setFuture
            // 2. after setFuture before set() on the future assigned
            // 3. after setFuture and set() are called but before the listener completes.
            if (!setFutureSetSuccess.get() || !setFutureCompletionSuccess.get()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
Back to top