Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,820 for palmer (0.12 sec)

  1. pkg/apis/batch/validation/validation_test.go

    		`America/Yellowknife`,
    		`Antarctica/Casey`,
    		`Antarctica/Davis`,
    		`Antarctica/DumontDUrville`,
    		`Antarctica/Macquarie`,
    		`Antarctica/Mawson`,
    		`Antarctica/McMurdo`,
    		`Antarctica/Palmer`,
    		`Antarctica/Rothera`,
    		`Antarctica/South_Pole`,
    		`Antarctica/Syowa`,
    		`Antarctica/Troll`,
    		`Antarctica/Vostok`,
    		`Arctic/Longyearbyen`,
    		`Asia/Aden`,
    		`Asia/Almaty`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
  2. src/go/printer/testdata/parser.go

    // license that can be found in the LICENSE file.
    
    // Package parser implements a parser for Go source files. Input may be
    // provided in a variety of forms (see the various Parse* functions); the
    // output is an abstract syntax tree (AST) representing the Go source. The
    // parser is invoked through one of the Parse* functions.
    
    package parser
    
    import (
    	"fmt"
    	"go/ast"
    	"go/scanner"
    	"go/token"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  3. src/go/parser/parser.go

    	fmt.Println(a...)
    }
    
    func trace(p *parser, msg string) *parser {
    	p.printTrace(msg, "(")
    	p.indent++
    	return p
    }
    
    // Usage pattern: defer un(trace(p, "..."))
    func un(p *parser) {
    	p.indent--
    	p.printTrace(")")
    }
    
    // maxNestLev is the deepest we're willing to recurse during parsing
    const maxNestLev int = 1e5
    
    func incNestLev(p *parser) *parser {
    	p.nestLev++
    	if p.nestLev > maxNestLev {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  4. internal/jwt/parser.go

    package jwt
    
    // This file is a re-implementation of the original code here with some
    // additional allocation tweaks reproduced using GODEBUG=allocfreetrace=1
    // original file https://github.com/golang-jwt/jwt/blob/main/parser.go
    // borrowed under MIT License https://github.com/golang-jwt/jwt/blob/main/LICENSE
    
    import (
    	"bytes"
    	"crypto"
    	"crypto/hmac"
    	"encoding/base64"
    	"errors"
    	"fmt"
    	"hash"
    	"sync"
    	"time"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 09 07:53:08 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/main/java/org/gradle/api/Namer.java

        /**
         * A comparator implementation based on the names returned by the given namer.
         *
         * @param <T> The type of object that the namer can name
         */
        class Comparator<T> implements java.util.Comparator<T> {
    
            private final Namer<? super T> namer;
    
            public Comparator(Namer<? super T> namer) {
                this.namer = namer;
            }
    
            @Override
            public int compare(T o1, T o2) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/namer.go

    	// does not support names.
    	ObjectName(obj runtime.Object) (namespace, name string, err error)
    }
    
    type ContextBasedNaming struct {
    	Namer         runtime.Namer
    	ClusterScoped bool
    }
    
    // ContextBasedNaming implements ScopeNamer
    var _ ScopeNamer = ContextBasedNaming{}
    
    func (n ContextBasedNaming) Namespace(req *http.Request) (namespace string, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 14 10:11:56 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/Parser.kt

    Sergey Igushkin <******@****.***> 1712225595 +0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. src/crypto/x509/parser.go

    Mateusz Poliwczak <******@****.***> 1716403117 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. src/internal/trace/parser.go

    Carlos Amedee <******@****.***> 1715110630 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:31:04 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  10. pkg/kubelet/images/puller.go

    ruiwen-zhao <******@****.***> 1699030366 +0000
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top