Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,989 for onOutput (0.13 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/integtests/ExecIntegrationTest.groovy

                    classpath(sourceSets.main.output.classesDirs)
                    mainClass = 'org.gradle.TestMain'
                    args projectDir, testFile
                    def output = new ByteArrayOutputStream()
                    standardOutput = output
                    doLast {
                        assert testFile.exists()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/ParallelForkingGradleHandle.java

        @Override
        protected ExecutionResult toExecutionResult(String output, String error) {
            return new ParallelExecutionResult(output, error);
        }
    
        @Override
        protected ExecutionResult toExecutionFailure(String output, String error) {
            return new ParallelExecutionResult(output, error);
        }
    
        /**
         * Need a different output comparator for parallel execution.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/output/v1alpha3/doc.go

    limitations under the License.
    */
    
    // +groupName=output.kubeadm.k8s.io
    // +k8s:deepcopy-gen=package
    // +k8s:conversion-gen=k8s.io/kubernetes/cmd/kubeadm/app/apis/output
    
    // Package v1alpha3 defines the v1alpha3 version of the kubeadm data structures
    // related to structured output
    // The purpose of the kubeadm structured output is to have a well
    // defined versioned output format that other software that uses
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 07:05:29 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/caching/internal/packaging/BuildCacheEntryPackingIntegrationTest.groovy

                    outputs.file("output.txt")
                        .withPropertyName("$NON_ASCII_NAME")
                    outputs.cacheIf { true }
                    doLast {
                        file("output.txt").text = "output"
                    }
                }
            """
    
            when:
            withBuildCache().run("createFile", "-Dfile.encoding=$fileEncoding")
            then:
            output.contains("> Default charset: $fileEncoding")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/src/crossVersionTest/groovy/org/gradle/integtests/wrapper/WrapperPropertiesLoaderCrossVersionTest.groovy

            String output = executer.usingExecutable('gradlew').withTasks('hello').run().output
    
            then:
            output.contains('system_property_available in buildSrc:                 true')
            output.contains('project_property_available in buildSrc:                false')
            output.contains('overridden_by_includedBuild in buildSrc:               null')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      Scope root = Scope::NewRootScope().ExitOnError();
      Output variable = ops::Variable(root.WithOpName("variable"),
                                      PartialTensorShape{}, DT_FLOAT);
      Output read = ops::Identity(root.WithOpName("read"), variable);
      Output neg = ops::Negate(root.WithOpName("negate"), read);
      Output identity = ops::Negate(root.WithOpName("identity"), neg);
      Output add = ops::Add(root.WithOpName("add"), identity, neg);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4LoggingOutputCaptureIntegrationTest.groovy

                assert !junitResult.getTestCaseStandardError("OkTest", "isOk").isPresent()
            }
    
            and: "all output appeared in the console when running tests"
            outputContains("before class output")
            outputContains("test method output")
            result.assertHasErrorOutput("before class error")
            result.assertHasErrorOutput("test method error")
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:05 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_driver.h

    // output side to satisfy the constraint of the next operation.
    struct RequantizeState {
      // Sometimes, we have to "requantize" the quantization result to satisfy all
      // the constraints. The "requantize" can happen either on the input or output
      // of the quantization result.
      enum RequantizePosition {
        NO_REQUANTIZE,
        ON_INPUT,
        ON_OUTPUT
      } pos = NO_REQUANTIZE;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:42:17 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/ops.h

    };
    
    /// Represents a tensor value produced by an Operation.
    class Output {
     public:
      Output() = default;
      explicit Output(Node* n) : op_(n) {}
      Output(Node* n, int32_t index) : op_(n), index_(index) {}
      Output(const Operation& op, int32_t index) : op_(op), index_(index) {}
    
      Operation op() const { return op_; }
      Node* node() const { return op().node(); }
      int32 index() const { return index_; }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. istioctl/pkg/proxystatus/proxystatus_test.go

    	cmd.SetErr(&out)
    
    	fErr := cmd.Execute()
    	output := out.String()
    
    	if c.expectedOutput != "" && c.expectedOutput != output {
    		t.Fatalf("Unexpected output for 'istioctl %s'\n got: %q\nwant: %q", strings.Join(c.args, " "), output, c.expectedOutput)
    	}
    
    	if c.expectedString != "" && !strings.Contains(output, c.expectedString) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top