Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for PetOut (0.09 sec)

  1. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/redirector/DefaultStandardOutputRedirector.java

                originalStdOut = System.out;
                System.setOut(redirectedStdOut);
            }
            if (stdErr.destination != null) {
                originalStdErr = System.err;
                System.setErr(redirectedStdErr);
            }
        }
    
        @Override
        public void stop() {
            try {
                if (originalStdOut != null) {
                    System.setOut(originalStdOut);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/passes/decompose.cc

              new_results.push_back(element_op.getOut());
            }
          }
        }
        for (auto res : llvm::zip(op->getResults(), new_results)) {
          auto casted = builder.create<CastOp>(
              op->getLoc(), std::get<0>(res).getType(), std::get<1>(res));
          std::get<0>(res).replaceAllUsesWith(casted.getOut());
        }
    
        // Copy all the unregisted attributes to the new op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. istioctl/pkg/proxyconfig/proxyconfig_test.go

    			})), c)
    		})
    	}
    }
    
    func verifyExecTestOutput(t *testing.T, cmd *cobra.Command, c execTestCase) {
    	t.Helper()
    
    	var out bytes.Buffer
    	cmd.SetArgs(c.args)
    	cmd.SilenceUsage = true
    	cmd.SetOut(&out)
    	cmd.SetErr(&out)
    
    	fErr := cmd.Execute()
    	output := out.String()
    
    	if c.expectedOutput != "" && c.expectedOutput != output {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 21:51:29 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/passes/raise_to_tf.cc

            auto casted =
                rewriter.create<CastOp>(loc, unconstrainted_type, new_res);
            tensor_list.push_back(casted.getOut());
          }
          auto list_op = rewriter.create<BuildListOp>(loc, res_type, tensor_list);
          new_results.push_back(list_op.getOut());
        }
      }
    
      // Copy all the allowed attributes to the new op.
      if (failed(CopyNonSymbolRefAttrs(call_op, new_op))) return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. istioctl/pkg/ztunnelconfig/ztunnelconfig_test.go

    			})), c)
    		})
    	}
    }
    
    func verifyExecTestOutput(t *testing.T, cmd *cobra.Command, c execTestCase) {
    	t.Helper()
    
    	var out bytes.Buffer
    	cmd.SetArgs(c.args)
    	cmd.SilenceUsage = true
    	cmd.SetOut(&out)
    	cmd.SetErr(&out)
    
    	fErr := cmd.Execute()
    	output := out.String()
    
    	if c.expectedOutput != "" && c.expectedOutput != output {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 21:51:29 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

            daemonLog.setExecutable(false);
        }
    
        private void redirectOutputsAndInput(PrintStream printStream) {
            this.originalOut = System.out;
            this.originalErr = System.err;
    
            System.setOut(printStream);
            System.setErr(printStream);
            System.setIn(new ByteArrayInputStream(new byte[0]));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

        return try {
            val previousOut = System.out
            val previousErr = System.err
            try {
                System.setOut(outCapture)
                System.setErr(errCapture)
                block()
            } finally {
                System.out.flush()
                System.setOut(previousOut)
                outCapture.stop()
                System.err.flush()
                System.setErr(previousErr)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    	fmt.Fprintf(h, "vetflags %q\n", vetFlags)
    
    	fmt.Fprintf(h, "pkg %q\n", a.Deps[0].actionID)
    	for _, a1 := range a.Deps {
    		if a1.Mode == "vet" && a1.built != "" {
    			fmt.Fprintf(h, "vetout %q %s\n", a1.Package.ImportPath, b.fileHash(a1.built))
    			vcfg.PackageVetx[a1.Package.ImportPath] = a1.built
    		}
    	}
    	key := cache.ActionID(h.Sum())
    
    	if vcfg.VetxOnly && !cfg.BuildA {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top