Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 128 for printuint (0.16 sec)

  1. src/cmd/compile/internal/types2/object.go

    	if qf != nil {
    		s = qf(pkg)
    	} else {
    		s = pkg.Path()
    	}
    	if s != "" {
    		s += "."
    	}
    	return s
    }
    
    // ObjectString returns the string form of obj.
    // The Qualifier controls the printing of
    // package-level objects, and may be nil.
    func ObjectString(obj Object, qf Qualifier) string {
    	var buf bytes.Buffer
    	writeObject(&buf, obj, qf)
    	return buf.String()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tlog.go

    )
    
    // A Hash is a hash identifying a log record or tree root.
    type Hash [HashSize]byte
    
    // HashSize is the size of a Hash in bytes.
    const HashSize = 32
    
    // String returns a base64 representation of the hash for printing.
    func (h Hash) String() string {
    	return base64.StdEncoding.EncodeToString(h[:])
    }
    
    // MarshalJSON marshals the hash as a JSON string containing the base64-encoded hash.
    func (h Hash) MarshalJSON() ([]byte, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// Must not point to metdata fields.
    	// Required.
    	JSONPath string
    }
    
    // CustomResourceColumnDefinition specifies a column for server side printing.
    type CustomResourceColumnDefinition struct {
    	// name is a human readable name for the column.
    	Name string
    	// type is an OpenAPI type definition for this column.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  4. src/runtime/panic.go

    	}
    
    	goexit1()
    }
    
    // Call all Error and String methods before freezing the world.
    // Used when crashing with panicking.
    func preprintpanics(p *_panic) {
    	defer func() {
    		text := "panic while printing panic value"
    		switch r := recover().(type) {
    		case nil:
    			// nothing to do
    		case string:
    			throw(text + ": " + r)
    		default:
    			throw(text + ": type " + toRType(efaceOf(&r)._type).string())
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  5. src/go/types/object.go

    	if qf != nil {
    		s = qf(pkg)
    	} else {
    		s = pkg.Path()
    	}
    	if s != "" {
    		s += "."
    	}
    	return s
    }
    
    // ObjectString returns the string form of obj.
    // The Qualifier controls the printing of
    // package-level objects, and may be nil.
    func ObjectString(obj Object, qf Qualifier) string {
    	var buf bytes.Buffer
    	writeObject(&buf, obj, qf)
    	return buf.String()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/init.go

    	)
    	flagSet.BoolVar(
    		&initOptions.skipTokenPrint, options.SkipTokenPrint, initOptions.skipTokenPrint,
    		"Skip printing of the default bootstrap token generated by 'kubeadm init'.",
    	)
    	flagSet.BoolVar(
    		&initOptions.dryRun, options.DryRun, initOptions.dryRun,
    		"Don't apply any changes; just output what would be done.",
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 17 03:37:05 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  7. src/net/mail/message.go

    			b.WriteByte('\\')
    			b.WriteRune(r)
    		}
    	}
    	b.WriteByte('"')
    	return b.String()
    }
    
    // isVchar reports whether r is an RFC 5322 VCHAR character.
    func isVchar(r rune) bool {
    	// Visible (printing) characters.
    	return '!' <= r && r <= '~' || isMultibyte(r)
    }
    
    // isMultibyte reports whether r is a multi-byte UTF-8 character
    // as supported by RFC 6532.
    func isMultibyte(r rune) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. src/runtime/runtime-gdb_test.go

    	// the DWARF variable location expression should be of the
    	// form "var.field" and not just "field".
    	// However, the newer dwarf location list code reconstituted
    	// aggregates from their fields and reverted their printing
    	// back to its original form.
    	// Only test that all variables are listed in 'info locals' since
    	// different versions of gdb print variables in different
    	// order and with differing amount of information and formats.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  9. src/testing/fuzz.go

    	Parent     string
    	Path       string
    	Data       []byte
    	Values     []any
    	Generation int
    	IsSeed     bool
    }
    
    // Helper marks the calling function as a test helper function.
    // When printing file and line information, that function will be skipped.
    // Helper may be called simultaneously from multiple goroutines.
    func (f *F) Helper() {
    	if f.inFuzzFn {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modindex/build.go

    			// The situation is made more confusing by the fact that
    			// bash allows quoted ~ in $PATH (most shells do not).
    			// Do not get confused by this, and do not try to use the path.
    			// It does not exist, and printing errors about it confuses
    			// those users even more, because they think "sure ~ exists!".
    			// The go command diagnoses this situation and prints a
    			// useful error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
Back to top