Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 49 for gems (0.05 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      std::vector<Node*> result;
      for (Node* n : g.nodes()) {
        if (n->type_string() == type) {
          result.push_back(n);
        }
      }
      return result;
    }
    
    // Gets data types from `arg_nodes` and fills them into `recv_at_host_dtypes`.
    Status GetArgDataTypes(const std::vector<Node*>& arg_nodes,
                           std::vector<DataType>* recv_at_host_dtypes) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			initialPods:                  []*v1.Pod{pod},
    			actions: []action{
    				// This won't be added to inFlightEvents because no inFlightPods at this point.
    				{eventHappens: &PvcAdd},
    				{podPopped: pod},
    				// This gets added for the pod.
    				{eventHappens: &PvAdd},
    				// This doesn't get added because no plugin is interested in PvUpdate.
    				{eventHappens: &PvUpdate},
    			},
    			wantInFlightPods:   []*v1.Pod{pod},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&gel;":                             "\u22db",
    	"&geq;":                             "\u2265",
    	"&geqq;":                            "\u2267",
    	"&geqslant;":                        "\u2a7e",
    	"&ges;":                             "\u2a7e",
    	"&gescc;":                           "\u2aa9",
    	"&gesdot;":                          "\u2a80",
    	"&gesdoto;":                         "\u2a82",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    		// There is one exception: runtime/cgo's job is to bridge the
    		// cgo and non-cgo worlds, so it necessarily has files in both.
    		// In that case gcc only gets the gcc_* files.
    		var gccfiles []string
    		gccfiles = append(gccfiles, cfiles...)
    		cfiles = nil
    		if p.Standard && p.ImportPath == "runtime/cgo" {
    			filter := func(files, nongcc, gcc []string) ([]string, []string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

      echo "Creating required directories"
      mkdir -p /var/lib/kubelet
      mkdir -p /etc/kubernetes/manifests
      if [[ "${KUBERNETES_MASTER:-}" == "false" ]]; then
        mkdir -p /var/lib/kube-proxy
      fi
    }
    
    # Gets the total number of $(1) and $(2) type disks specified
    # by the user in ${NODE_LOCAL_SSDS_EXT}
    function get-local-disk-num() {
      local interface="${1}"
      local format="${2}"
    
      localdisknum=0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. src/reflect/value.go

    // v.flag.mustBe(Bool), which will only bother to copy the
    // single important word for the receiver.
    func (f flag) mustBe(expected Kind) {
    	// TODO(mvdan): use f.kind() again once mid-stack inlining gets better
    	if Kind(f&flagKindMask) != expected {
    		panic(&ValueError{valueMethodName(), f.kind()})
    	}
    }
    
    // mustBeExported panics if f records that the value was obtained using
    // an unexported field.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"garlic":                               "\U0001f9c4",
    	"gb":                                   "\U0001f1ec\U0001f1e7",
    	"gear":                                 "\u2699\ufe0f",
    	"gem":                                  "\U0001f48e",
    	"gemini":                               "\u264a",
    	"genie":                                "\U0001f9de",
    	"genie_man":                            "\U0001f9de\u200d\u2642\ufe0f",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        ```mlir
        tf_device.replicate([%0, %1] as %ri: tensor<*xi32>) {n = 2 : i32} {
          %2 = "tf.Shape"(%ri) : (tensor<*xi32>) -> tensor<?xi32>
          tf_device.return
        }
        ```
    
        gets converted to
    
        ```mlir
        tf_device.replicate([%0, %1] as %ri: tensor<*xi32>) {n = 2 : i32} {
          %2 = "tf.Shape"(%0) : (tensor<*xi32>) -> tensor<?xi32>
          tf_device.return
        }
        ```
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. cmd/bucket-replication.go

    	// ReplicationSsecChecksumHeader - the encrypted checksum of the SSE-C encrypted object.
    	ReplicationSsecChecksumHeader = "X-Minio-Replication-Ssec-Crc"
    )
    
    // gets replication config associated to a given bucket name.
    func getReplicationConfig(ctx context.Context, bucketName string) (rc *replication.Config, err error) {
    	rCfg, _, err := globalBucketMetadataSys.GetReplicationConfig(ctx, bucketName)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    	if err != nil {
    		return nil, err
    	}
    
    	return db.queryDC(ctx, nil, dc, dc.releaseConn, query, args)
    }
    
    // queryDC executes a query on the given connection.
    // The connection gets released by the releaseConn function.
    // The ctx context is from a query method and the txctx context is from an
    // optional transaction context.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top