Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for inputs_0 (0.42 sec)

  1. guava/src/com/google/common/collect/Iterators.java

      @SafeVarargs
      public static <T extends @Nullable Object> Iterator<T> concat(Iterator<? extends T>... inputs) {
        return concatNoDefensiveCopy(Arrays.copyOf(inputs, inputs.length));
      }
    
      /**
       * Combines multiple iterators into a single iterator. The returned iterator iterates across the
       * elements of each iterator in {@code inputs}. The input iterators are not polled until
       * necessary.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api_test.cc

      TFE_Op* concatOp = TFE_NewOp(ctx, "Concat", status);
      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TFE_TensorHandle* inputs[] = {input1, input2};
      TFE_OpAddInput(concatOp, dim, status);
      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      TFE_OpAddInputList(concatOp, inputs, 2, status);
      CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 20:50:20 UTC 2023
    - 94.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

                                ConversionPatternRewriter *rewriter) const {
        auto guard = OpBuilder::InsertionGuard(*rewriter);
        auto inputs = branch_func.getFunctionType().getInputs();
        Block *block = rewriter->createBlock(
            &branch_func.getBody(), branch_func.begin(), inputs,
            SmallVector<Location>(inputs.size(), branch_func.getLoc()));
    
        auto input_shape = block->getArgument(1);
        auto size_diff = block->getArgument(2);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            then: // no changes, should be up-to-date
            assertTransformationsExecuted()
    
            when:
            run ":app:resolveGreen"
    
            then: // have seen these inputs before
            assertTransformationsExecuted()
        }
    
        def "transform with changed project file dependencies content or path are re-executed"() {
            given:
            setupBuildWithSingleStep()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/test/test.go

    		// content ID. The attempt using the action ID makes sure that
    		// if the link inputs don't change, we reuse the cached test
    		// result without even rerunning the linker. The attempt using
    		// the link output (test binary) content ID makes sure that if
    		// we have different link inputs but the same final binary,
    		// we still reuse the cached test result.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

          return failure();
        }
    
        // TensorFlow convolution op only has two inputs, while the TFLite one has
        // three, with the bias vector marked as optional. However, TOCO has a
        // dedicated pass, EnsureBiasVectors, to create default bias vectors for all
        // those missing. So we model TFLite convolution op as requiring three
        // inputs to achieve the legalization task of EnsureBiasVector. this
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_4.adoc

    These methods are now final to avoid subclasses overriding these methods and using state that is not initialized.
    
    ==== Inputs and outputs are not automatically registered
    The Property instances that are returned by these methods are no longer automatically registered as inputs or outputs of the task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    You have to define the task inputs and outputs manually.
    
    2. Using a task as a copy source, i.e., as an argument to `from()`, won't create an automatic task dependency between your task and that copy source.
    As such, if you use the `copy()` method as part of a task action, you must explicitly declare all inputs and outputs to get the correct behavior.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformInputArtifactIntegrationTest.groovy

            result.assertTasksNotSkipped(":b:producer", ":a:resolve")
            if (incremental || sensitivity == null || sensitivity == PathSensitivity.ABSOLUTE) {
                transformed("b-blue")
            } else {
                // Inputs have been normlaized and results are up-to-date
                transformed()
            }
    
            when:
            withProjectConfig("b") {
                projectBuildDir = "out"
                outputFileName = "new"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 27 19:15:32 UTC 2023
    - 51.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Multimaps.java

       *
       * <p>It's acceptable for the underlying multimap to contain null keys and null values provided
       * that the transformer is capable of accepting null inputs. The transformed multimap might
       * contain null values if the transformer sometimes gives a null result.
       *
       * <p>The returned multimap is not thread-safe or serializable, even if the underlying 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)
Back to top