Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,605 for onOutput (0.18 sec)

  1. src/path/filepath/path_windows_test.go

    }
    
    func testWalkMklink(t *testing.T, linktype string) {
    	output, _ := exec.Command("cmd", "/c", "mklink", "/?").Output()
    	if !strings.Contains(string(output), fmt.Sprintf(" /%s ", linktype)) {
    		t.Skipf(`skipping test; mklink does not supports /%s parameter`, linktype)
    	}
    	testWalkSymlink(t, func(target, link string) error {
    		output, err := exec.Command("cmd", "/c", "mklink", "/"+linktype, link, target).CombinedOutput()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 20:38:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/DisambiguateArtifactTransformIntegrationTest.groovy

    }
    
    ${artifactTransform("FileSizer")}
    """
    
            when:
            run "resolve"
    
            then:
            output.count("Transforming") == 3
            output.count("Transforming main to main.txt") == 1
            output.count("Transforming test-1.3.jar to test-1.3.jar.txt") == 1
            output.count("Transforming test-1.3.jar.txt to test-1.3.jar.txt.txt") == 1
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  3. pkg/log/scope.go

    // threshold and stack traces.
    //
    // Scope supports structured logging using WithLabels:
    //
    //	s := RegisterScope("MyScope", "Description", 0)
    //	s = s.WithLabels("foo", "bar", "baz", 123, "qux", 0.123)
    //	s.Info("Hello")                      // <time>   info   MyScope   Hello  foo=bar baz=123 qux=0.123
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 16:47:01 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/util/patches/patches.go

    	// Get the files in the path.
    	patchSets, patchFiles, ignoredFiles, err := getPatchSetsFromPath(path, knownTargets, output)
    	if err != nil {
    		return nil, err
    	}
    
    	if len(patchFiles) > 0 {
    		fmt.Fprintf(output, "[patches] Found the following patch files: %v\n", patchFiles)
    	}
    	if len(ignoredFiles) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/plugins/TestSuiteModelIntegrationSpec.groovy

            """
        }
    
        def "test suite sources and binaries containers are visible in model report"() {
            when:
            run "model"
    
            then:
            ModelReportOutput.from(output).hasNodeStructure {
                testSuites {
                    main {
                        binaries()
                        sources()
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskBridgingIntegrationTest.groovy

                }
    
                apply type: MyPlugin
            '''
    
            when:
            run()
    
            then:
            output.contains "as map: ModelMap<Task> 'tasks'"
            output.contains("as container:")
            output.contains "as model element: ModelMap<Task> 'tasks'"
            output.contains "name: tasks"
        }
    
        def "can view tasks as various view types"() {
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 12:57:53 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/UntrackedTaskIntegrationTest.groovy

            def untrackedStaleFile = file("build/untracked/stale-output-file").createFile()
            def untrackedOutputFile = file("build/untracked/output.txt")
            def trackedStaleFile = file("build/tracked/stale-output-file").createFile()
            def trackedOutputFile = file("build/tracked/output.txt")
    
            buildFile("""
                apply plugin: 'base'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 23 08:05:53 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleSupportedTypesIntegrationTest.groovy

            """
            def expected = output instanceof Closure ? output.call(testDirectory) : output
    
            when:
            succeeds 'help'
    
            then:
            outputContains("this.value = ${expected}")
            outputContains("bean.value = ${expected}")
    
            where:
            type                                 | reference                                 | output
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 17:40:52 UTC 2024
    - 14K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_patterns.cc

      if (!mlir::isa<NoneType>(bias.getType())) return failure();
    
      // Proceed to create a zero bias.
      auto output = op->getResult(0);
      auto output_type = mlir::dyn_cast_or_null<RankedTensorType>(output.getType());
      if (!output_type) return failure();
    
      // bias should be a vector sized of the last output dim.
      int64_t num_units = output_type.getDimSize(output_type.getRank() - 1);
      auto bias_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_device_ops.h

      REGISTER_KERNEL_BUILDER(Name("Shape")                                        \
                                  .Device(DEVICE)                                  \
                                  .HostMemory("output")                            \
                                  .TypeConstraint<int32>("out_type")               \
                                  .TypeConstraint("T", TYPES),                     \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 23 19:28:25 UTC 2021
    - 17.1K bytes
    - Viewed (0)
Back to top