Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for indexCon (0.23 sec)

  1. guava/src/com/google/common/base/CharMatcher.java

       * #matches} for each character.
       *
       * @param sequence the character sequence to examine from the beginning
       * @return an index, or {@code -1} if no character matches
       */
      public int indexIn(CharSequence sequence) {
        return indexIn(sequence, 0);
      }
    
      /**
       * Returns the index of the first matching BMP character in a character sequence, starting from a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/CharMatcher.java

       * #matches} for each character.
       *
       * @param sequence the character sequence to examine from the beginning
       * @return an index, or {@code -1} if no character matches
       */
      public int indexIn(CharSequence sequence) {
        return indexIn(sequence, 0);
      }
    
      /**
       * Returns the index of the first matching BMP character in a character sequence, starting from a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ldap/LdapManager.java

            if (entryDn == null) {
                return null;
            }
            int start = entryDn.toLowerCase(Locale.ROOT).indexOf("cn=");
            if (start == -1) {
                return null;
            }
            start += 3;
    
            final int end = entryDn.indexOf(',', start);
            final String value = end == -1 ? entryDn.substring(start) : entryDn.substring(start, end);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                }
    
                int endConditionIndex = conf.indexOf(']');
                if (endConditionIndex == -1) {
                    addError("invalid conf " + conf + " for " + dd);
                    return null;
                }
    
                String condition = conf.substring(1, endConditionIndex);
    
                int notEqualIndex = condition.indexOf("!=");
                if (notEqualIndex == -1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

       */
      @get:JvmName("encodedPassword")
      val encodedPassword: String
        get() {
          if (password.isEmpty()) return ""
          val passwordStart = url.indexOf(':', scheme.length + 3) + 1
          val passwordEnd = url.indexOf('@')
          return url.substring(passwordStart, passwordEnd)
        }
    
      /**
       * The number of segments in this URL's path. This is also the number of slashes in this URL's
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

            def app1Resolve = outputLines.indexOf("> Task :app:resolveGreen")
            def app2Resolve = outputLines.indexOf("> Task :app2:resolveGreen")
            def libTransformWithOldSlf4j = outputLines.indexOf("Transform step 1 received dependencies files [slf4j-api-1.7.25.jar, common.jar] for processing lib.jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

        assertEquals(1, Iterators.indexOf(iterator, Predicates.equalTo("mo")));
        assertEquals("jack", iterator.next());
        assertFalse(iterator.hasNext());
      }
    
      public void testIndexOf_consumedDataWithDuplicates() {
        Iterator<String> iterator = Lists.newArrayList("manny", "mo", "mo", "jack").iterator();
        assertEquals(1, Iterators.indexOf(iterator, Predicates.equalTo("mo")));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  8. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                    // Sort the failedProjects list in the topologically sorted order.
                    failedProjects.sort(comparing(sortedProjects::indexOf));
    
                    MavenProject firstFailedProject = failedProjects.get(0);
                    if (!firstFailedProject.equals(sortedProjects.get(0))) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				// string functions (https://github.com/google/cel-go/blob/v0.9.0/ext/strings.go)
    				"self.val1.charAt(3) == 'k'":                       4,
    				"self.val1.indexOf('o') == 1":                      4,
    				"self.val1.indexOf('o', 2) == 2":                   4,
    				"self.val1.replace(' ', 'x') == 'Rookxtakesx👑'":    7,
    				"self.val1.replace(' ', 'x', 1) == 'Rookxtakes 👑'": 7,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Synchronized.java

        @Override
        public E get(int index) {
          synchronized (mutex) {
            return delegate().get(index);
          }
        }
    
        @Override
        public int indexOf(@CheckForNull Object o) {
          synchronized (mutex) {
            return delegate().indexOf(o);
          }
        }
    
        @Override
        public int lastIndexOf(@CheckForNull Object o) {
          synchronized (mutex) {
            return delegate().lastIndexOf(o);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
Back to top