Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 309 for printuint (0.22 sec)

  1. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    			// is different.
    			c++
    			if c > 1 {
    				return
    			}
    		}
    	}
    	ps.printing = append(ps.printing, a)
    
    	a.print(ps)
    
    	ps.printing = ps.printing[:len(ps.printing)-1]
    }
    
    // printList prints a list of AST values separated by commas,
    // optionally skipping some.
    func (ps *printState) printList(args []AST, skip func(AST) bool) {
    	first := true
    	for _, a := range args {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/name_flags.go

    	return nil
    }
    
    // AllowedFormats returns slice of string of allowed Name printing format
    func (f *NamePrintFlags) AllowedFormats() []string {
    	if f == nil {
    		return []string{}
    	}
    	return []string{"name"}
    }
    
    // ToPrinter receives an outputFormat and returns a printer capable of
    // handling --output=name printing.
    // Returns false if the specified outputFormat does not match a supported format.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 05 12:19:00 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  5. 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)
  6. 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. 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)
  8. test/simassign.go

    // Test simultaneous assignment.
    
    package main
    
    var a, b, c, d, e, f, g, h, i int
    
    func printit() {
    	println(a, b, c, d, e, f, g, h, i)
    }
    
    func testit(permuteok bool) bool {
    	if a+b+c+d+e+f+g+h+i != 45 {
    		print("sum does not add to 45\n")
    		printit()
    		return false
    	}
    	return permuteok ||
    		a == 1 &&
    			b == 2 &&
    			c == 3 &&
    			d == 4 &&
    			e == 5 &&
    			f == 6 &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:48:19 UTC 2012
    - 1.1K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/kube_template_flags.go

    func (f *KubeTemplatePrintFlags) AllowedFormats() []string {
    	if f == nil {
    		return []string{}
    	}
    	return append(f.GoTemplatePrintFlags.AllowedFormats(), f.JSONPathPrintFlags.AllowedFormats()...)
    }
    
    // ToPrinter receives an outputFormat and returns a printer capable of
    // handling --template printing.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 13 10:28:09 UTC 2021
    - 3.3K bytes
    - Viewed (0)
Back to top