Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 957 for output0 (0.16 sec)

  1. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

            // TODO - should just write this as a bean field of the outputs object, and also do this for the registered properties above
            if (task.outputs.upToDateSpec.isEmpty) {
                writeBoolean(false)
            } else {
                writeBoolean(true)
                write(task.outputs.upToDateSpec)
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStepTest.groovy

            }
    
            then:
            1 * deleter.deleteRecursively(temporaryWorkspace)
    
            then:
            immutableWorkspace.file("output.txt").text == "output"
            0 * _
        }
    
        def "keeps failed outputs in temporary workspace"() {
            def delegateFailure = Mock(Exception)
            def delegateDuration = Duration.ofSeconds(1)
            def delegateResult = Stub(CachingResult) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 14:32:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskDependencyInferenceIntegrationTest.groovy

            taskTypeWithOutputFileProperty()
            buildFile << """
                def taskA = tasks.create("a", FileProducer) {
                    // no output value
                }
                def taskB = tasks.create("b", FileProducer) {
                    output = file("b.txt")
                }
                tasks.register("c") {
                    dependsOn taskA.output.orElse(taskB.output)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 14:20:49 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	"top":      {report.Text, nil, nil, false, "Outputs top entries in text form", reportHelp("top", true, true)},
    	"traces":   {report.Traces, nil, nil, false, "Outputs all profile samples in text form", ""},
    	"tree":     {report.Tree, nil, nil, false, "Outputs a text rendering of call graph", reportHelp("tree", true, true)},
    
    	// Save binary formats to a file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

              e->dst_input());
        }
      }
    
      auto output = std::make_unique<Graph>((*graph)->op_registry());
      TF_RETURN_WITH_CONTEXT_IF_ERROR(
          EncapsulateSubgraphsInFunctions(
              kXlaClusterIdAttr, **graph, RewriteSubgraph,
              /*reuse_existing_functions=*/true, &output, flib_def),
          "EncapsulateXlaComputationsPass failed");
      graph->swap(output);
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. tensorflow/c/while_loop_test.cc

      params_->body_outputs[1] = params_->body_inputs[1];
    
      // Finalize while loop
      ExpectOK();
    
      // Validate while loop outputs returned by TF_FinishWhile()
      EXPECT_TRUE(outputs_[0].oper != nullptr);
      EXPECT_GE(outputs_[0].index, 0);
      EXPECT_TRUE(outputs_[1].oper != nullptr);
      EXPECT_GE(outputs_[1].index, 0);
    
      // Check that cond and body inputs are not present
      for (int i = 0; i < params_->ninputs; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 06:05:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformExecutionResult.java

            /**
             * Adds an output location to the result.
             *
             * @param workspaceAction an action to run when the output is a produced output in the workspace.
             */
            public void addOutput(File output, Consumer<File> workspaceAction) {
                if (output.equals(inputArtifact)) {
                    delegate.addEntireInputArtifact();
                } else if (output.equals(outputDir)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:31 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

        if (!output_tensor_type) {
          return switchn.emitOpError()
                 << "expects outputs to have tensor type but got " << output_type;
        }
    
        // If the output type is a ref type, then the operand type should also be of
        // the same ref type. However, if the output type is a non-ref type T, then
        // the operand can be tensor of type T or T_REF.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/tests/lift_hashtable_ops_as_args.mlir

    // CHECK: "tf.LookupTableSizeV2"(%arg1)
    // CHECK: "tf.LookupTableFindV2"(%arg1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 15 05:41:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		gpcas       = regInfo{inputs: []regMask{gp | sp | sb, gp, gp}, outputs: []regMask{gp}}
    		fp01        = regInfo{inputs: nil, outputs: []regMask{fp}}
    		fp11        = regInfo{inputs: []regMask{fp}, outputs: []regMask{fp}}
    		fpgp        = regInfo{inputs: []regMask{fp}, outputs: []regMask{gp}}
    		gpfp        = regInfo{inputs: []regMask{gp}, outputs: []regMask{fp}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
Back to top