Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for suffixMsg (0.23 sec)

  1. pkg/kubelet/pluginmanager/cache/desired_state_of_world.go

    	return simpleMsg, generatePluginMsgDetailed(prefixMsg, suffixMsg, socketPath, details)
    }
    
    // GenerateMsgDetailed returns detailed msgs for plugins to register
    // that can be used in logs.
    // The msg format follows the pattern "<prefixMsg> <plugin details> <suffixMsg>"
    func (plugin *PluginInfo) GenerateMsgDetailed(prefixMsg, suffixMsg string) (detailedMsg string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 02 12:47:44 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-asm/src/main/java/org/gradle/model/internal/asm/ClassGeneratorSuffixRegistry.java

        private static final Map<String, Throwable> SUFFIXES = new ConcurrentHashMap<>();
    
        /**
         * Registers the given suffix as in use for generated class names.
         */
        public static String register(String suffix) {
            Throwable previous = SUFFIXES.putIfAbsent(suffix, markerForSuffix(suffix));
            if (previous != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 15:31:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. pkg/kubelet/network/dns/dns_windows.go

    func getDNSSuffixList() ([]string, error) {
    	// We start with the general suffix list that apply to all network connections.
    	allSuffixes := []string{}
    	suffixes, err := getRegistryStringValue(netRegistry, "SearchList")
    	if err != nil {
    		return nil, err
    	}
    	allSuffixes = strings.Split(suffixes, ",")
    
    	// Then we append the network-specific DNS suffix lists.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 22:21:57 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.h

    // then the LOG(INFO) macro is used instead.
    //
    // This will create a file name via prefixing `name` with the value of the
    // TF_DUMP_GRAPH_PREFIX environment variable if `dirname` is empty and
    // suffixing `name` with ".mlir".
    Status CreateFileForDumping(llvm::StringRef name,
                                std::unique_ptr<llvm::raw_ostream>* os,
                                std::string* filepath,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/runlit.cfg.py

    # name: The name of this test suite.
    config.name = 'MLIR ' + os.path.basename(config.mlir_test_dir)
    
    config.test_format = lit.formats.ShTest(not llvm_config.use_lit_shell)
    
    # suffixes: A list of file extensions to treat as test files.
    config.suffixes = ['.cc', '.hlo', '.json', '.mlir', '.pbtxt', '.py']
    
    # test_source_root: The root path where tests are located.
    config.test_source_root = config.mlir_test_dir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 18:52:19 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/HierarchicalNameSerializer.java

    import java.io.IOException;
    
    /**
     * Efficiently serializes hierarchical names, like Java class names or relative paths of resources.
     * Splits names into prefixes and suffixes along package separators, inner class separators, file separators and camel case borders.
     * Reuses these prefixes and suffixes to efficiently store names or parts of names it has seen before.
     *
     * This class is stateful. Use a new one for each serialization/deserialization attempt.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. guava/src/com/google/thirdparty/publicsuffix/TrieParser.java

    @GwtCompatible
    final class TrieParser {
    
      private static final Joiner DIRECT_JOINER = Joiner.on("");
    
      /**
       * Parses a serialized trie representation of a map of reversed public suffixes into an immutable
       * map of public suffixes. The encoded trie string may be broken into multiple chunks to avoid the
       * 64k limit on string literal size. In-memory strings can be much larger (2G).
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Oct 13 19:20:43 UTC 2022
    - 4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/thirdparty/publicsuffix/TrieParser.java

    @GwtCompatible
    final class TrieParser {
    
      private static final Joiner DIRECT_JOINER = Joiner.on("");
    
      /**
       * Parses a serialized trie representation of a map of reversed public suffixes into an immutable
       * map of public suffixes. The encoded trie string may be broken into multiple chunks to avoid the
       * 64k limit on string literal size. In-memory strings can be much larger (2G).
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Oct 13 19:20:43 UTC 2022
    - 4K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/scope_internal.h

    Scope NewInternalScope(Graph* graph, Status* status, ShapeRefiner* refiner);
    
    class Scope::Impl {
     public:
      // A NameMap is used to keep track of suffixes for names used in a scope. A
      // name that has not been used so far in a scope will get no suffix. Later
      // uses of the same name will get suffixes _1, _2, _3, etc. Multiple scopes
      // can share the same NameMap. For instance, a new scope created using
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:46:43 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/resource/suffix.go

    	"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.
    var quantitySuffixer = newSuffixer()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 03:17:50 UTC 2022
    - 5.2K bytes
    - Viewed (0)
Back to top