Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 112 for suffixMsg (0.26 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. pkg/volume/util/operationexecutor/operation_executor.go

    // Generate a detailed error msg for logs
    func generateVolumeMsgDetailed(prefixMsg, suffixMsg, volumeName, details string) (detailedMsg string) {
    	return fmt.Sprintf("%v for volume %q %v %v", prefixMsg, volumeName, details, suffixMsg)
    }
    
    // Generate a simplified error msg for events and a detailed error msg for logs
    func generateVolumeMsg(prefixMsg, suffixMsg, volumeName, details string) (simpleMsg, detailedMsg string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. android/guava/src/com/google/common/net/InternetDomainName.java

       * ICANN. Examples of registry suffixes include {@code com}, {@code co.uk}, and {@code
       * pvt.k12.wy.us}. Examples of domain names that are <i>not</i> registry suffixes include {@code
       * google.com} and {@code foo.co.uk}.
       *
       * <p>Registry suffixes are a proper subset of {@linkplain #isPublicSuffix() public suffixes}. The
       * list of public suffixes additionally contains privately owned domain names under which Internet
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  6. guava/src/com/google/common/net/InternetDomainName.java

       * ICANN. Examples of registry suffixes include {@code com}, {@code co.uk}, and {@code
       * pvt.k12.wy.us}. Examples of domain names that are <i>not</i> registry suffixes include {@code
       * google.com} and {@code foo.co.uk}.
       *
       * <p>Registry suffixes are a proper subset of {@linkplain #isPublicSuffix() public suffixes}. The
       * list of public suffixes additionally contains privately owned domain names under which Internet
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 05 20:47:23 UTC 2024
    - 28K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

            List<String> suffixes = new ArrayList<>();
    
            suffixes.add(("/" + projectDirName + "/out/production/classes").replace('/', File.separatorChar));
            suffixes.add(("/" + projectDirName + "/out/production/resources").replace('/', File.separatorChar));
            suffixes.add(("/" + projectDirName + "/bin").replace('/', File.separatorChar));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top