Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 327 for chardata (0.12 sec)

  1. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

            StringItem(String value, boolean followedByDigit) {
                if (followedByDigit && value.length() == 1) {
                    // a1 = alpha-1, b1 = beta-1, m1 = milestone-1
                    switch (value.charAt(0)) {
                        case 'a':
                            value = "alpha";
                            break;
                        case 'b':
                            value = "beta";
                            break;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 26K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/RelativePath.java

            int length = segments.length - 1;
            for (String segment : segments) {
                length += segment.length();
            }
            return length;
        }
    
        @Override
        public char charAt(int index) {
            if (index < 0) {
                throw new IndexOutOfBoundsException(String.valueOf(index));
            }
            int remaining = index;
            int nextSegment = 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 05:20:08 UTC 2023
    - 9K bytes
    - Viewed (0)
  3. src/internal/trace/raw/doc.go

    within. Note: an explicit argument for the length is elided, because it's
    just the length of the unquoted string.
    
    For example:
    
    	String id=5
    		data="hello world\x00"
    
    These events are identified in their spec by the HasData flag.
    
    The second special case consists of stack events. These events are identified
    by the IsStack flag. These events also have a trailing unsigned integer argument
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/api/internal/jvm/JavaVersionParser.java

        }
    
        private static int findFirstNonVersionCharIndex(String s) {
            assertTrue(s, !s.isEmpty());
    
            for (int i = 0; i < s.length(); ++i) {
                if (!isDigitOrPeriod(s.charAt(i))) {
                    assertTrue(s, i != 0);
                    return i;
                }
            }
    
            return s.length();
        }
    
        private static boolean isDigitOrPeriod(char c) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/LineFilter.java

            }
        }
    
        @Override
        public int read() throws IOException {
            ensureData();
            if (state == State.EOF) {
                return -1;
            }
            return transformedLine.charAt(transformedIndex++);
        }
    
        @Override
        public int read(char[] cbuf, int off, int len) throws IOException {
            for (int i = 0; i < len; i++) {
                final int c = read();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 3.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/http/NetworkExplorer.java

            p = i = 0;
            while ( p < len && pathInfo.charAt(p) == '/' ) {
                p++;
            }
            if ( p == len ) {
                return null;
            }
    
            /* collect server name */
            while ( p < len && ( ch = pathInfo.charAt(p) ) != '/' ) {
                out[ i++ ] = ch;
                p++;
            }
            while ( p < len && pathInfo.charAt(p) == '/' ) {
                p++;
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 21.3K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultSettingsValidator.java

                    if (banned.indexOf(string.charAt(i)) >= 0) {
                        addViolation(
                                problems,
                                severity,
                                fieldName,
                                sourceHint,
                                "must not contain any of these characters " + banned + " but found " + string.charAt(i));
                        return false;
                    }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/beans/util/CopyOptionsTest.java

                    @Override
                    public String toString() {
                        return name;
                    }
    
                    @Override
                    public char charAt(final int index) {
                        return name.charAt(index);
                    }
    
                    @Override
                    public int length() {
                        return name.length();
                    }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/dfs/DfsReferralDataImpl.java

                /*
                 * Samba has a tendency to return pathConsumed values so that they consume a trailing slash of the
                 * requested path. Normalize this here.
                 */
                if ( reqPath.charAt(consumed - 1) == '\\' ) {
                    if ( log.isDebugEnabled() ) {
                        log.debug("Server consumed trailing slash of request path, adjusting");
                    }
                    dr.pathConsumed--;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sat Nov 13 15:13:49 UTC 2021
    - 11K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

                    throw new RuntimeCIFSException(uee);
                }
                int i, u;
                int end = userInfo.length();
                for ( i = 0, u = 0; i < end; i++ ) {
                    char c = userInfo.charAt(i);
                    if ( c == ';' ) {
                        dom = userInfo.substring(0, i);
                        u = i + 1;
                    }
                    else if ( c == ':' ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 18.8K bytes
    - Viewed (0)
Back to top