Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 593 for printArg (0.17 sec)

  1. src/fmt/print.go

    		}
    	}
    }
    
    // printValue is similar to printArg but starts with a reflect value, not an interface{} value.
    // It does not handle 'p' and 'T' verbs because these should have been already handled by printArg.
    func (p *pp) printValue(value reflect.Value, verb rune, depth int) {
    	// Handle values with special methods if not already handled by printArg (depth == 0).
    	if depth > 0 && value.IsValid() && value.CanInterface() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:22:43 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  2. src/go/printer/printer.go

    	commentNewline bool              // true if the comment group contains newlines
    }
    
    type printer struct {
    	// Configuration (does not change after initialization)
    	Config
    	fset *token.FileSet
    
    	// Current state
    	output       []byte       // raw printer result
    	indent       int          // current indentation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/json_yaml_flags.go

    	switch outputFormat {
    	case "json":
    		printer = &printers.JSONPrinter{}
    	case "yaml":
    		printer = &printers.YAMLPrinter{}
    	default:
    		return nil, NoCompatiblePrinterError{OutputFormat: &outputFormat, AllowedFormats: f.AllowedFormats()}
    	}
    
    	if !f.ShowManagedFields {
    		printer = &printers.OmitManagedFieldsPrinter{Delegate: printer}
    	}
    	return printer, nil
    }
    
    // AddFlags receives a *cobra.Command reference and binds
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 04 13:00:03 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/printer.go

    // that takes care of accounting and error handling.
    func (p *printer) write(data []byte) {
    	n, err := p.output.Write(data)
    	p.written += n
    	if err != nil {
    		panic(writeError{err})
    	}
    }
    
    var (
    	tabBytes    = []byte("\t\t\t\t\t\t\t\t")
    	newlineByte = []byte("\n")
    	blankByte   = []byte(" ")
    )
    
    func (p *printer) writeBytes(data []byte) {
    	if len(data) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/output/output.go

    type ResourcePrinterWrapper struct {
    	Printer printers.ResourcePrinter
    }
    
    // NewResourcePrinterWrapper creates new ResourcePrinter object
    func NewResourcePrinterWrapper(resourcePrinter printers.ResourcePrinter, err error) (Printer, error) {
    	if err != nil {
    		return nil, err
    	}
    	return &ResourcePrinterWrapper{Printer: resourcePrinter}, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 19 08:22:45 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      //
      // Most likely T is an enum type (either named or unnamed), in which
      // case printing it as an integer is the desired behavior.  In case
      // T is not an enum, printing it as an integer is the best we can do
      // given that it has no user-defined printer.
      static void PrintValue(const T& value, ::std::ostream* os) {
        const internal::BiggestInt kBigInt = value;
        *os << kBigInt;
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

      //
      // Most likely T is an enum type (either named or unnamed), in which
      // case printing it as an integer is the desired behavior.  In case
      // T is not an enum, printing it as an integer is the best we can do
      // given that it has no user-defined printer.
      static void PrintValue(const T& value, ::std::ostream* os) {
        const internal::BiggestInt kBigInt = value;
        *os << kBigInt;
      }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers.go

    func printPodList(podList *api.PodList, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	rows := make([]metav1.TableRow, 0, len(podList.Items))
    	for i := range podList.Items {
    		r, err := printPod(&podList.Items[i], options)
    		if err != nil {
    			return nil, err
    		}
    		rows = append(rows, r...)
    	}
    	return rows, nil
    }
    
    func printPod(pod *api.Pod, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/kube_template_flags.go

    // Supported Format types can be found in pkg/printers/printers.go
    func (f *KubeTemplatePrintFlags) ToPrinter(outputFormat string) (printers.ResourcePrinter, error) {
    	if f == nil {
    		return nil, NoCompatiblePrinterError{}
    	}
    
    	if p, err := f.JSONPathPrintFlags.ToPrinter(outputFormat); !IsNoCompatiblePrinterError(err) {
    		return p, err
    	}
    	return f.GoTemplatePrintFlags.ToPrinter(outputFormat)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 13 10:28:09 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/print_flags.go

    // Supported format types can be found in pkg/printers/printers.go
    func (f *PrintFlags) ToPrinter() (printers.ResourcePrinter, error) {
    	outputFormat := ""
    	if f.OutputFormat != nil {
    		outputFormat = *f.OutputFormat
    	}
    	// For backwards compatibility we want to support a --template argument given, even when no --output format is provided.
    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