Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 879 for StartsWith (0.15 sec)

  1. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/jansi/DefaultJansiRuntimeResolver.java

            String name = System.getProperty("os.name").toLowerCase(Locale.ROOT).trim();
    
            if (name.startsWith("linux")) {
                return LINUX.getIdentifier();
            }
            if (name.startsWith("mac os x")) {
                return MAC_OS_X.getIdentifier();
            }
            if (name.startsWith("win")) {
                return WINDOWS.getIdentifier();
            }
            return name.replaceAll("\\W+", "_");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/DeprecationLoggerTest.groovy

            then:
            events.size() == 2
            events[0].message.startsWith('nag')
            events[1].message.startsWith('nag')
        }
    
        def "does not log warning while disabled with factory"() {
            given:
            Factory<String> factory = Mock(Factory)
    
            when:
            def result = DeprecationLogger.whileDisabled(factory)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 15:06:10 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/go/GoAction.java

                return redirect(ErrorAction.class);
            }
        }
    
        protected boolean isFileSystemPath(final String url) {
            return url.startsWith("file:") || url.startsWith("smb:") || url.startsWith("smb1:") || url.startsWith("ftp:")
                    || url.startsWith("storage:");
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. hack/update-kustomize.sh

    LATEST_CONFIG=$(echo "${PUBLISHED_RELEASES}" | jq -r '[ .[] | select(.tag_name | startswith("cmd/config/v")) ] | sort_by(.published_at) | last | .tag_name | scan("\/(v[\\d.]+)") | .[0]')
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:40:04 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/graph/TestUtil.java

      static void assertNodeNotInGraphErrorMessage(Throwable throwable) {
        assertThat(throwable).hasMessageThat().startsWith(NODE_STRING);
        assertThat(throwable).hasMessageThat().contains(ERROR_ELEMENT_NOT_IN_GRAPH);
      }
      
      static void assertEdgeNotInGraphErrorMessage(Throwable throwable) {
        assertThat(throwable).hasMessageThat().startsWith(EDGE_STRING);
        assertThat(throwable).hasMessageThat().contains(ERROR_ELEMENT_NOT_IN_GRAPH);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/test/groovy/org/gradle/docs/releasenotes/StaticReleaseNotesTest.groovy

            def ids = renderedDocument.allElements.findAll { it.id() }*.id()
            def anchors = links.findAll { it.attr("name") }*.attr("name")
    
            links.each {
                def href = it.attr("href")
                if (href.startsWith("#")) {
                    def target = href[1..-1]
                    if (!ids.contains(target) && !anchors.contains(target)) {
                        brokenAnchorLinks << target
                    }
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/CancellationSpec.groovy

            }
            assertHasBuildFailedLogging()
        }
    
        private Matcher<String> cancelledMessageMatcher(String taskPath) {
            CoreMatchers.anyOf(CoreMatchers.startsWith("Build cancelled while executing task '${taskPath}'"), CoreMatchers.startsWith("Build cancelled during executing task '${taskPath}'"))
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  8. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/codenarc/CodeNarcPluginVersionIntegrationTest.groovy

            fails("check")
            failure.assertThatCause(both(startsWith("CodeNarc rule violations were found. See the report at:")).and(endsWith("xml")))
        }
    
        def "analyze bad code"() {
            badCode()
    
            expect:
            fails("check")
            failure.assertHasDescription("Execution failed for task ':codenarcTest'.")
            failure.assertThatCause(startsWith("CodeNarc rule violations were found. See the report at:"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/PropertyAccessorType.java

            return methodName.startsWith("get") && methodName.length() > 3;
        }
    
        private static boolean isIsGetterName(String methodName) {
            return methodName.startsWith("is") && methodName.length() > 2;
        }
    
        private static boolean isSetterName(String methodName) {
            return methodName.startsWith("set") && methodName.length() > 3;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/profile/JdkVersionProfileActivator.java

            if (requiredJdkRange.startsWith("!")) {
                return !currentJavaVersion.startsWith(requiredJdkRange.substring(1));
            } else if (isRange(requiredJdkRange)) {
                return isInRange(currentJavaVersion, getRange(requiredJdkRange));
            } else {
                return currentJavaVersion.startsWith(requiredJdkRange);
            }
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top