Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 128 for printuint (0.14 sec)

  1. cmd/kube-apiserver/app/server.go

    others. The API Server services REST operations and provides the frontend to the
    cluster's shared state through which all other components interact.`,
    
    		// stop printing usage when the command errors
    		SilenceUsage: true,
    		PersistentPreRunE: func(*cobra.Command, []string) error {
    			// silence client-go warnings.
    			// kube-apiserver loopback clients should not log self-issued warnings.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    //     that contain a “match marker”. [Marker] returns the match marker for a given ID.
    //     When bisect reports a change as causing the failure, it identifies the change
    //     by printing those report lines, with the match marker removed.
    //
    // # Example Usage
    //
    // A program starts by defining how it receives the pattern. In this example, we will assume a flag.
    // The next step is to compile the pattern:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    // reprints the cached standard output and standard error associated with that
    // command invocation. (This makes commands like 'go build -gcflags=-S' for
    // printing an assembly listing work reliably.)
    //
    // Unfortunately, most build systems, including Bazel, are not as careful
    // as the go command about reprinting compiler output. If the compiler is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/ChecksumAndSignatureVerificationOverride.java

                    if (verificationMode == DependencyVerificationMode.LENIENT) {
                        LOGGER.error(errorMessage);
                        // Clear failures to avoid printing this error multiple times.
                        failures.clear();
                        hasFatalFailure = false;
                    } else {
                        throw new DependencyVerificationException(errorMessage);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:12:15 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener.java

                    break;
                default:
                    break;
            }
    
            problemReporter.reporting(spec -> buildProblem(diagnostic, spec));
        }
    
        /**
         * This method is responsible for printing the number of errors and warnings after writing the diagnostics out to the console.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 06:17:43 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/script/cmds.go

    			Args:    matchUsage + " file",
    			Detail: []string{
    				"The command succeeds if at least one match (or the exact count, if given) is found.",
    				"The -q flag suppresses printing of matches.",
    			},
    			RegexpArgs: firstNonFlag,
    		},
    		func(s *State, args ...string) (WaitFunc, error) {
    			return nil, match(s, args, "", "grep")
    		})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops.mlir

        tf_executor.fetch %value : tensor<*xf32>
      }
      func.return %result : tensor<*xf32>
    }
    
    // Verify that long form printing is used when operand types do not match the
    // result type and then it can be parsed again correctly.
    // CHECK-LABEL: func @merge_different_operand_types
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 25.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/shell.go

    	mkdirCache par.Cache[string, error] // a cache of created directories
    }
    
    // NewShell returns a new Shell.
    //
    // Shell will internally serialize calls to the print function.
    // If print is nil, it defaults to printing to stderr.
    func NewShell(workDir string, print func(a ...any) (int, error)) *Shell {
    	if print == nil {
    		print = func(a ...any) (int, error) {
    			return fmt.Fprint(os.Stderr, a...)
    		}
    	}
    	shared := &shellShared{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. src/testing/testing_test.go

    	// status.
    	//
    	// This is a somewhat fundamental race: because the race detector hooks into
    	// the runtime at a very low level, no matter where we put the printing it
    	// would be possible to report a race that occurs afterward. However, we could
    	// theoretically move the printing after TestMain, which would at least do a
    	// better job of diagnosing races in cleanup functions within TestMain itself.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  10. src/go/printer/printer_test.go

    	}
    }
    
    // testComment verifies that f can be parsed again after printing it
    // with its first comment set to comment at any possible source offset.
    func testComment(t *testing.T, f *ast.File, srclen int, comment *ast.Comment) {
    	f.Comments[0].List[0] = comment
    	var buf bytes.Buffer
    	for offs := 0; offs <= srclen; offs++ {
    		buf.Reset()
    		// Printing f should result in a correct program no
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top