Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 446 for ends_with (0.71 sec)

  1. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

                if (lowerPath.endsWith(".html")) {
                    response.setContentType("text/html;charset=utf-8");
                } else if (lowerPath.endsWith(".css")) {
                    response.setContentType("text/css");
                } else if (lowerPath.endsWith(".eot")) {
                    response.setContentType("application/vnd.ms-fontobject");
                } else if (lowerPath.endsWith(".ico")) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:28:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactoryTest.groovy

            classpath.implementationClasspath.size() == NUM_INTERNAL_JARS + NUM_EXTERNAL_JARS
            classpath.implementationClasspath.findAll { it.toString().endsWith("-internal.jar") }.size() == NUM_INTERNAL_JARS
            classpath.implementationClasspath.findAll { it.toString().endsWith("-external.jar") }.size() == NUM_EXTERNAL_JARS
            classpath.implementationModulepath.isEmpty()
    
            0 * classDetectorFactory._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/MemoryAmount.java

                return -1;
            }
            try {
                if (normalized.endsWith("k")) {
                    return parseWithFactor(normalized, KILO_FACTOR);
                }
                if (normalized.endsWith("m")) {
                    return parseWithFactor(normalized, MEGA_FACTOR);
                }
                if (normalized.endsWith("g")) {
                    return parseWithFactor(normalized, GIGA_FACTOR);
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt

        var pattern = pattern
        if (hostname.isNullOrEmpty() ||
          hostname.startsWith(".") ||
          hostname.endsWith("..")
        ) {
          // Invalid domain name.
          return false
        }
        if (pattern.isNullOrEmpty() ||
          pattern.startsWith(".") ||
          pattern.endsWith("..")
        ) {
          // Invalid pattern.
          return false
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/util/internal/GUtilTest.groovy

            "3"        | _
            "3"        | _
        }
    
        def "can check if one CharSequence ends with another"() {
            expect:
            endsWith(a, b) == a.endsWith(b)
            endsWith(CharBuffer.wrap(a), CharBuffer.wrap(b)) == a.endsWith(b)
    
            where:
            a     | b
            "foo" | "fo"
            "foo" | "oo"
            "fo"  | "foo"
            "foo" | ""
            ""    | "foo"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/attributes/UsageCompatibilityHandler.java

            if (val.endsWith("-jars")) {
                return doConcatWithReplacement(factory, node, key, typedUsage, val.replace("-jars", ""), LibraryElements.JAR);
            } else if (val.endsWith("-classes")) {
                return doConcatWithReplacement(factory, node, key, typedUsage, val.replace("-classes", ""), LibraryElements.CLASSES);
            } else if (val.endsWith("-resources")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 25 13:20:00 UTC 2019
    - 3.6K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/LinkerOptionsFixture.groovy

        List<TestFile> linkedObjects() {
            List<TestFile> objectFiles = []
            options.text.eachLine { line ->
                def removedQuotes = line.replaceAll("\"", "")
                if (removedQuotes.endsWith(".o") || removedQuotes.endsWith(".obj")) {
                    def objectFile = new TestFile(removedQuotes)
                    objectFile.assertExists()
                    objectFiles << objectFile
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/searchlog/admin_searchlog.jsp

                                           scope="request"/>
                                    <c:if test="${!logType.endsWith('_agg')}">
                                        <c:import url="/WEB-INF/view/common/admin/crud/pagination.jsp"/>
                                    </c:if>
                                    <c:if test="${logType.endsWith('_agg')}">
                                        <div class="row">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 16K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSingleProjectIntegrationTest.groovy

            projectFile.projectConfigurations.values().each {
                assert it.macros == "TEST;foo=bar"
                assert it.includePath == filePath("src/main/headers")
                assert it.buildCommand.endsWith("gradle\" :install${it.name.capitalize()}")
                assert it.outputFile == OperatingSystem.current().getExecutableName("build/install/main/${it.name.toLowerCase()}/lib/app")
            }
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/ToolingApiIdeaModelCrossVersionSpec.groovy

            lib.file.exists()
            lib.file.path.endsWith('coolLib-1.0.jar')
    
            lib.source.exists()
            lib.source.path.endsWith('coolLib-1.0-sources.jar')
    
            lib.javadoc.exists()
            lib.javadoc.path.endsWith('coolLib-1.0-javadoc.jar')
    
            lib.scope.scope == 'TEST'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top