Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 615 for input0 (0.1 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultExecutionStateChangeDetector.java

                currentImplementation, currentAdditionalImplementations,
                executable);
    
            // Capture non-file input changes
            ChangeContainer inputPropertyChanges = new PropertyChanges(
                lastExecution.getInputProperties().keySet(),
                thisExecution.getInputProperties().keySet(),
                "Input",
                executable);
            ChangeContainer inputPropertyValueChanges = new InputValueChanges(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/ProjectDependencyInstrumentingArtifactTransform.java

        @Override
        public void transform(TransformOutputs outputs) {
            File input = getInput().get().getAsFile();
            doTransform(input, outputs);
            if (getParameters().getAgentSupported().get()) {
                doOutputOriginalArtifact(input, outputs);
            }
        }
    
        @Override
        protected InterceptorTypeRegistryAndFilter provideInterceptorTypeRegistryAndFilter() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 19:11:54 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/cc/constant_fold.cc

    LogicalResult FoldOperation(OpBuilder& builder, Operation* op,
                                SmallVector<Value>& results) {
      SmallVector<ElementsAttr> inputs;
      for (auto operand : op->getOperands()) {
        auto preceding_const_op = operand.getDefiningOp<TF::ConstOp>();
        if (preceding_const_op) {
          inputs.push_back(preceding_const_op.getValue());
          continue;
        }
    
        Operation* preceding_op = operand.getDefiningOp();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. testing/performance/src/templates/workerApiProject/buildSrc/src/main/java/com/example/worker/WorkerTask.java

            }
        }
    
        @OutputDirectory
        public File getOutputDir() {
            return outputDir;
        }
    
        @Input
        public int getOutputSize() {
            return outputSize;
        }
    
        public void setOutputSize(int outputSize) {
            this.outputSize = outputSize;
        }
    
        @Input
        public IsolationMode getIsolationMode() {
            return isolationMode;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.h

      // Tensors: Vector of tensors that back the TensorValue inputs
      // Inputs: Vector of inputs that are backed by tensors.
      mlir::LogicalResult PrepareKernelInputs(
          const llvm::SmallDenseSet<int>& required_consts,
          std::vector<tensorflow::XlaExpression>& expressions,
          std::vector<tensorflow::Tensor>& tensors,
          std::vector<tensorflow::TensorValue>& inputs);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r43/CapturingUserInputCrossVersionSpec.groovy

        }
    
        def "can capture user input if standard input was provided"() {
            when:
            withConnection { ProjectConnection connection ->
                runBuildWithStandardInput(connection)
            }
    
            then:
            output.contains(PROMPT)
            output.contains(answerOutput(true))
        }
    
        def "cannot capture user input if standard input was not provided"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache/src/test/groovy/org/gradle/caching/internal/controller/DefaultBuildCacheControllerPackOperationExecutorTest.groovy

        }
    
        def "after failed unpacking error is propagated and output is not removed"() {
            def input = temporaryFolder.createFile("input")
            def outputFile = temporaryFolder.file("output.txt")
            def entity = this.entity(prop("output", FILE, outputFile))
    
            when:
            packOperationExecutor.unpack(key, entity, input)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/annotations/TestAnnotationHandlingSupport.groovy

            [new ThisIsAThingTypeAnnotationHandler()],
            [
                new SimplePropertyAnnotationHandler(TestNested, INPUT, [ItDepends]),
                new SimplePropertyAnnotationHandler(Long, INPUT, [ItDepends, Tint]),
                new SimplePropertyAnnotationHandler(Short, INPUT, [Tint]),
            ],
            [ItDepends, Tint],
            typeAnnotationMetadataStore,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/ztunnel/configdump/configdump.go

    	zDump.WorkloadState = rawDump.WorkloadState
    	c.ztunnelDump = zDump
    	return nil
    }
    
    func unmarshalListOrMap[T any](input json.RawMessage, i *[]T) error {
    	if len(input) == 0 {
    		return nil
    	}
    	if input[0] == '[' {
    		return json.Unmarshal(input, i)
    	}
    	m := make(map[string]T)
    	if err := json.Unmarshal(input, &m); err != nil {
    		return err
    	}
    	*i = maps.Values(m)
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 20:18:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize_batch_matmul.cc

            return failure();
          }
        }
    
        // Input rhs must be a constant with rank 2.
        if (constant.getType().getRank() != 2) return failure();
    
        // Create a tfl.transpose op that performs ZX transpose on `input`.
        auto create_z_x_transpose_op = [&](Value input) -> Value {
          RankedTensorType input_type =
              mlir::cast<RankedTensorType>(input.getType());
          const int input_rank = input_type.getRank();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.6K bytes
    - Viewed (0)
Back to top