Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 356 for captures (0.12 sec)

  1. android/guava/src/com/google/common/reflect/TypeCapture.java

    import java.lang.reflect.ParameterizedType;
    import java.lang.reflect.Type;
    
    /**
     * Captures the actual type of {@code T}.
     *
     * @author Ben Yu
     */
    @ElementTypesAreNonnullByDefault
    abstract class TypeCapture<T> {
    
      /** Returns the captured type. */
      final Type capture() {
        Type superclass = getClass().getGenericSuperclass();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 16 21:10:04 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/reflect/TypeCapture.java

    import java.lang.reflect.ParameterizedType;
    import java.lang.reflect.Type;
    
    /**
     * Captures the actual type of {@code T}.
     *
     * @author Ben Yu
     */
    @ElementTypesAreNonnullByDefault
    abstract class TypeCapture<T> {
    
      /** Returns the captured type. */
      final Type capture() {
        Type superclass = getClass().getGenericSuperclass();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 16 21:10:04 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/revived_types/tf_signature_def_function.h

      //                 de-register it on destruction. function_def must be
      //                 non-null, but otherwise has no lifetime requirements.
      //  captures - The captured TensorHandles associated with this
      //             TFConcreteFunction.
      //  metadata - FunctionMetadata associated with this TFSignatureDefFunction.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 19:43:25 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/core/revived_types/tf_concrete_function.cc

        const FunctionDef* function_def,
        std::vector<ImmediateExecutionTensorHandle*> captures,
        FunctionMetadata metadata, ImmediateExecutionContext* ctx,
        std::unique_ptr<TFConcreteFunction>* out) {
      std::unique_ptr<FlatTensorFunction> func;
      TF_RETURN_IF_ERROR(FlatTensorFunction::Create(
          function_def, std::move(captures), ctx, &func));
    
      out->reset(new TFConcreteFunction(std::move(func), std::move(metadata)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 27 06:55:27 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/core/revived_types/tf_signature_def_function.cc

        const FunctionDef* function_def,
        std::vector<ImmediateExecutionTensorHandle*> captures,
        SignatureDefFunctionMetadata metadata, ImmediateExecutionContext* ctx,
        std::unique_ptr<TFSignatureDefFunction>* out) {
      std::unique_ptr<FlatTensorFunction> func;
      TF_RETURN_IF_ERROR(FlatTensorFunction::Create(
          function_def, std::move(captures), ctx, &func));
    
      out->reset(new TFSignatureDefFunction(std::move(func), std::move(metadata)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 27 07:01:57 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/core/revived_types/tf_concrete_function_revival_state.h

      int node_id;
    
      // Pointer to the original functiondef. fdef_ is guaranteed to be
      // non-null.
      const FunctionDef* fdef;
    
      // TensorHandle captures for this funtion
      std::vector<ImmediateExecutionTensorHandle*> captures;
    
      // SavedConcreteFunction contains much of the metadata of the expected "types"
      // of the inputs and outputs of a function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 23 04:49:47 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  7. test/fixedbugs/issue54912.dir/a.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that inlining a function literal that captures both a type
    // switch case variable and another local variable works correctly.
    
    package a
    
    func F(p *int, x any) func() {
    	switch x := x.(type) {
    	case int:
    		return func() {
    			*p += x
    		}
    	}
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 17:26:34 UTC 2022
    - 423 bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/types/uid.go

    limitations under the License.
    */
    
    package types
    
    // UID is a type that holds unique ID values, including UUIDs.  Because we
    // don't ONLY use UUIDs, this is an alias to string.  Being a type captures
    // intent and helps make sure that UIDs and names do not get conflated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 11 14:09:48 UTC 2017
    - 825 bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise/src/test/groovy/org/gradle/internal/enterprise/exceptions/ExceptionMetadataHelperTest.groovy

            expect:
            with(ExceptionMetadataHelper.getMetadata(c)) {
                get("isMultiCause") == true.toString()
            }
        }
    
        def "captures location information from TaskExecutionException"() {
            given:
            def path = ":build:the:path"
            def task = Mock(TaskInternal)
            _ * task.getIdentityPath() >> Path.path(path)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/PreviousExecutionState.java

    package org.gradle.internal.execution.history;
    
    import com.google.common.collect.ImmutableSortedMap;
    import org.gradle.internal.fingerprint.FileCollectionFingerprint;
    import org.gradle.internal.hash.HashCode;
    
    /**
     * Captures the state a {@link org.gradle.internal.execution.UnitOfWork} after the previous execution has finished.
     */
    public interface PreviousExecutionState extends ExecutionInputState, ExecutionOutputState {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 09:46:47 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top