Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 345 for indexCon (0.48 sec)

  1. src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiItem.java

            return buf.toString();
        }
    
        private static String quoteEscape(final String original) {
            String result = original;
    
            if (result.indexOf('\"') >= 0) {
                result = result.replace("\"", "\"\"");
            }
            if (result.indexOf(',') >= 0) {
                return "\"" + result + "\"";
            }
            return result;
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/FormattingValidationProblemCollectorTest.groovy

            def collector = new FormattingValidationProblemCollector("<thing>", ModelType.of(String))
            collector.add(String.class.getMethod("indexOf", String), "rule", "is not annotated with anything.")
    
            expect:
            collector.format() == '''Type java.lang.String is not a valid <thing>:
    - Method indexOf(java.lang.String) is not a valid rule method: is not annotated with anything.'''
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/CartesianList.java

      }
    
      private int getAxisIndexForProductIndex(int index, int axis) {
        return (index / axesSizeProduct[axis + 1]) % axes.get(axis).size();
      }
    
      @Override
      public int indexOf(@CheckForNull Object o) {
        if (!(o instanceof List)) {
          return -1;
        }
        List<?> list = (List<?>) o;
        if (list.size() != axes.size()) {
          return -1;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractContinuousIntegrationTest.groovy

            int waitingForChangesIndex = out.indexOf(WAITING_FOR_CHANGES_OUTPUT, startIndex)
            if (waitingForChangesIndex == -1) {
                return -1
            }
            def waitingForChangesEndIndex = waitingForChangesIndex + WAITING_FOR_CHANGES_OUTPUT.length()
            def newLine = "\n"
            int endOfLineIndex = out.indexOf(newLine, waitingForChangesEndIndex)
            if (endOfLineIndex == -1) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/javaapplication/multi/utilities/SplitUtils.java.template

    class SplitUtils {
        public static LinkedList split(String source) {
            int lastFind = 0;
            int currentFind = 0;
            LinkedList result = new LinkedList();
    
            while ((currentFind = source.indexOf(" ", lastFind)) != -1) {
                String token = source.substring(lastFind);
                if (currentFind != -1) {
                    token = token.substring(0, currentFind - lastFind);
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 980 bytes
    - Viewed (0)
  6. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcher.java

                    new SimpleClassNameSelector() : new FullQualifiedClassNameSelector();
                int firstWildcardIndex = pattern.indexOf('*');
                //https://github.com/gradle/gradle/issues/27572
                int firstParametrizeIndex = pattern.indexOf('[');
                if (firstWildcardIndex == -1) {
                    segments = splitPreserveAllTokens(pattern, '.');
                    if(firstParametrizeIndex == -1){
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/UrlComponentEncodingTesterJvm.kt

        val uriStripped = uriStrippedCodePoints.indexOf(codePointString) != -1
        if (uriStripped) {
          if (uri.toString() != component.urlString("")) {
            fail("Encoding $component $codePoint using $encoding")
          }
          return
        }
    
        // If the URI has more escaping than the HttpURL, check that the decoded values still match.
        val uriEscaped = uriEscapedCodePoints.indexOf(codePointString) != -1
        if (uriEscaped) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/snapshot/AbstractCaseVfsRelativePathTest.groovy

                VfsRelativePath.of(spec.searchedPrefix).compareToFirstSegment(child, caseSensitivity)
            } == spec.expectedIndex
            spec.children.each { child ->
                def childIndex = spec.children.indexOf(child)
                def lengthOfCommonPrefix = VfsRelativePath.of(child).lengthOfCommonPrefix(spec.searchedPrefix, caseSensitivity)
                if (childIndex == spec.expectedIndex) {
                    assert lengthOfCommonPrefix > 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/SamplesToolingApiIntegrationTest.groovy

            // Inject some additional configuration into the sample build script
            def buildFile = projectDir.file('build.gradle')
            def buildScript = buildFile.text
            def index = buildScript.indexOf('repositories {')
            assert index >= 0
            buildScript = buildScript.substring(0, index) + """
    repositories {
        maven { url "${buildContext.localRepository.toURI()}" }
    }
    run {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/api/WebApiRequest.java

            super(request);
            this.servletPath = servletPath;
        }
    
        @Override
        public String getServletPath() {
            if (getQueryString() != null && getQueryString().indexOf("SAStruts.method") != -1) {
                return super.getServletPath();
            }
            return servletPath;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top