Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 354 for Separator (0.18 sec)

  1. pilot/pkg/networking/core/route/route_cache.go

    	h := hash.New()
    
    	h.WriteString(r.RouteName)
    	h.Write(Separator)
    	h.WriteString(r.ProxyVersion)
    	h.Write(Separator)
    	h.WriteString(r.ClusterID)
    	h.Write(Separator)
    	h.WriteString(r.DNSDomain)
    	h.Write(Separator)
    	h.WriteString(strconv.FormatBool(r.DNSCapture))
    	h.Write(Separator)
    	h.WriteString(strconv.FormatBool(r.DNSAutoAllocate))
    	h.Write(Separator)
    	h.WriteString(strconv.FormatBool(r.AllowAny))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. src/path/filepath/path.go

    		// Treat any targetpath matching `\\host\share` basepath as absolute path.
    		base = string(Separator)
    	}
    
    	// Can't use IsAbs - `\a` and `a` are both relative in Windows.
    	baseSlashed := len(base) > 0 && base[0] == Separator
    	targSlashed := len(targ) > 0 && targ[0] == Separator
    	if baseSlashed != targSlashed || !sameWord(baseVol, targVol) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/HierarchicalNameSerializer.java

        private void writeFirstOccurrenceOfName(String name, Encoder encoder) throws IOException {
            int separator = SEPARATOR_MATCHER.lastIndexIn(name);
            if (separator > 0) {
                String parent = name.substring(0, separator);
                String child = name.substring(separator + 1);
                encoder.writeByte((byte) name.charAt(separator));
                writeName(parent, encoder);
                writeName(child, encoder);
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Splitter.java

       * Returns a splitter that uses the given single-character separator. For example, {@code
       * 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)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-filepath.h

      // it is called in CreateDirectoriesRecursively() assuming that it will change
      // a pathname from directory syntax (trailing separator) to filename syntax.
      //
      // On Windows this method also replaces the alternate path separator '/' with
      // the primary path separator '\\', so that for example "bar\\/\\foo" becomes
      // "bar\\foo".
    
      void Normalize();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_cache.go

    	h := hash.New()
    	h.WriteString(t.clusterName)
    	h.Write(Separator)
    	h.WriteString(t.proxyVersion)
    	h.Write(Separator)
    	h.WriteString(util.LocalityToString(t.locality))
    	h.Write(Separator)
    	h.WriteString(t.proxyClusterID)
    	h.Write(Separator)
    	h.WriteString(strconv.FormatBool(t.proxySidecar))
    	h.Write(Separator)
    	h.WriteString(strconv.FormatBool(t.http2))
    	h.Write(Separator)
    	h.WriteString(strconv.FormatBool(t.downstreamAuto))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 19:09:43 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/util/TextUtil.java

        }
    
        /**
         * Converts all line separators in the specified string to the platform's line separator.
         */
        public static String toPlatformLineSeparators(String str) {
            logDeprecation();
            return str == null ? null : replaceLineSeparatorsInternalOf(str, getPlatformLineSeparatorInternal());
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  8. src/os/path_plan9.go

    // license that can be found in the LICENSE file.
    
    package os
    
    const (
    	PathSeparator     = '/'    // OS-specific path separator
    	PathListSeparator = '\000' // OS-specific path list separator
    )
    
    // IsPathSeparator reports whether c is a directory separator character.
    func IsPathSeparator(c uint8) bool {
    	return PathSeparator == c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:09 UTC 2024
    - 443 bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Splitter.java

       * Returns a splitter that uses the given single-character separator. For example, {@code
       * 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)
  10. istioctl/pkg/util/handlers/handlers.go

    		separator := strings.LastIndex(name[idx:], ".")
    		if separator < 0 {
    			return name, namespace
    		}
    
    		return name[0 : idx+separator], name[idx+separator+1:]
    	}
    	separator := strings.LastIndex(name, ".")
    	if separator < 0 {
    		return name, namespace
    	}
    
    	return name[0:separator], name[separator+1:]
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 06 15:01:41 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top