Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 825 for suffixed (0.21 sec)

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

    package resource
    
    import (
    	"strconv"
    )
    
    type suffix string
    
    // suffixer can interpret and construct suffixes.
    type suffixer interface {
    	interpret(suffix) (base, exponent int32, fmt Format, ok bool)
    	construct(base, exponent int32, fmt Format) (s suffix, ok bool)
    	constructBytes(base, exponent int32, fmt Format) (s []byte, ok bool)
    }
    
    // quantitySuffixer handles suffixes for all three formats that quantity
    // can handle.
    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. src/cmd/internal/obj/x86/evex.go

    			hasRoundSae = true
    		default:
    			if !unknownSet[suffix] {
    				msg = append(msg, fmt.Sprintf("unknown suffix %q", suffix))
    			}
    			unknownSet[suffix] = true
    		}
    
    		if suffixSet[suffix] {
    			msg = append(msg, fmt.Sprintf("duplicate suffix %q", suffix))
    		}
    		suffixSet[suffix] = true
    	}
    
    	if hasBcst && hasRoundSae {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 9.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    	// add goroot to the end of the libdir list.
    	suffix := ""
    
    	suffixsep := ""
    	if *flagInstallSuffix != "" {
    		suffixsep = "_"
    		suffix = *flagInstallSuffix
    	} else if *flagRace {
    		suffixsep = "_"
    		suffix = "race"
    	} else if *flagMsan {
    		suffixsep = "_"
    		suffix = "msan"
    	} else if *flagAsan {
    		suffixsep = "_"
    		suffix = "asan"
    	}
    
    	if buildcfg.GOROOT != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    max_queue: Size of the queue of pending events and summaries.
    flush_millis: How often, in milliseconds, to flush the pending events and
      summaries to disk.
    filename_suffix: Every event file's name is suffixed with this suffix.
      }];
    
      let arguments = (ins
        Arg<TF_ResourceTensor, "", [TF_SummaryWrite]>:$writer,
        TF_StrTensor:$logdir,
        TF_Int32Tensor:$max_queue,
        TF_Int32Tensor:$flush_millis,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  5. pkg/bootstrap/instance_test.go

    	} else {
    		stats.prefixes = v2Prefixes + stats.prefixes + "," + requiredEnvoyStatsMatcherInclusionPrefixes + v2Suffix
    	}
    	if stats.suffixes == "" {
    		stats.suffixes = rbacEnvoyStatsMatcherInclusionSuffix
    	} else {
    		stats.suffixes += "," + rbacEnvoyStatsMatcherInclusionSuffix
    	}
    
    	if stats.regexps == "" {
    		stats.regexps = requiredEnvoyStatsMatcherInclusionRegexes
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. android/guava/src/com/google/common/net/InternetDomainName.java

       *
       * <p>Public suffixes are a proper superset of {@linkplain #isRegistrySuffix() registry suffixes}.
       * The list of public suffixes additionally contains privately owned domain names under which
       * Internet users can register subdomains. An example of a public suffix that is not a registry
       * suffix is {@code blogspot.com}. Note that it is true that all public suffixes <i>have</i>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  9. 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)
  10. guava/src/com/google/common/net/InternetDomainName.java

       *
       * <p>Public suffixes are a proper superset of {@linkplain #isRegistrySuffix() registry suffixes}.
       * The list of public suffixes additionally contains privately owned domain names under which
       * Internet users can register subdomains. An example of a public suffix that is not a registry
       * suffix is {@code blogspot.com}. Note that it is true that all public suffixes <i>have</i>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
Back to top