Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 856 for Suffix (0.49 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/resource/suffix.go

    	return nil, false
    }
    
    func (sh *suffixHandler) interpret(suffix suffix) (base, exponent int32, fmt Format, ok bool) {
    	// Try lookup tables first
    	if b, e, ok := sh.decSuffixes.lookup(suffix); ok {
    		return b, e, DecimalSI, true
    	}
    	if b, e, ok := sh.binSuffixes.lookup(suffix); ok {
    		return b, e, BinarySI, true
    	}
    
    	if len(suffix) > 1 && (suffix[0] == 'E' || suffix[0] == 'e') {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 03:17:50 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  2. pkg/bootstrap/testdata/stats_inclusion_golden.json

              },
              {
              "suffix": "suffix1"
              },
              {
              "suffix": "suffix2"
              },
              {
              "suffix": "upstream_rq_1xx"
              },
              {
              "suffix": "upstream_rq_2xx"
              },
              {
              "suffix": "upstream_rq_3xx"
              },
              {
              "suffix": "upstream_rq_4xx"
              },
              {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-in.yaml

                hosts: ["exact.com", "*.suffix.com", "prefix.*", "*"]
                ports: ["80", "90"]
                paths: ["/exact", "/prefix/*", "*/suffix", "*", "/path/template/{*}", "/{**}/path/template"]
                notMethods: ["not-method", "not-method-prefix-*", "*-not-suffix-method", "*"]
                notHosts: ["not-exact.com", "*.not-suffix.com", "not-prefix.*", "*"]
                notPorts: ["8000", "9000"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/matcher/string_test.go

    				},
    			},
    		},
    		{
    			name:   "suffix-empty-prefix",
    			v:      "*-suffix",
    			prefix: "",
    			want: &matcher.StringMatcher{
    				MatchPattern: &matcher.StringMatcher_Suffix{
    					Suffix: "-suffix",
    				},
    			},
    		},
    		{
    			name:   "suffix",
    			v:      "*-suffix",
    			prefix: "abc",
    			want:   StringMatcherRegex("abc.*-suffix"),
    		},
    		{
    			name:   "exact",
    			v:      "-exact",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 17 22:42:11 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/allow-full.yaml

          - prefix: not-principal-prefix-
          - suffix: -suffix-not-principal
          - presence: {}
          principals:
          - exact: principal
          - prefix: principal-prefix-
          - suffix: -suffix-principal
          - presence: {}
    - rules:
      - matches:
        - namespaces:
          - exact: ns
          - prefix: ns-prefix-
          - suffix: -ns-suffix
          - presence: {}
          notNamespaces:
          - exact: not-ns
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    	// the suffix to the longest suffix shared by all the current match IDs
    	// before adding 0 or 1.
    	suffix := commonSuffix(r.MatchIDs)
    	if !strings.HasSuffix(suffix, r.Suffix) {
    		b.Fatalf("internal error: invalid common suffix") // bug in commonSuffix
    	}
    
    	// Run 0suffix and 1suffix. If one fails, chase down the failure in that half.
    	r0 := b.Run("0" + suffix)
    	if !r0.Success {
    		return b.search(r0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/script/conds.go

    		"runtime.GOOS == <suffix>",
    		func(_ *State, suffix string) (bool, error) {
    			if suffix == runtime.GOOS {
    				return true, nil
    			}
    			if _, ok := imports.KnownOS[suffix]; !ok {
    				return false, fmt.Errorf("unrecognized GOOS %q", suffix)
    			}
    			return false, nil
    		})
    
    	conds["GOARCH"] = PrefixCondition(
    		"runtime.GOARCH == <suffix>",
    		func(_ *State, suffix string) (bool, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 5K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/ClassGeneratorSuffixRegistry.java

            Throwable previous = SUFFIXES.putIfAbsent(suffix, markerForSuffix(suffix));
            if (previous != null) {
                throw new IllegalStateException("A class generator with suffix '" + suffix + "' is already registered.", previous);
            }
            return suffix;
        }
    
        /**
         * Assigns a suffix to use for generated class names.
         */
        public static String assign(String suffix) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/builder/testdata/http/allow-full-rule-out.yaml

                          ignoreCase: true
                    - header:
                        name: :authority
                        stringMatch:
                          ignoreCase: true
                          suffix: .suffix.com
                    - header:
                        name: :authority
                        stringMatch:
                          ignoreCase: true
                          prefix: prefix.
                    - header:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/allow-full-in.yaml

          notValues: ["not-presenter", "not-presenter-prefix-*", "*-not-suffix-presenter", "*"]
      - when:
        - key: "request.auth.claims[iss]"
          values: ["iss", "iss-prefix-*", "*-suffix-iss", "*"]
          notValues: ["not-iss", "not-iss-prefix-*", "*-not-suffix-iss", "*"]
      - when:
        - key: "request.auth.claims[nested1][nested2]"
          values: ["nested", "nested-prefix-*", "*-suffix-nested", "*"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top