Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 707 for separators (0.18 sec)

  1. android/guava/src/com/google/common/base/Ascii.java

       * interpretation of a limited number of contiguously following characters.
       *
       * @since 8.0
       */
      public static final byte ESC = 27;
    
      /**
       * File Separator: These four information separators may be used within data in optional fashion,
       * except that their hierarchical relationship shall be: FS is the most inclusive, then GS, then
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jul 19 15:43:07 UTC 2021
    - 21.6K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/incremental/sourceparser/PreprocessingReader.java

            this.reader = reader;
            readAheadChars[0] = -1;
            readAheadChars[1] = -1;
        }
    
        /**
         * Collects the next line from the filtered stream into the given buffer. Does not include the line separators.
         *
         * @return true if next line is available (possibly empty), false when end of stream reached.
         */
        public boolean readNextLine(Appendable buffer) throws IOException {
            int ch;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. src/os/path_windows.go

    	"internal/syscall/windows"
    	"syscall"
    )
    
    const (
    	PathSeparator     = '\\' // OS-specific path separator
    	PathListSeparator = ';'  // OS-specific path list separator
    )
    
    // IsPathSeparator reports whether c is a directory separator character.
    func IsPathSeparator(c uint8) bool {
    	// NOTE: Windows accepts / as path separator.
    	return c == '\\' || c == '/'
    }
    
    func dirname(path string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/util/Matchers.java

                }
    
                @Override
                public void describeTo(Description description) {
                    matcher.describeTo(description);
                    description.appendText(" (normalize line separators)");
                }
            };
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/Funnels.java

          return "Funnels.integerFunnel()";
        }
      }
    
      /**
       * Returns a funnel that processes an {@code Iterable} by funneling its elements in iteration
       * order with the specified funnel. No separators are added between the elements.
       *
       * @since 15.0
       */
      public static <E extends @Nullable Object> Funnel<Iterable<? extends E>> sequentialFunnel(
          Funnel<E> elementFunnel) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 25 20:32:46 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/hash/Funnels.java

          return "Funnels.integerFunnel()";
        }
      }
    
      /**
       * Returns a funnel that processes an {@code Iterable} by funneling its elements in iteration
       * order with the specified funnel. No separators are added between the elements.
       *
       * @since 15.0
       */
      public static <E extends @Nullable Object> Funnel<Iterable<? extends E>> sequentialFunnel(
          Funnel<E> elementFunnel) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 25 20:32:46 UTC 2022
    - 7.3K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/Names.java

         */
        public abstract String getName();
    
        /**
         * Camel case formatted base name.
         */
        public abstract String getBaseName();
    
        /**
         * Lower case formatted base name, with '_' separators
         */
        public abstract String getLowerBaseName();
    
        public abstract String withPrefix(String prefix);
    
        public abstract String withSuffix(String suffix);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. src/strings/strings.go

    func isSeparator(r rune) bool {
    	// ASCII alphanumerics and underscore are not separators
    	if r <= 0x7F {
    		switch {
    		case '0' <= r && r <= '9':
    			return false
    		case 'a' <= r && r <= 'z':
    			return false
    		case 'A' <= r && r <= 'Z':
    			return false
    		case r == '_':
    			return false
    		}
    		return true
    	}
    	// Letters and digits are not separators
    	if unicode.IsLetter(r) || unicode.IsDigit(r) {
    		return false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:48:16 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/CaseFormat.java

        // deal with camel conversion
        StringBuilder out = null;
        int i = 0;
        int j = -1;
        while ((j = wordBoundary.indexIn(s, ++j)) != -1) {
          if (i == 0) {
            // include some extra space for separators
            out = new StringBuilder(s.length() + 4 * format.wordSeparator.length());
            out.append(format.normalizeFirstWord(s.substring(i, j)));
          } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 19 20:20:14 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  10. pkg/util/taints/taints_test.go

    		{
    			name:        "invalid spec format with multiple '=' separators",
    			spec:        []string{"foo=abc=xyz:NoSchedule"},
    			expectedErr: true,
    		},
    		{
    			name:        "invalid spec format with multiple ':' separators",
    			spec:        []string{"foo=abc:xyz:NoSchedule"},
    			expectedErr: true,
    		},
    		{
    			name:        "invalid spec taint value without separator",
    			spec:        []string{"foo"},
    			expectedErr: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 09:23:35 UTC 2022
    - 22.6K bytes
    - Viewed (0)
Back to top