Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 401 for Recognizes (0.44 sec)

  1. src/text/scanner/scanner.go

    	ErrorCount int
    
    	// The Mode field controls which tokens are recognized. For instance,
    	// to recognize Ints, set the ScanInts bit in Mode. The field may be
    	// changed at any time.
    	Mode uint
    
    	// The Whitespace field controls which characters are recognized
    	// as white space. To recognize a character ch <= ' ' as white space,
    	// set the ch'th bit in Whitespace (the Scanner's behavior is undefined
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/scheme_test.go

    				A:                                     "test",
    			},
    		},
    		// multi group versioner recognizes multiple groups and forces the output to a particular version, copies because version differs
    		{
    			scheme: GetTestScheme(),
    			in:     &runtimetesting.ExternalTestType1{A: "test"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/mkbuiltin.go

    		fmt.Fprintf(w, "typs[%d] = %s\n", i, typ)
    	}
    	fmt.Fprintln(w, "return typs[:]")
    	fmt.Fprintln(w, "}")
    }
    
    // typeInterner maps Go type expressions to compiler code that
    // constructs the denoted type. It recognizes and reuses common
    // subtype expressions.
    type typeInterner struct {
    	typs []string
    	hash map[string]int
    }
    
    func (i *typeInterner) intern(t ast.Expr) int {
    	x := i.mktype(t)
    	v, ok := i.hash[x]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:56:49 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. docs/sts/README.md

    - Temporary credentials are short-term, as the name implies. They can be configured to last for anywhere from a few minutes to several hours. After the credentials expire, MinIO no longer recognizes them or allows any kind of access from API requests made with them.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Oct 25 00:44:15 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/Splitter.java

       * Splitter.on(',').split("foo,,bar")} returns an iterable containing {@code ["foo", "", "bar"]}.
       *
       * @param separator the character to recognize as a separator
       * @return a splitter, with default settings, that recognizes that separator
       */
      public static Splitter on(char separator) {
        return on(CharMatcher.is(separator));
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/interfaces.go

    	// the object is unversioned, or an error if the object is not recognized
    	// (IsNotRegisteredError will return true).
    	ObjectKinds(Object) ([]schema.GroupVersionKind, bool, error)
    	// Recognizes returns true if the scheme is able to handle the provided version and kind,
    	// or more precisely that the provided version is a possible conversion or decoding
    	// target.
    	Recognizes(gvk schema.GroupVersionKind) bool
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun May 28 03:26:35 UTC 2023
    - 19K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/Splitter.java

       * Splitter.on(',').split("foo,,bar")} returns an iterable containing {@code ["foo", "", "bar"]}.
       *
       * @param separator the character to recognize as a separator
       * @return a splitter, with default settings, that recognizes that separator
       */
      public static Splitter on(char separator) {
        return on(CharMatcher.is(separator));
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/semver/semver.go

    // all-numeric PRERELEASE identifiers must not have leading zeros.
    //
    // This package follows Semantic Versioning 2.0.0 (see semver.org)
    // with two exceptions. First, it requires the "v" prefix. Second, it recognizes
    // vMAJOR and vMAJOR.MINOR (with no prerelease or build suffixes)
    // as shorthands for vMAJOR.0.0 and vMAJOR.MINOR.0.
    package semver
    
    import "sort"
    
    // parsed returns the parsed form of a semantic version string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/etcd.go

    		if err != nil {
    			return nil, false, err
    		}
    	}
    
    	scale := &autoscalingv1.Scale{
    		// Populate apiVersion and kind so conversion recognizes we are already in the desired GVK and doesn't try to convert
    		TypeMeta: metav1.TypeMeta{
    			APIVersion: "autoscaling/v1",
    			Kind:       "Scale",
    		},
    		ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/scheme.go

    	}
    	_, unversionedType := s.unversionedTypes[t]
    
    	return gvks, unversionedType, nil
    }
    
    // Recognizes returns true if the scheme is able to handle the provided group,version,kind
    // of an object.
    func (s *Scheme) Recognizes(gvk schema.GroupVersionKind) bool {
    	_, exists := s.gvkToType[gvk]
    	return exists
    }
    
    func (s *Scheme) IsUnversioned(obj Object) (bool, bool) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 25.2K bytes
    - Viewed (0)
Back to top