Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 149 for output$1 (0.72 sec)

  1. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractLoggingHooksFunctionalTest.groovy

                System.err.println "before"
    
                def output = new CollectingListener()
                def error = new CollectingListener()
                logging.addStandardOutputListener(output)
                logging.addStandardErrorListener(error)
    
                System.out.println "output 1"
                assert output.toString().readLines() == ["output 1"]
                System.err.println "error 1"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/internal/project/taskfactory/TaskPropertyNamingIntegrationTest.groovy

                    inputs.dir("input-dir")
    
                    outputs.file("output.txt")
                    outputs.files("output-1.txt", "output-2.txt")
                    outputs.dir("output-dir")
                    outputs.dirs("output-dir-1", "output-dir-2")
                }
            """ << printProperties("myTask")
            when:
            run "printProperties"
            then:
            output.contains """
                Input file property '\$1'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 21 19:38:50 UTC 2022
    - 16.8K bytes
    - Viewed (0)
  3. src/text/template/examplefunc_test.go

    	const templateText = `
    Input: {{printf "%q" .}}
    Output 0: {{title .}}
    Output 1: {{title . | printf "%q"}}
    Output 2: {{printf "%q" . | title}}
    `
    
    	// Create a template, add the function map, and parse the text.
    	tmpl, err := template.New("titleTest").Funcs(funcMap).Parse(templateText)
    	if err != nil {
    		log.Fatalf("parsing: %s", err)
    	}
    
    	// Run the template to verify the output.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/array_ops.cc

                    AbstractTensorHandle** output, const char* name,
                    const char* raw_device_name) {
      AbstractOperationPtr op_ptr(ctx->CreateOperation());
      TF_RETURN_IF_ERROR(op_ptr->Reset("Identity", raw_device_name));
      TF_RETURN_IF_ERROR(MaybeSetOpName(op_ptr.get(), name));
      TF_RETURN_IF_ERROR(op_ptr->AddInput(input));
      int num_retvals = 1;
      return op_ptr->Execute(absl::MakeSpan(output, 1), &num_retvals);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 10 19:11:36 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  5. okhttp-hpacktests/README.md

     * Make hpack-test-case update itself from git, and run new tests.
     * Add maven goal to generate stories and a pull request to hpack-test-case
       to have others validate our output.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Dec 15 16:59:53 UTC 2014
    - 578 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_match_only_example.txt

    package p
    
    import "fmt"
    
    var n int
    
    func Example_Z() {
    	n++
    	fmt.Println(n)
    	// Output: 1
    }
    
    func Example_A() {
    	n++
    	fmt.Println(n)
    	// Output: 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 19 20:40:29 UTC 2020
    - 583 bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/endtoend_test.go

    			output = output[1:]
    		} else {
    			t.Errorf("missing output: %q", want)
    		}
    	}
    	for len(output) > 0 {
    		if output[0] == "" {
    			// spurious blank caused by Split on "\n"
    			output = output[1:]
    			continue
    		}
    		t.Errorf("unexpected output: %q", output[0])
    		output = output[1:]
    	}
    
    	// Checked printing.
    	// Now check machine code layout.
    
    	top := pList.Firstpc
    	var text *obj.LSym
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 07 18:42:59 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  8. pkg/test/echo/parse.go

    	if match != nil {
    		out.IP = match[1]
    	}
    
    	out.rawBody = map[string]string{}
    
    	matches := requestHeaderFieldRegex.FindAllStringSubmatch(output, -1)
    	for _, kv := range matches {
    		sl := strings.SplitN(kv[1], ":", 2)
    		if len(sl) != 2 {
    			continue
    		}
    		out.RequestHeaders.Set(sl[0], sl[1])
    	}
    
    	matches = responseHeaderFieldRegex.FindAllStringSubmatch(output, -1)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 23 22:25:46 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/internal/operations/logging/DefaultBuildOperationLoggerTest.groovy

            10 * logger.log(DEBUG, "<operation> failed.")
            5 * logger.log(ERROR, "<output>")
            1 * logger.log(ERROR, "...output for 5 more failed operation(s) continued in $pathToLogStr.")
            1 * logger.log(INFO, "Finished <testTask>, see full log $pathToLogStr.")
    
            logOutput() == """See $pathToLogStr for all output for <testTask>.
    <operation> failed.
    <output>
    <operation> failed.
    <output>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:08 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/ops/nn_ops.cc

      TF_RETURN_IF_ERROR(op_ptr->AddInput(bias));
      TF_RETURN_IF_ERROR(
          op_ptr->SetAttrString("data_format", data_format, strlen(data_format)));
      int num_retvals = 1;
      return op_ptr->Execute(absl::MakeSpan(output, 1), &num_retvals);
    }
    
    // Op: BiasAddGrad()
    // Summary: The backward operation for "BiasAdd" on the "bias" tensor.
    //
    // Description:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 10 19:11:36 UTC 2022
    - 5.9K bytes
    - Viewed (0)