Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,129 for onOutput (0.13 sec)

  1. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/kryo/KryoBackedEncoder.java

        private final Output output;
        private KryoBackedEncoder nested;
    
        public KryoBackedEncoder(OutputStream outputStream) {
            this(outputStream, 4096);
        }
    
        public KryoBackedEncoder(OutputStream outputStream, int bufferSize) {
            output = new Output(outputStream, bufferSize);
        }
    
        @Override
        public void writeByte(byte value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginConfigurationCachingIntegrationTest.groovy

            then:
            // TODO plugin.notApplied(output)
            plugin.appliedOnce(output)
    
            plugin.assertBuildScanRequest(output, REQUESTED)
    
            when:
            succeeds "t", "--configuration-cache", "--no-scan"
    
            then:
            // TODO plugin.notApplied(output)
            plugin.appliedOnce(output)
            plugin.assertBuildScanRequest(output, SUPPRESSED)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 10:49:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/deadness_analysis_test.cc

      Output live0 = ops::Add(root.WithOpName("live0"), m0.output, m1.output);
      Output live1 = ops::Add(root.WithOpName("live1"), m2.output, m3.output);
    
      Output halfdead0 =
          ops::Add(root.WithOpName("halfdead0"), m0.output, m2.output);
      Output halfdead1 =
          ops::Add(root.WithOpName("halfdead1"), m1.output, m3.output);
    
      std::unique_ptr<DeadnessAnalysis> result;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildExceptionReporter.java

                output.println();
                output.withStyle(Failure).format("%s: ", i + 1);
                details.summary.writeTo(output.withStyle(Failure));
                output.println();
                output.text("-----------");
    
                writeFailureDetails(output, details);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  5. src/cmd/test2json/main.go

    //
    // The Output field is set for Action == "output" and is a portion of the test's output
    // (standard output and standard error merged together). The output is
    // unmodified except that invalid UTF-8 output from a test is coerced
    // into valid UTF-8 by use of replacement characters. With that one exception,
    // the concatenation of the Output fields of all output events is the exact
    // output of the test execution.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. .github/workflows/check-bad-merge.yml

            run: |
              groovy .github/workflows/CheckBadMerge.groovy $(<pr_commits.txt) > output.txt 2>&1
          - name: Read output file
            id: read_output
            if: ${{ always() }}
            run: |
              cat output.txt
              OUTPUT=$(cat output.txt)
              echo "OUTPUT<<EOF" >> $GITHUB_ENV
              echo "$OUTPUT" >> $GITHUB_ENV
              echo "EOF" >> $GITHUB_ENV
          - name: Comment on PR if check failed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/console/AbstractExecOutputIntegrationTest.groovy

            succeeds("run")
    
            then:
            def output = result.groupedOutput.task(':run').output
            output.contains(EXPECTED_OUTPUT)
            def errorOutput = errorsShouldAppearOnStdout() ? output : result.getError()
            errorOutput.contains(EXPECTED_ERROR)
        }
    
        def "JavaExec task output is grouped with its task output"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. tensorflow/cc/ops/while_loop.cc

            "BuildWhileLoop: 'body' argument expected to return ", num_loop_vars,
            " output(s), got ", outputs->size());
      }
      for (const Output& output : *outputs) {
        TF_RETURN_IF_ERROR(
            scope.graph()->IsValidOutputTensor(output.node(), output.index()));
        // TODO(skyewm): check output types/shapes
      }
      return absl::OkStatus();
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 01:01:21 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. src/slices/example_test.go

    	})
    	fmt.Println("Bob:", n, found)
    	// Output:
    	// Bob: 1 true
    }
    
    func ExampleCompact() {
    	seq := []int{0, 1, 1, 2, 3, 5, 8}
    	seq = slices.Compact(seq)
    	fmt.Println(seq)
    	// Output:
    	// [0 1 2 3 5 8]
    }
    
    func ExampleCompactFunc() {
    	names := []string{"bob", "Bob", "alice", "Vera", "VERA"}
    	names = slices.CompactFunc(names, strings.EqualFold)
    	fmt.Println(names)
    	// Output:
    	// [bob alice Vera]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:28:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItem.java

        private final String input;
    
        private final String output;
    
        private String newInput;
    
        private String newOutput;
    
        public StemmerOverrideItem(final long id, final String input, final String output) {
            this.id = id;
            this.input = input;
            this.output = output;
    
            if (id == 0) {
                // create
                newInput = input;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top