Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 269 for printuint (0.16 sec)

  1. cmd/kubeadm/app/cmd/options/constant.go

    	// SchedulerExtraArgs flag sets extra flags to pass to the Scheduler or override default ones in form of <flagname>=<value>".
    	SchedulerExtraArgs = "scheduler-extra-args"
    
    	// SkipTokenPrint flag instructs kubeadm to skip printing of the default bootstrap token generated by 'kubeadm init'.
    	SkipTokenPrint = "skip-token-print"
    
    	// TokenStr flags sets both the discovery-token and the tls-bootstrap-token when those values are not provided
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 05:14:21 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/debug/debug_options.proto

      // matching against the names of the desired passes. Currently only prints
      // after a pass if the MLIR is mutated.
      optional string print_ir_after = 6 [default = ""];
    
      // If true, always print the top-level operation when printing IR for
      // print_ir_[before|after].
      optional bool print_ir_module_scope = 7 [default = true];
    
      // Elide ElementsAttrs with \"...\" that have more elements than the given
      // upper limit.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. src/runtime/crash_test.go

    		Func string
    	}{
    		{
    			"panic while printing panic value: important multi-line\n\terror message",
    			"ErrorPanic",
    		},
    		{
    			"panic while printing panic value: important multi-line\n\tstringer message",
    			"StringerPanic",
    		},
    		{
    			"panic while printing panic value: type",
    			"DoubleErrorPanic",
    		},
    		{
    			"panic while printing panic value: type",
    			"DoubleStringerPanic",
    		},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  4. internal/config/certsinfo.go

    		}
    		buf.WriteString("\n")
    	}
    	return values
    }
    
    // CertificateText returns a human-readable string representation
    // of the certificate cert. The format is similar to the OpenSSL
    // way of printing certificates (not identical).
    func CertificateText(cert *x509.Certificate) string {
    	var buf strings.Builder
    
    	buf.WriteString(color.Blue("\nCertificate:\n"))
    	if cert.SignatureAlgorithm != x509.UnknownSignatureAlgorithm {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 16 17:28:29 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  5. src/go/doc/comment/print.go

    package comment
    
    import (
    	"bytes"
    	"fmt"
    	"strings"
    )
    
    // A Printer is a doc comment printer.
    // The fields in the struct can be filled in before calling
    // any of the printing methods
    // in order to customize the details of the printing process.
    type Printer struct {
    	// HeadingLevel is the nesting level used for
    	// HTML and Markdown headings.
    	// If HeadingLevel is zero, it defaults to level 3,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump.cc

    void EnableIrPrinting(mlir::PassManager& pm,
                          absl::string_view file_name_prefix) {
      mlir::OpPrintingFlags flag{};
      flag.useLocalScope().elideLargeElementsAttrs().enableDebugInfo();
    
      // IR printing requires multithreading disabled.
      // Even if multithreading is already disabled, if we are executing within a
      // pass-manager,  disableMultithreading throws assertion fail. Below if
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:38:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    			bh = int(inst.Args[2].(Imm))
    		}
    
    		if bo&0x14 == 0x14 {
    			if bo == 0x14 && bi == Cond0LT { // preferred form of unconditional branch
    				// Likewise, avoid printing fake b/ba/bl/bla
    				if opName != "bc" && opName != "bca" && opName != "bcl" && opName != "bcla" {
    					startArg = 2
    				}
    			}
    		} else if bo&0x04 == 0 { // ctr is decremented
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  8. cmd/server-rlimit.go

    	if err != nil {
    		// Could not probe the kernel version
    		return false
    	}
    
    	if currentKernel == 0 {
    		// We could not get any valid value return false
    		return false
    	}
    
    	// legacy linux indicator for printing warnings
    	// about older Linux kernels and Go runtime.
    	return currentKernel < kernel.Version(4, 0, 0)
    }
    
    func setMaxResources(ctx serverCtxt) (err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/text/StyledTable.java

    import java.util.stream.Stream;
    
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.Header;
    import static org.gradle.internal.logging.text.StyledTextOutput.Style.Normal;
    
    /**
     * Simple utility for printing a table.
     */
    public class StyledTable {
        private final String indent;
        private final List<String> headers;
        private final List<Row> rows;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 22 21:03:24 UTC 2022
    - 4K bytes
    - Viewed (0)
  10. tests/integration/pilot/piggyback_test.go

    						output, _, err := istioCtl.Invoke(args.args)
    						if err != nil {
    							return err
    						}
    
    						// Just verify pod A is known to Pilot; implicitly this verifies that
    						// the printing code printed it.
    						if err := expectSubstrings(output, fmt.Sprintf("%s.%s", podName, namespace)); err != nil {
    							return err
    						}
    					}
    					return nil
    				})
    
    				// Test gRPC-based --xds-via-agents
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top