Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for assign_id (0.24 sec)

  1. cmd/test-utils_test.go

    	globalObjectAPI = nil
    	globalObjLayerMutex.Unlock()
    }
    
    // reset the value of the Global server config.
    // set it to `nil`.
    func resetGlobalConfig() {
    	// hold the mutex lock before a new config is assigned.
    	globalServerConfigMu.Lock()
    	// Save the loaded config globally.
    	globalServerConfig = nil
    	globalServerConfigMu.Unlock()
    }
    
    func resetGlobalEndpoints() {
    	globalEndpoints = EndpointServerPools{}
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    			return v.ID, cloRegStore
    		}
    	}
    	// nothing found
    	return ID(-1), cloRegStore
    }
    
    // isNamedRegParam returns true if the param corresponding to "p"
    // is a named, non-blank input parameter assigned to one or more
    // registers.
    func isNamedRegParam(p abi.ABIParamAssignment) bool {
    	if p.Name == nil {
    		return false
    	}
    	n := p.Name
    	if n.Sym() == nil || n.Sym().IsBlank() {
    		return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. tests/integration/ambient/baseline_test.go

    								Check: check.BodyContains(`Hostname=uncaptured-v`), // can hit v1 or v2
    							})
    						})
    				})
    			}
    		})
    }
    
    // Ambient ServiceEntry support for auto assigned vips is lacking for now, but planned.
    // for more, see https://github.com/istio/istio/pull/45621#discussion_r1254970579
    func TestServiceEntryDNSWithAutoAssign(t *testing.T) {
    	framework.NewTest(t).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let constructor = "TF::CreateUnrollBatchMatMulPassPass()";
    }
    
    def ClusterFormationPass : Pass<"tf-device-cluster-formation", "mlir::ModuleOp"> {
      let summary = "Form clusters from instructions assigned to same device";
      let constructor = "TFDevice::CreateClusterFormationPass()";
      let dependentDialects = ["tf_device::TensorFlowDeviceDialect"];
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    If `indices` is a permutation and `len(indices) == params.shape[0]` then
    this operation will permute `params` accordingly.
    
    `validate_indices`: DEPRECATED. If this operation is assigned to CPU, values in
    `indices` are always validated to be within range. If assigned to GPU,
    out-of-bound indices result in safe but unspecified behavior, which may include
    raising an error.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    // kubelet - what pods should be running.
    //
    // WARNING: Currently this list does not include pods that have been force
    // deleted but may still be terminating, which means resources assigned to
    // those pods during admission may still be in use. See
    // https://github.com/kubernetes/kubernetes/issues/104824
    func (kl *Kubelet) GetActivePods() []*v1.Pod {
    	allPods := kl.podManager.GetPods()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. cmd/bucket-replication.go

    	MRFWorkerMinLimit = 2
    
    	// MRFWorkerAutoDefault is default number of mrf workers for "auto" mode
    	MRFWorkerAutoDefault = 4
    
    	// LargeWorkerCount is default number of workers assigned to large uploads ( >= 128MiB)
    	LargeWorkerCount = 10
    )
    
    // NewReplicationPool creates a pool of replication workers of specified size
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    	// of completing higher-level actions. The order of
    	// work does not matter much to overall execution time,
    	// but when running "go test std" it is nice to see each test
    	// results as soon as possible. The priorities assigned
    	// ensure that, all else being equal, the execution prefers
    	// to do what it would have done first in a simple depth-first
    	// dependency order traversal.
    	all := actionList(root)
    	for i, a := range all {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	}
    
    	// Move clock to make the unschedulable pods complete backoff.
    	c.Step(DefaultPodInitialBackoffDuration + time.Second)
    	// Simulate addition of an assigned pod. The pod has matching labels for
    	// affinityPod. So, affinityPod should go to activeQ.
    	q.AssignedPodAdded(logger, labelPod)
    	if getUnschedulablePod(q, affinityPod) != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. src/net/http/server.go

    type Server struct {
    	// Addr optionally specifies the TCP address for the server to listen on,
    	// in the form "host:port". If empty, ":http" (port 80) is used.
    	// The service names are defined in RFC 6335 and assigned by IANA.
    	// See net.Dial for details of the address format.
    	Addr string
    
    	Handler Handler // handler to invoke, http.DefaultServeMux if nil
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top