Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for type_ (0.04 sec)

  1. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

          shape_tensor, scalar_val);
    }
    
    // Returns a new type by prepending the specified dimension to the shape of
    // the given type if it is a ranked type.
    Type PrependLeadingDimIfRanked(int64_t dim, Type type,
                                   PatternRewriter *rewriter) {
      Type dtype = getElementTypeOrSelf(type);
      if (RankedTensorType ty = type.dyn_cast<RankedTensorType>()) {
        llvm::SmallVector<int64_t, 4> shape = {dim};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    		return
    	}
    
    	// Helper containing boilerplate common to starting all types of containers.
    	// typeName is a description used to describe this type of container in log messages,
    	// currently: "container", "init container" or "ephemeral container"
    	// metricLabel is the label used to describe this type of container in monitoring metrics.
    	// currently: "container", "init_container" or "ephemeral_container"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ====
    
    We are using the Gradle API to refer to the tasks by name and type, rather than using accessors.
    Note that it's necessary to specify the type of the task explicitly, otherwise the script won't compile because the inferred type will be `Task`, not `Test`, and the `testLogging` property is specific to the `Test` task type.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    // like sysAlloc or persistentAlloc.
    //
    // In general, it's better to use real types which embed
    // runtime/internal/sys.NotInHeap, but this serves as a generic type
    // for situations where that isn't possible (like in the allocators).
    //
    // TODO: Use this as the return type of sysAlloc, persistentAlloc, etc?
    type notInHeap struct{ _ sys.NotInHeap }
    
    func (p *notInHeap) add(bytes uintptr) *notInHeap {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Multimaps.java

       *
       * <p><b>Warning:</b> This method assumes that for any instance {@code k} of {@code
       * EntryTransformer} key type {@code K}, {@code k.equals(k2)} implies that {@code k2} is also of
       * type {@code K}. Using an {@code EntryTransformer} key type for which this may not hold, such as
       * {@code ArrayList}, may risk a {@code ClassCastException} when calling methods on the
       * transformed multimap.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  6. src/net/http/transport.go

    	}
    	return body
    }
    
    // readWriteCloserBody is the Response.Body type used when we want to
    // give users write access to the Body through the underlying
    // connection (TCP, unless using custom dialers). This is then
    // the concrete type for a Response.Body on the 101 Switching
    // Protocols response, as used by WebSockets, h2c, etc.
    type readWriteCloserBody struct {
    	_  incomparable
    	br *bufio.Reader // used until empty
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    	}
    	return string(stdout), string(stderr)
    }
    
    // A typeConv is a translator from dwarf types to Go types
    // with equivalent memory layout.
    type typeConv struct {
    	// Cache of already-translated or in-progress types.
    	m map[string]*Type
    
    	// Map from types to incomplete pointers to those types.
    	ptrs map[string][]*Type
    	// Keys of ptrs in insertion order (deterministic worklist)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top