Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,605 for onOutput (0.13 sec)

  1. src/cmd/asm/internal/asm/endtoend_test.go

    		for len(output) > 0 && (output[0] < want || output[0] != want && len(output[0]) >= 5 && output[0][:5] == want[:5]) {
    			if len(output[0]) >= 5 && output[0][:5] == want[:5] {
    				t.Errorf("mismatched output:\nhave %s\nwant %s", output[0], want)
    				output = output[1:]
    				continue Diff
    			}
    			t.Errorf("unexpected output: %q", output[0])
    			output = output[1:]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 18:42:59 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_cluster_util_test.cc

      Scope root = Scope::NewRootScope().ExitOnError();
    
      Output a = ops::Const(root.WithOpName("a"), Input::Initializer(0.0));
      Output enter_0 =
          ops::internal::Enter(root.WithOpName("enter_0"), a, "frame_0");
      Output exit_0 = ops::internal::Exit(root.WithOpName("exit_0"), enter_0);
      Output enter_1 =
          ops::internal::Enter(root.WithOpName("enter_1"), a, "frame_1");
      Output exit_1 = ops::internal::Exit(root.WithOpName("exit_1"), enter_1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. src/internal/coverage/cfile/emitdata_test.go

    		t.Fatalf("'go tool covdata failed (%v): %s", err, b)
    	}
    	output := string(b)
    	rval := ""
    	for _, f := range want {
    		wf := "Func: " + f + "\n"
    		if strings.Contains(output, wf) {
    			continue
    		}
    		rval += fmt.Sprintf("error: output should contain %q but does not\n", wf)
    	}
    	for _, f := range avoid {
    		wf := "Func: " + f + "\n"
    		if strings.Contains(output, wf) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

            "empty directory"         | { TestFile output -> output.createDir() }
            "directory with contents" | { TestFile output ->
                output.create {
                    file("first-file").text = "leftover file"
                    file("second-file").text = "leftover file"
                }
            }
            'file'                    | { TestFile output -> output.text = 'leftover file' }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            then:
            output.count("NOT CI") == 1
            configurationCache.assertStateStored()
    
            when:
            configurationCacheRun "run"
    
            then:
            output.count("NOT CI") == 1
            configurationCache.assertStateLoaded()
    
            when:
            configurationCacheRun "run", "-Dci=true"
    
            then:
            output.count("ON CI") == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildExceptionReporterTest.groovy

                    context.appendResolution { output -> output.append("resolution 1.")}
                    context.appendResolution { output -> output.append("resolution 2.")}
                }
            }
    
            expect:
            reporter.buildFinished(result(exception))
            output.value == """
    {failure}FAILURE: {normal}{failure}Build failed with an exception.{normal}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/partially_decluster_pass_test.cc

    namespace {
    REGISTER_OP("FakeNullary").Output("out: int32");
    
    REGISTER_OP("FakeBinary")
        .Input("host_in: int32")
        .Input("device_in: int32")
        .Output("host_out: int32")
        .Output("device_out: int32");
    
    REGISTER_OP("FakeResourceVar").Output("out: resource");
    
    REGISTER_OP("FakeResourceUpdate")
        .Input("in: resource")
        .Output("out: resource")
        .Output("something_else: int32");
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 23K bytes
    - Viewed (0)
  8. tests/integration/pilot/istioctl_test.go

    					var output string
    					args := []string{"remote-clusters"}
    					output, _ = istioCtl.InvokeOrFail(t, args)
    					for _, otherName := range t.Clusters().Exclude(cluster).Names() {
    						if !strings.Contains(output, otherName) {
    							t.Fatalf("remote-clusters output did not contain %s; got:\n%s", otherName, output)
    						}
    					}
    				})
    			}
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top