Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 120 for printuint (0.14 sec)

  1. internal/logger/logger.go

    	FatalKind   = madmin.LogKindFatal
    	WarningKind = madmin.LogKindWarning
    	ErrorKind   = madmin.LogKindError
    	EventKind   = madmin.LogKindEvent
    	InfoKind    = madmin.LogKindInfo
    )
    
    var (
    	// DisableErrorLog avoids printing error/event/info kind of logs
    	DisableErrorLog = false
    	// Output allows configuring custom writer, defaults to os.Stderr
    	Output io.Writer = os.Stderr
    )
    
    var trimStrings []string
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/token.go

    		},
    	}
    
    	options.AddConfigFlag(createCmd.Flags(), &cfgPath)
    	createCmd.Flags().BoolVar(&printJoinCommand,
    		"print-join-command", false, "Instead of printing only the token, print the full 'kubeadm join' flag needed to join the cluster using the token.")
    	createCmd.Flags().StringVar(&certificateKey,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. src/internal/pkgbits/decoder.go

    	writerPCs := make([]int, r.rawUvarint())
    	for i := range writerPCs {
    		writerPCs[i] = int(r.rawUvarint())
    	}
    
    	if mHave == mWant {
    		return
    	}
    
    	// There's some tension here between printing:
    	//
    	// (1) full file paths that tools can recognize (e.g., so emacs
    	//     hyperlinks the "file:line" text for easy navigation), or
    	//
    	// (2) short file paths that are easier for humans to read (e.g., by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 20:58:46 UTC 2022
    - 13.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/printers/tableprinter.go

    // more elegant output. It is not threadsafe, but you may call PrintObj repeatedly; headers
    // will only be printed if the object type changes. This makes it useful for printing items
    // received from watches.
    type HumanReadablePrinter struct {
    	options        PrintOptions
    	lastType       interface{}
    	lastColumns    []metav1.TableColumnDefinition
    	printedHeaders bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 30 15:08:43 UTC 2022
    - 16.7K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

                    outputs.dir(layout.buildDirectory.dir('myDir'))
                    ${actionMethodName}('myAction') { println("printing from action") }
                }
            """
    
            when:
            run ':myTask'
            then:
            executedAndNotSkipped(':myTask')
            outputContains("printing from action")
    
            when:
            buildFile << """
                tasks.register('other')
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ThreadOutputMuxer.java

        private volatile ProjectSegment currentBuild;
    
        private final PrintStream originalSystemOUtStream;
    
        private final ConsolePrinter printer;
    
        /**
         * A simple but safe solution for printing to the console.
         */
        class ConsolePrinter implements Runnable {
            private volatile boolean running;
    
            private final ProjectBuildList projectBuildList;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  7. src/fmt/format.go

    		}
    	} else if f.zero && !f.minus && f.widPresent { // Zero padding is allowed only to the left.
    		prec = f.wid
    		if negative || f.plus || f.space {
    			prec-- // leave room for sign
    		}
    	}
    
    	// Because printing is easier right-to-left: format u into buf, ending at buf[i].
    	// We could make things marginally faster by splitting the 32-bit case out
    	// into a separate block but it's not worth the duplication, so u has 64 bits.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskDefinitionIntegrationTest.groovy

                @Inject
                CustomTask(String message, int number) {
                    this.message = message
                    this.number = number
                }
    
                @TaskAction
                void printIt() {
                    println("\$message \$number")
                }
            }
        """
    
        def "can define tasks using task keyword and identifier"() {
            buildFile << """
                task nothing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 14:43:53 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top