Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,605 for onOutput (0.21 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

    Type 'Writer' property 'output' is not writable because '${location}' is not a directory.
    
    Reason: Expected '${location}' to be a directory but it's a file.
    
    Possible solution: Make sure that the 'output' is configured to a directory.
    
    ${validationMessage("cannot_write_output")}
    """
    
            when:
            render cannotWriteToDir {
                type('Writer').property('output')
                dir(location)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ToolingApiSpec.groovy

                def output = new ByteArrayOutputStream()
                def error = new ByteArrayOutputStream()
                def args = executer.allArgs
                args.remove("--no-daemon")
    
                model = connection.model(type)
                    .forTasks(tasks)
                    .withArguments(args)
                    .setStandardOutput(new TeeOutputStream(output, System.out))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. src/time/example_test.go

    	// Output:
    	// 10h0m0s
    	// 1h10m10s
    	// There are 4210 seconds in 1h10m10s.
    	// There are 1000 nanoseconds in 1µs.
    	// There are 1.00e-06 seconds in 1µs.
    }
    
    func ExampleDuration_Hours() {
    	h, _ := time.ParseDuration("4h30m")
    	fmt.Printf("I've got %.1f hours of work left.", h.Hours())
    	// Output: I've got 4.5 hours of work left.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginSyntheticIntegrationTest.kt

            withFile("external-plugins/src/main/kotlin/applied-output.gradle.kts", outputFrom("applied-output plugin"))
            withFile(
                "external-plugins/src/main/kotlin/applied-output-fails.gradle.kts", """
                ${outputFrom("applied-output-fails plugin")}
                TODO("applied-output-fails plugin application failure")
            """
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 07:16:19 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/version_test.go

    	}
    
    	for _, tc := range cases {
    		t.Run(tc.name, func(t *testing.T) {
    			output, err := validateStableVersion(tc.remoteVersion, tc.clientVersion)
    			if (err != nil) != tc.expectedError {
    				t.Fatalf("expected error: %v, got: %v", tc.expectedError, err != nil)
    			}
    			if output != tc.output {
    				t.Fatalf("expected output: %s, got: %s", tc.output, output)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 03:30:51 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

              (TF_BroadcastToOp $arg, (TF_ConstOp $shape))>;
    def : Pat<(MHLO_BroadcastInDimOp:$output $input, $broadcast_dimensions),
              (TF_BroadcastToOp $input, (ShapeToConst $output)),
              [(IsTFStyleBroadcast $broadcast_dimensions, $output)]>;
    def : Pat<(MHLO_BroadcastInDimOp:$output $input, $broadcast_dimensions),
              (TF_BroadcastToOp
                  (TF_ReshapeOp
                      $input,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. src/regexp/example_test.go

    	// Output:
    	// "food"
    }
    
    func ExampleRegexp_FindAll() {
    	re := regexp.MustCompile(`foo.?`)
    	fmt.Printf("%q\n", re.FindAll([]byte(`seafood fool`), -1))
    
    	// Output:
    	// ["food" "fool"]
    }
    
    func ExampleRegexp_FindAllSubmatch() {
    	re := regexp.MustCompile(`foo(.?)`)
    	fmt.Printf("%q\n", re.FindAllSubmatch([]byte(`seafood fool`), -1))
    
    	// Output:
    	// [["food" "d"] ["fool" "l"]]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:22:53 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  9. tensorflow/cc/gradients/linalg_grad.cc

      // the unbroadcasting.
      tensorflow::Output x = op.input(0);
      tensorflow::Output y = op.input(1);
      if (DataTypeIsComplex(grad.type())) {
        x = Conj(scope, x);
        y = Conj(scope, y);
      }
    
      const auto x_shape = Shape(scope, x);
      const auto y_shape = Shape(scope, y);
      Output grad_x =
          EinsumGradWrt(scope, grad, y, x_shape, x_subs, y_subs, output_subs);
      Output grad_y =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 07 23:11:54 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/build_xla_ops_pass.cc

        s.graph()->RemoveControlEdge(e);
      }
    }
    
    struct XlaClusterInfo {
      std::vector<Output> constant_inputs;
      std::vector<Output> non_constant_inputs;
      std::vector<Output> resource_inputs;
      NameAttrList function;
    };
    
    Output IncomingEdgeAsOutput(const Edge* e) {
      return Output(e->src(), e->src_output());
    }
    
    Status GetXlaClusterInfo(Node* n, XlaClusterInfo* result) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
Back to top