Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 187 for Tinput (0.12 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_avg_pool_patterns.td

                        (MHLO_CompositeOp:$old_val
                        (variadic $a_input), 
                        ConstantStrAttr<StrAttr, "aten.avg_pool2d.default">, $attrs, $_, $_),
                        (TFL_TransposeOp 
                            (TFL_AveragePool2DOp 
                                /*input*/ (TFL_TransposeOp $a_input,
                                    (Arith_ConstantOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 23:16:05 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecIntegrationTest.groovy

                try {
                    String location = System.getProperty("input.file");
                    BufferedReader reader = new BufferedReader(new FileReader(location));
                    String input = reader.readLine();
                    reader.close();
                    FileWriter out = new FileWriter(args[args.length - 1], false);
                    out.write(input);
                    out.close();
                } catch (IOException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskWiringIntegrationTest.groovy

                    outFile = file("out.txt")
                }
            """
            def input = file("in.txt")
            def output = file("out.txt")
            def configurationCache = newConfigurationCacheFixture()
    
            when:
            input.text = "12"
            configurationCacheRun(":transformer")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/events/IntQuestionPromptEventTest.groovy

            def result = event.convert(input)
            result.response == expected
            result.newPrompt == null
    
            where:
            input  | expected
            ''    | -2
            '-4'    | -4
            '-5'    | -5
        }
    
        def "rejects input that is not an integer"() {
            def event = new IntQuestionPromptEvent(123, "question?", 2, 4)
    
            expect:
            def result = event.convert(input)
            result.response == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow_to_stablehlo/README.md

      signatures to convert. Ignored for MLIR input.
    * `--tags`: Comma-separated list of tags for loading SavedModel. Ignored for
      MLIR input.
    * `--input-arg-shapes`: A string representation of input argument shapes for
      'main' entry-point, separating tensors with ':', dimension with ',', and
      using '?' for unknown sizes. For example, `input-arg-shapes=1,2::1,?`
      expresses argument shapes `[1,2]`, `[]` and `[1,?]`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/time_test.go

    	}
    
    	for _, c := range cases {
    		input := TimeHolder{c.input}
    		result, err := json.Marshal(&input)
    		if err != nil {
    			t.Errorf("Failed to marshal input: '%v': %v", input, err)
    		}
    		if string(result) != c.result {
    			t.Errorf("Failed to marshal input: '%v': expected %+v, got %q", input, c.result, string(result))
    		}
    	}
    }
    
    func TestTimeUnmarshalJSON(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InputTrackingState.kt

    
    /**
     * Maintains the current state of the build configuration input tracking.
     * Input tracking may be disabled for a particular thread to avoid recording inputs that doesn't
     * directly affect the configuration.
     * For example, accessing environment variable inside the `ValueSource` being obtained at
     * the configuration time is not really an input, because the value of the value source itself
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/events/BooleanQuestionPromptEventTest.groovy

        }
    
        def "accepts valid input"() {
            def event = new BooleanQuestionPromptEvent(123, "question?", true)
    
            expect:
            def result = event.convert(input)
            result.response == expected
            result.newPrompt == null
    
            where:
            input      | expected
            'yes'      | true
            'y'        | true
            'Y'        | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/python/flatbuffer_to_mlir.cc

      std::unique_ptr<llvm::MemoryBuffer> input;
      if (input_is_filepath) {
        input = mlir::openInputFile(model_file_or_buffer, &errorMessage);
        if (!input) {
          llvm::errs() << errorMessage << "\n";
          return "";
        }
      } else {
        input = llvm::MemoryBuffer::getMemBuffer(model_file_or_buffer, "flatbuffer",
                                                 false);
        if (!input) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/events/SelectOptionPromptEventTest.groovy

      3: 13
    Enter selection (default: 12) [1..3] """)
        }
    
        def "accepts valid input"() {
            def event = new SelectOptionPromptEvent(123, "question", ["1", "2", "3", "4"], 1)
    
            expect:
            def result = event.convert(input)
            result.response == expected
            result.newPrompt == null
    
            where:
            input | expected
            '1'   | 0
            '4'   | 3
            ' 1 ' | 0
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:05 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top