Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 51 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. 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: Mon Apr 01 16:15:01 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    are inherited from all parent types including implemented interfaces. Property type annotations override any other property type annotation declared in a parent type. This way an `@InputFile` property can be turned into an `@InputDirectory` property in a child task type.
    
    Annotations on a property declared in a type override similar annotations declared by the superclass and in any implemented interfaces. Superclass annotations take precedence over annotations declared in implemented interfaces....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    The internal `org.gradle.api.internal.artifacts.dsl.dependencies.DependencyFactory` type was renamed to `org.gradle.api.internal.artifacts.dsl.dependencies.DependencyFactoryInternal`.
    As an internal type, it should not be used, but for compatibility reasons the inner `ClassPathNotation` type is still available.
    This name for the type is deprecated and will be removed in Gradle 8.0.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/obj.go

    			}
    		default:
    			panic(fmt.Sprintf("unhandled type %+v", p.To.Type))
    		}
    
    	case obj.ACALL:
    		switch p.To.Type {
    		case obj.TYPE_MEM:
    			// Handled in preprocess.
    		case obj.TYPE_REG:
    			p.As = AJALR
    			p.From.Type = obj.TYPE_REG
    			p.From.Reg = REG_LR
    		default:
    			ctxt.Diag("unknown destination type %+v in CALL: %v", p.To.Type, p)
    		}
    
    	case obj.AUNDEF:
    		p.As = AEBREAK
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  10. 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)
Back to top