Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for placeholders (0.27 sec)

  1. guava/src/com/google/common/base/Preconditions.java

       *     message is formed by replacing each {@code %s} placeholder in the template with an
       *     argument. These are matched by position - the first {@code %s} gets {@code
       *     errorMessageArgs[0]}, etc. Unmatched arguments will be appended to the formatted message in
       *     square braces. Unmatched placeholders will be left as-is.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/Preconditions.java

       *     message is formed by replacing each {@code %s} placeholder in the template with an
       *     argument. These are matched by position - the first {@code %s} gets {@code
       *     errorMessageArgs[0]}, etc. Unmatched arguments will be appended to the formatted message in
       *     square braces. Unmatched placeholders will be left as-is.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

            dep.scope == MavenScope.Compile
            hasDefaultDependencyArtifact(dep)
        }
    
        def "uses properties from parent pom to replace variable placeholders in pom"() {
            given:
            def parent = tmpDir.file("parent.xlm") << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>group-one</groupId>
        <artifactId>artifact-one</artifactId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.h

    //          operations in `fn_body` will become part of the function
    //          except operations referenced in `inputs`. These operations
    //          must have a single output (these operations are typically
    //          placeholders created for the sole purpose of representing
    //          an input. We can relax this constraint if there are
    //          compelling use cases).
    //          - If an array is given (`num_opers` >= 0), all operations
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    [[sec:filtering_files]]
    == Filtering file content
    
    Filtering file content in Gradle involves replacing placeholders or tokens in files with dynamic values.
    
    === Using `CopySpec.filter()`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_function_test.cc

       *                 v   v
       */
      // Define
      TF_Operation* feed1 = Placeholder(func_graph_, s_, "feed1");
      TF_Operation* feed2 = Placeholder(func_graph_, s_, "feed2");
      Define(-1, {}, {feed1, feed2}, {feed2, feed1}, {});
    
      // Use, run, and verify
      TF_Operation* two = ScalarConst(2, host_graph_, s_);
      TF_Operation* func_feed = Placeholder(host_graph_, s_);
      TF_Operation* func_op = Use({two, func_feed});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

    TEST(XlaCompilationTest, DontClusterNodesWithMismatchingDeadness) {
      Scope root = Scope::NewRootScope().ExitOnError();
    
      Output cond_a = ops::Placeholder(root.WithOpName("cond_a"), DT_BOOL);
      Output cond_b = ops::Placeholder(root.WithOpName("cond_b"), DT_BOOL);
    
      Output value = ops::Placeholder(root.WithOpName("value"), DT_FLOAT);
    
      ops::Switch switch_a(root.WithOpName("switch_a"), value, cond_a);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/deadness_analysis_test.cc

    }
    
    TEST(DeadnessAnalysisTest, Ternary) {
      Scope root = Scope::NewRootScope().ExitOnError();
    
      Output predicate = ops::Placeholder(root.WithOpName("predicate"), DT_BOOL);
      Output true_value = ops::Placeholder(root.WithOpName("true_value"), DT_FLOAT);
      Output false_value =
          ops::Placeholder(root.WithOpName("false_value"), DT_FLOAT);
    
      ops::Switch predicated_true(root.WithOpName("predicated_true"), true_value,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

            conv operation a `tf.Variable`.
    
        Returns:
          in_placeholder: Input tensor placeholder.
          output_tensor: The resulting tensor of the convolution operation.
        """
        in_placeholder = array_ops.placeholder(dtypes.float32, shape=input_shape)
    
        filters = random_ops.random_uniform(
            shape=filter_shape, minval=-1.0, maxval=1.0
        )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  10. tensorflow/c/c_api_test.cc

      TF_Status* s = TF_NewStatus();
      TF_Graph* graph = TF_NewGraph();
    
      // Make a placeholder operation.
      TF_Operation* feed = Placeholder(graph, s);
      ASSERT_EQ(TF_OK, TF_GetCode(s)) << TF_Message(s);
    
      // Test TF_Operation*() query functions.
      EXPECT_EQ(string("feed"), string(TF_OperationName(feed)));
      EXPECT_EQ(string("Placeholder"), string(TF_OperationOpType(feed)));
      EXPECT_EQ(string(""), string(TF_OperationDevice(feed)));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
Back to top