Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for physical (0.16 sec)

  1. buildscripts/checkdeps.sh

    	while [ -L "$TARGET_FILE" ]; do
    		TARGET_FILE=$(env readlink $TARGET_FILE)
    		cd $(dirname $TARGET_FILE)
    		TARGET_FILE=$(basename $TARGET_FILE)
    	done
    
    	# Compute the canonicalized name by finding the physical path
    	# for the directory we're in and appending the target file.
    	PHYS_DIR=$(pwd -P)
    	RESULT=$PHYS_DIR/$TARGET_FILE
    	echo $RESULT
    }
    
    ## FIXME:
    ## In OSX, 'sort -V' option does not exist, hence
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. pilot/pkg/model/gateway.go

    	ServerPorts []ServerPort
    
    	// MergedServers map from physical port to virtual servers
    	// using TCP protocols (like HTTP1.1, H2, mysql, redis etc)
    	MergedServers map[ServerPort]*MergedServers
    
    	// MergedQUICTransportServers map from physical port to servers listening
    	// on QUIC (like HTTP3). Currently the support is experimental and
    	// is limited to HTTP3 only
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/tpu_rewrite_device_util.cc

    // TPU cluster.
    // TPU_REPLICATED_HOST_{core} is the host that corresponds to the TPU core.
    // Different TPU_REPLICATED_HOST_*s can map to the same physical host within the
    // same replica. Also, TPU_REPLICATE_HOST_{core} in different replicas can map
    // to the same physical host. For example, if there are 2 hosts, num_replicas=8,
    // and num_cores_per_replica=2, then all cores in the first 4 replicas will map
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 20:10:40 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  4. CREDITS

        a) Convey the object code in, or embodied in, a physical product
        (including a physical distribution medium), accompanied by the
        Corresponding Source fixed on a durable physical medium
        customarily used for software interchange.
    
        b) Convey the object code in, or embodied in, a physical product
        (including a physical distribution medium), accompanied by a
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let constructor = "TFTPU::CreateTPUColocateCompositeResourceOps()";
      let description = [{
        Pass that co-locates resource ops that use composite device resources
        (packed tensors) with the underlying physical TPU device.
    
        So for example, if we have a function that does (inside a `tf_device.replicate`):
    
        ```mlir
          %0 = "tf.ReadVariableOp"(%arg1) : (tensor<*x!tf_type.resource<tensor<4xf32>>>) -> tensor<4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let summary = [{
    V2 format specific: merges the metadata files of sharded checkpoints.  The
      }];
    
      let description = [{
    result is one logical checkpoint, with one physical metadata file and renamed
    data files.
    
    Intended for "grouping" multiple checkpoints in a sharded checkpoint setup.
    
    If delete_old_dirs is true, attempts to delete recursively the dirname of each
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  7. src/net/http/server.go

    	return false
    }
    
    func (w *response) Header() Header {
    	if w.cw.header == nil && w.wroteHeader && !w.cw.wroteHeader {
    		// Accessing the header between logically writing it
    		// and physically writing it means we need to allocate
    		// a clone to snapshot the logically written state.
    		w.cw.header = w.handlerHeader.Clone()
    	}
    	w.calledHeader = true
    	return w.handlerHeader
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	}
    
    	// Note: we leave pod containers to be reclaimed in the background since dockershim requires the
    	// container for retrieving logs and we want to make sure logs are available until the pod is
    	// physically deleted.
    
    	// remove any cgroups in the hierarchy for pods that are no longer running.
    	if kl.cgroupsPerQOS {
    		pcm := kl.containerManager.NewPodContainerManager()
    		name, _ := pcm.GetPodContainerName(pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			defer cancel()
    			informerFactory.Start(ctx.Done())
    			informerFactory.WaitForCacheSync(ctx.Done())
    
    			if tt.deletePod {
    				// Simulate that the test pod gets deleted physically.
    				informerFactory.Core().V1().Pods().Informer().GetStore().Delete(tt.podInfo.Pod)
    			}
    
    			q.AddNominatedPod(logger, tt.podInfo, 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)
Back to top