Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 146 for ends_with (0.26 sec)

  1. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

          assertThat(urls.get(0).getPath()).endsWith("/relative/path/to/some.jar");
    
          assertThat(urls.get(1)).isEqualTo(new URL("file:///absolute/path/to/some.jar"));
    
          assertThat(urls.get(2).getProtocol()).isEqualTo("file");
          assertThat(urls.get(2).getAuthority()).isNull();
          assertThat(urls.get(2).getPath()).endsWith("/relative/path/to/class/root");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 26 14:02:27 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/compile.cc

      }
    
      return CompileXla(client, computation, aot_opts, compile_result);
    }
    
    static Status ReadProtoFile(const string& fname, protobuf::Message* proto) {
      if (absl::EndsWith(fname, ".pbtxt")) {
        return ReadTextProto(Env::Default(), fname, proto);
      } else {
        return ReadBinaryProto(Env::Default(), fname, proto);
      }
    }
    
    static absl::once_flag targets_init;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 08:28:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheEncryptionIntegrationTest.groovy

        }
    
        private TestFile findRequiredKeystoreFile(boolean required = true) {
            def keyStoreDirFiles = keyStoreDir.allDescendants()
            def keyStorePath = keyStoreDirFiles.find { it.endsWith('gradle.keystore') }
            assert !required || keyStorePath != null
            return keyStorePath?.with { keyStoreDir.file(keyStorePath) }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelPath.java

            if (path.startsWith(SEPARATOR)) {
                throw new InvalidPathException(String.format("Model path '%s' cannot start with name separator '%s'.", path, SEPARATOR), null);
            }
    
            if (path.endsWith(SEPARATOR)) {
                throw new InvalidPathException(String.format("Model path '%s' cannot end with name separator '%s'.", path, SEPARATOR), null);
            }
    
            String[] names = splitPath(path);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

            then:
            verifyAll(receivedProblem) {
                severity == Severity.ERROR
                fqid == 'compilation:java:initialization-failed'
                details.endsWith('invalid flag: -invalid-flag')
                exception.message.endsWith('invalid flag: -invalid-flag')
            }
        }
    
        /**
         * Assert if a compilation problems looks like how we expect it to look like.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/Ear.java

            if (deploymentDescriptor != null && details.getPath().lastIndexOf("/") <= 0) {
                EarModule module;
                if (details.getPath().toLowerCase().endsWith(".war")) {
                    module = new DefaultEarWebModule(details.getPath(), details.getPath().substring(0, details.getPath().lastIndexOf(".")));
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/io/TraversalUtil.java

         */
        public static Traverser getTraverser(final String rootDir) {
            assertArgumentNotEmpty("rootDir", rootDir);
    
            final URL url = ResourceUtil.getResource(rootDir.endsWith("/") ? rootDir : rootDir + '/');
            return getTraverser(url, null, rootDir);
        }
    
        /**
         * 指定のルートパッケージを基点とする、クラスやリソースの集まりを扱う{@link Traverser}の配列を返します。
         *
         * @param rootPackage
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar

    notNullValue(); public static Matcher notNullValue(Class); public static Matcher sameInstance(Object); public static Matcher theInstance(Object); public static Matcher containsString(String); public static Matcher startsWith(String); public static Matcher endsWith(String); } org/hamcrest/CustomMatcher.class package org.hamcrest; public abstract synchronized class CustomMatcher extends BaseMatcher { private final String fixedDescription; public void CustomMatcher(String); public final void describeTo(Description);...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 44K bytes
    - Viewed (0)
  9. maven-artifact/src/main/java/org/apache/maven/artifact/DefaultArtifact.java

            this.artifactId = artifactId;
        }
    
        @Override
        public boolean isSnapshot() {
            return getBaseVersion() != null
                    && (getBaseVersion().endsWith(SNAPSHOT_VERSION)
                            || getBaseVersion().equals(LATEST_VERSION));
        }
    
        @Override
        public void setResolved(boolean resolved) {
            this.resolved = resolved;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 19:20:54 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/compilerFacility/AbstractCompilerFacilityTest.kt

                append(diagnostic.defaultMessage)
            }
        }
    
        private fun dumpClassFiles(outputFiles: List<KaCompiledFile>): String {
            val classes = outputFiles
                .filter { it.path.endsWith(".class", ignoreCase = true) }
                .also { check(it.isNotEmpty()) }
                .sortedBy { it.path }
                .map { outputFile ->
                    val classReader = ClassReader(outputFile.content)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
Back to top