Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,240 for Supplied (0.13 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectBuildList.java

        /**
         * Returns aProjectBuildList that contains only items for the specified taskSegment
         * @param taskSegment the requested task segment
         * @return a project build list for the supplied task segment
         */
        public ProjectBuildList getByTaskSegment(TaskSegment taskSegment) {
            return new ProjectBuildList(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/Cache.java

         */
        V get(K key, Function<? super K, ? extends V> factory);
    
        default V get(K key, Supplier<? extends V> supplier) {
            return get(key, __ -> supplier.get());
        }
    
        /**
         * Locates the given entry, if present. Returns {@code null} when missing.
         */
        @Nullable
        V getIfPresent(K key);
    
        /**
         * Adds the given value to the cache, replacing any existing value.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/main/java/org/gradle/process/ProcessForkOptions.java

        /**
         * Sets the working directory for the process. The supplied argument is evaluated as per {@link
         * org.gradle.api.Project#file(Object)}.
         *
         * @param dir The working directory. Must not be null.
         */
        void setWorkingDir(Object dir);
    
        /**
         * Sets the working directory for the process. The supplied argument is evaluated as per {@link
         * org.gradle.api.Project#file(Object)}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/reader_test.cc

                                                 &meta_graph_def);
      EXPECT_FALSE(st.ok());
      EXPECT_TRUE(absl::StrContains(
          st.message(),
          "Could not find meta graph def matching supplied tags: { missing-tag }"))
          << st.message();
    }
    
    TEST_F(ReaderTest, NoTagMatchMultiple) {
      MetaGraphDef meta_graph_def;
    
      const string export_dir = GetDataDependencyFilepath(TestDataSharded());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 17 21:17:08 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. samples/bookinfo/src/mysql/Dockerfile

    #   See the License for the specific language governing permissions and
    #   limitations under the License.
    
    FROM mysql:8.3.0
    # MYSQL_ROOT_PASSWORD must be supplied as an env var
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 714 bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketWriter.kt

      private val maskCursor: Buffer.UnsafeCursor? = if (isClient) Buffer.UnsafeCursor() else null
    
      /** Send a ping with the supplied [payload]. */
      @Throws(IOException::class)
      fun writePing(payload: ByteString) {
        writeControlFrame(OPCODE_CONTROL_PING, payload)
      }
    
      /** Send a pong with the supplied [payload]. */
      @Throws(IOException::class)
      fun writePong(payload: ByteString) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_compiler_options_util_test.cc

      EXPECT_EQ(options.graph_def_version, TF_GRAPH_DEF_VERSION);
      EXPECT_FALSE(options.allow_cpu_custom_calls);
      EXPECT_FALSE(options.alias_passthrough_params);
      // Check if options have the supplied shape determination functions set.
      TF_ASSERT_OK_AND_ASSIGN(
          auto shape, options.shape_determination_fns.shape_representation_fn(
                          TensorShape(), DT_FLOAT, false,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 29 01:41:20 UTC 2023
    - 14.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/LocalComponentRegistry.java

     * or in another build within a composite.
     */
    @ThreadSafe
    public interface LocalComponentRegistry {
        /**
         * @return The component metadata for the supplied identifier.
         */
        LocalComponentGraphResolveState getComponent(ProjectComponentIdentifier projectIdentifier);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 17:59:41 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/CollectionSupplier.java

        /**
         * Combines the current collection supplier with the given {@link Collector} (also a {@link ValueSupplier value supplier}), producing a new
         * collection supplier that produces a collection that contains the original elements and the
         * elements supplied by the given collector.
         *
         * @param added a collector that represents an addition to the collection to be returned by this supplier
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 05:02:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/escape/ParametricNullness.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.Target;
    
    /**
     * Annotates a "top-level" type-variable usage that takes its nullness from the type argument
     * supplied by the user of the class. For example, {@code Multiset.Entry.getElement()} returns
     * {@code @ParametricNullness E}, which means:
     *
     * <ul>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 10 21:27:51 UTC 2022
    - 4.1K bytes
    - Viewed (0)
Back to top