Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 269 for printuint (0.21 sec)

  1. cmd/kubeadm/app/util/output/output.go

    	// JSONYamlPrintFlags provides default flags necessary for json/yaml printing.
    	JSONYamlPrintFlags *genericclioptions.JSONYamlPrintFlags
    	// KubeTemplatePrintFlags composes print flags that provide both a JSONPath and a go-template printer.
    	KubeTemplatePrintFlags *genericclioptions.KubeTemplatePrintFlags
    	// TextPrintFlags provides default flags necessary for kubeadm text printing.
    	TextPrintFlags TextPrintFlags
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 08:22:45 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/template_flags.go

    	"go-template":      true,
    	"go-template-file": true,
    	"templatefile":     true,
    }
    
    // GoTemplatePrintFlags provides default flags necessary for template printing.
    // Given the following flag values, a printer can be requested that knows
    // how to handle printing based on these values.
    type GoTemplatePrintFlags struct {
    	// indicates if it is OK to ignore missing keys for rendering
    	// an output template.
    	AllowMissingKeys *bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/jsonpath_flags.go

    	"jsonpath":         true,
    	"jsonpath-file":    true,
    	"jsonpath-as-json": true,
    }
    
    // JSONPathPrintFlags provides default flags necessary for template printing.
    // Given the following flag values, a printer can be requested that knows
    // how to handle printing based on these values.
    type JSONPathPrintFlags struct {
    	// indicates if it is OK to ignore missing keys for rendering
    	// an output template.
    	AllowMissingKeys *bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 09:47:52 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/Ascii.java

      /**
       * Line Feed ('\n'): A format effector which controls the movement of the printing position to the
       * next printing line. (Applicable also to display devices.) Where appropriate, this character may
       * have the meaning "New Line" (NL), a format effector which controls the movement of the printing
       * point to the first printing position on the next printing line. Use of this convention requires
       * agreement between sender and recipient of data.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/printers/tableprinter_test.go

    		if test.expected != out.String() {
    			t.Errorf("Table printing error: expected (%s), got (%s)", test.expected, out.String())
    		}
    	}
    }
    
    func TestPrintTable_NonTable(t *testing.T) {
    	tests := []struct {
    		object   runtime.Object
    		options  PrintOptions
    		expected string
    	}{
    		// Test non-table default printing for a pod.
    		{
    			object:   testPod,
    			options:  PrintOptions{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Oct 30 15:08:43 UTC 2022
    - 24.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Ascii.java

      /**
       * Line Feed ('\n'): A format effector which controls the movement of the printing position to the
       * next printing line. (Applicable also to display devices.) Where appropriate, this character may
       * have the meaning "New Line" (NL), a format effector which controls the movement of the printing
       * point to the first printing position on the next printing line. Use of this convention requires
       * agreement between sender and recipient of data.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskServiceInjectionIntegrationTest.groovy

                    @Inject
                    CustomTask(WorkerExecutor executor) {
                        this.executor = executor
                    }
    
                    @TaskAction
                    void printIt() {
                        println(executor != null ? "got it" : "NOT IT")
                    }
                }
    
                task myTask(type: CustomTask)
            """
    
            when:
            run 'myTask'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 7.9K bytes
    - Viewed (0)
  8. src/testing/iotest/logger.go

    	} else {
    		log.Printf("%s %x", l.prefix, p[0:n])
    	}
    	return
    }
    
    // NewWriteLogger returns a writer that behaves like w except
    // that it logs (using [log.Printf]) each write to standard error,
    // printing the prefix and the hexadecimal data written.
    func NewWriteLogger(prefix string, w io.Writer) io.Writer {
    	return &writeLogger{prefix, w}
    }
    
    type readLogger struct {
    	prefix string
    	r      io.Reader
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/cmd/fix/main_test.go

    	file, err := parser.ParseFile(fset, desc, in, parserMode)
    	if err != nil {
    		t.Errorf("parsing: %v", err)
    		return
    	}
    
    	outb, err := gofmtFile(file)
    	if err != nil {
    		t.Errorf("printing: %v", err)
    		return
    	}
    	if s := string(outb); in != s && mustBeGofmt {
    		t.Errorf("not gofmt-formatted.\n--- %s\n%s\n--- %s | gofmt\n%s",
    			desc, in, desc, s)
    		tdiff(t, "want", in, "have", s)
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 05:31:47 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/print_flags.go

    	"github.com/spf13/cobra"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/cli-runtime/pkg/printers"
    )
    
    // NoCompatiblePrinterError is a struct that contains error information.
    // It will be constructed when a invalid printing format is provided
    type NoCompatiblePrinterError struct {
    	OutputFormat   *string
    	AllowedFormats []string
    	Options        interface{}
    }
    
    func (e NoCompatiblePrinterError) Error() string {
    	output := ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 04 00:16:47 UTC 2022
    - 5.6K bytes
    - Viewed (0)
Back to top