Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 533 for prince (0.13 sec)

  1. src/time/zoneinfo_abbrs_windows.go

    	"Eastern Standard Time":           {"EST", "EDT"},     // America/New_York
    	"US Mountain Standard Time":       {"MST", "MST"},     // America/Phoenix
    	"Haiti Standard Time":             {"EST", "EDT"},     // America/Port-au-Prince
    	"Magallanes Standard Time":        {"-03", "-03"},     // America/Punta_Arenas
    	"Canada Central Standard Time":    {"CST", "CST"},     // America/Regina
    	"Pacific SA Standard Time":        {"-04", "-03"},     // America/Santiago
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 20:01:59 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. lib/time/zoneinfo.zip

    America/Nipigon America/Nome America/Noronha America/North_Dakota/Beulah America/North_Dakota/Center America/North_Dakota/New_Salem America/Nuuk America/Ojinaga America/Panama America/Pangnirtung America/Paramaribo America/Phoenix America/Port-au-Prince America/Port_of_Spain America/Porto_Acre America/Porto_Velho America/Puerto_Rico America/Punta_Arenas America/Rainy_River America/Rankin_Inlet America/Recife America/Regina America/Resolute America/Rio_Branco America/Rosario America/Santa_Isabel America/Santarem...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 392.3K bytes
    - Viewed (1)
  3. src/go/build/deps_test.go

    	< golang.org/x/crypto/cryptobyte
    	< crypto/internal/bigmod
    	< crypto/dsa, crypto/elliptic, crypto/rsa
    	< crypto/ecdsa
    	< CRYPTO-MATH;
    
    	CGO, net !< CRYPTO-MATH;
    
    	# TLS, Prince of Dependencies.
    	CRYPTO-MATH, NET, container/list, encoding/hex, encoding/pem
    	< golang.org/x/crypto/internal/alias
    	< golang.org/x/crypto/internal/subtle
    	< golang.org/x/crypto/chacha20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"pretzel":                              "\U0001f968",
    	"previous_track_button":                "\u23ee\ufe0f",
    	"prince":                               "\U0001f934",
    	"princess":                             "\U0001f478",
    	"printer":                              "\U0001f5a8\ufe0f",
    	"probing_cane":                         "\U0001f9af",
    	"puerto_rico":                          "\U0001f1f5\U0001f1f7",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  5. pkg/apis/batch/validation/validation_test.go

    		`America/North_Dakota/New_Salem`,
    		`America/Nuuk`,
    		`America/Ojinaga`,
    		`America/Panama`,
    		`America/Pangnirtung`,
    		`America/Paramaribo`,
    		`America/Phoenix`,
    		`America/Port-au-Prince`,
    		`America/Port_of_Spain`,
    		`America/Porto_Acre`,
    		`America/Porto_Velho`,
    		`America/Puerto_Rico`,
    		`America/Punta_Arenas`,
    		`America/Rainy_River`,
    		`America/Rankin_Inlet`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/printer.go

    		p.print(newline)
    		for i, c := range list {
    			p.printCommClause(c, i+1 == len(list))
    			p.print(newline)
    		}
    	}
    	p.print(_Rbrace)
    }
    
    func (p *printer) printCaseClause(c *CaseClause, braces bool) {
    	if c.Cases != nil {
    		p.print(_Case, blank, c.Cases)
    	} else {
    		p.print(_Default)
    	}
    	p.print(_Colon)
    	if len(c.Body) > 0 {
    		p.print(newline, indent)
    		p.printStmtList(c.Body, braces)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    // to learn whether a function behaves like fmt.Print or fmt.Printf.
    type Result struct {
    	funcs map[*types.Func]Kind
    }
    
    // Kind reports whether fn behaves like fmt.Print or fmt.Printf.
    func (r *Result) Kind(fn *types.Func) Kind {
    	_, ok := isPrint[fn.FullName()]
    	if !ok {
    		// Next look up just "printf", for use with -printf.funcs.
    		_, ok = isPrint[strings.ToLower(fn.Name())]
    	}
    	if ok {
    		if strings.HasSuffix(fn.Name(), "f") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/mod/modfile/print.go

    		b = b[:len(b)-1]
    	}
    	return b
    }
    
    // A printer collects the state during printing of a file or expression.
    type printer struct {
    	bytes.Buffer           // output buffer
    	comment      []Comment // pending end-of-line comments
    	margin       int       // left margin (indent), a number of tabs
    }
    
    // printf prints to the buffer.
    func (p *printer) printf(format string, args ...interface{}) {
    	fmt.Fprintf(p, format, args...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 00:48:59 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. src/runtime/print.go

    // The compiler emits calls to printlock and printunlock around
    // the multiple calls that implement a single Go print or println
    // statement. Some of the print helpers (printslice, for example)
    // call print recursively. There is also the problem of a crash
    // happening during the print routines and needing to acquire
    // the print lock to print information about the crash.
    // For both these reasons, let a thread acquire the printlock 'recursively'.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 03:27:26 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top