Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for conceptually (0.17 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/component/SoftwareComponentContainerInternal.java

        /**
         * Get the main component of a project.
         * <p>
         * This method will remain internal until we pinpoint what a "main" component truly is,
         * and if it is conceptually necessary.
         */
        Property<SoftwareComponent> getMainComponent();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 10 15:02:08 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/sparsetree.go

    	parent  *Block
    
    	// Every block has 6 numbers associated with it:
    	// entry-1, entry, entry+1, exit-1, and exit, exit+1.
    	// entry and exit are conceptually the top of the block (phi functions)
    	// entry+1 and exit-1 are conceptually the bottom of the block (ordinary defs)
    	// entry-1 and exit+1 are conceptually "just before" the block (conditions flowing in)
    	//
    	// This simplifies life if we wish to query information about x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  3. futures/failureaccess/pom.xml

      <description>
        Contains
        com.google.common.util.concurrent.internal.InternalFutureFailureAccess and
        InternalFutures. Most users will never need to use this artifact. Its
        classes are conceptually a part of Guava, but they're in this separate
        artifact so that Android libraries can use them without pulling in all of
        Guava (just as they can use ListenableFuture by depending on the
        listenablefuture artifact).
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 17 02:24:23 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.h

    namespace tensorflow {
    
    // An implementation of the SavedModelAPI using the TF Eager runtime. See
    // https://github.com/tensorflow/community/blob/master/rfcs/20200218-tf-c-saved-model.md
    // Conceptually, there are many differences between a tf.function and
    // a FunctionDef is executed by the C API.
    // 1. A tf.function is polymorphic, meaning it can correspond to multiple
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 21:44:45 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/core/revived_types/restored_resource.h

      //
      // Params:
      //  device - The device string associated with the SavedResource
      //           https://github.com/tensorflow/tensorflow/blob/master/tensorflow/core/protobuf/saved_object_graph.proto#L182
      //           Conceptually, this is the same device used in CapturableResource:
      //           https://github.com/tensorflow/tensorflow/blob/568e2bef00f24af1159a0846abf67c099ca78a21/tensorflow/python/training/tracking/tracking.py#L222-L225
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 23 04:49:47 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/DirectExecutorService.java

      /** Lock used whenever accessing the state variables (runningTasks, shutdown) of the executor */
      private final Object lock = new Object();
    
      /*
       * Conceptually, these two variables describe the executor being in
       * one of three states:
       *   - Active: shutdown == false
       *   - Shutdown: runningTasks > 0 and shutdown == true
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/session/CrossBuildSessionState.java

    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.io.Closeable;
    import java.util.List;
    
    /**
     * Services to be shared across build sessions.
     * <p>
     * Generally, one regular Gradle invocation is conceptually a session.
     * However, the GradleBuild task is currently implemented in such a way that it uses a discrete session.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/service/scopes/Scope.java

         */
        interface UserHome extends Global {}
    
        /**
         * These services are reused across build sessions.
         * <p>
         * Generally, one regular Gradle invocation is conceptually a session.
         * However, the GradleBuild task is currently implemented in such a way that it uses a discrete session.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/DirectExecutorService.java

      /** Lock used whenever accessing the state variables (runningTasks, shutdown) of the executor */
      private final Object lock = new Object();
    
      /*
       * Conceptually, these two variables describe the executor being in
       * one of three states:
       *   - Active: shutdown == false
       *   - Shutdown: runningTasks > 0 and shutdown == true
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/core/ops/restore_ops.cc

        return errors::Internal(
            "Failed to create vector string tensor for checkpoint restore");
      }
      // Use placement new to construct the string, since we don't have
      // access to Tensor::flat. This is conceptually equivalent to:
      // tensor.flat<tstring>()(0) = s
      new (tensor->Data()) tstring(s);
    
      out->reset(ctx->CreateLocalHandle(tensor.get()));
      return Status();
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 11 01:20:50 UTC 2021
    - 4.5K bytes
    - Viewed (0)
Back to top