Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 549 for indexFor (0.16 sec)

  1. 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)
  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. pkg/controller/volume/ephemeral/controller.go

    	podLister corelisters.PodLister
    	podSynced cache.InformerSynced
    
    	// podIndexer has the common PodPVC indexer indexer installed To
    	// limit iteration over pods to those of interest.
    	podIndexer cache.Indexer
    
    	// recorder is used to record events in the API server
    	recorder record.EventRecorder
    
    	queue workqueue.TypedRateLimitingInterface[string]
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/form/FormScheme.java

                } else {
                    final StringBuilder buf = new StringBuilder(100);
                    buf.append(tokenUrl);
                    if (StringUtil.isNotBlank(tokenReqParams)) {
                        if (tokenUrl.indexOf('?') >= 0) {
                            buf.append('&');
                        } else {
                            buf.append('?');
                        }
                        buf.append(tokenReqParams);
                    }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftExternalSourceDependenciesIntegrationTest.groovy

        def setup() {
            requireSwiftToolChain()
        }
    
        @ToBeFixedForConfigurationCache
        def "adds source dependencies Swift module of main component to Xcode indexer search path"() {
            def fixture = new SwiftAppWithLibrary()
    
            given:
            buildTestFixture.withBuildInSubDir()
            singleProjectBuild("greeter") {
                buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/http/NtlmServlet.java

                    int index = auth.indexOf(':');
                    String user = ( index != -1 ) ? auth.substring(0, index) : auth;
                    String password = ( index != -1 ) ? auth.substring(index + 1) : "";
                    index = user.indexOf('\\');
                    if ( index == -1 )
                        index = user.indexOf('/');
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7.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