Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 350 for topbtn (0.17 sec)

  1. android/guava/src/com/google/common/hash/Fingerprint2011.java

      }
    
      @VisibleForTesting
      static long murmurHash64WithSeed(byte[] bytes, int offset, int length, long seed) {
        long mul = K3;
        int topBit = 0x7;
    
        int lengthAligned = length & ~topBit;
        int lengthRemainder = length & topBit;
        long hash = seed ^ (length * mul);
    
        for (int i = 0; i < lengthAligned; i += 8) {
          long loaded = load64(bytes, offset + i);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Dec 28 17:50:25 UTC 2021
    - 6.5K bytes
    - Viewed (0)
  2. platforms/core-execution/build-cache-local/src/main/java/org/gradle/caching/local/internal/DirectoryBuildCache.java

                }
            });
        }
    
        private void storeInsideLock(HashCode key, File sourceFile) {
            File targetFile = getCacheEntryFile(key);
            try {
                Files.move(sourceFile.toPath(), targetFile.toPath(), StandardCopyOption.ATOMIC_MOVE);
            } catch (FileAlreadyExistsException ignore) {
                // We already have the file in the build cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:53 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. platforms/software/signing/src/test/groovy/org/gradle/plugins/signing/SigningTasksSpec.groovy

            addSigningProperties()
            createJarTaskOutputFile('jar')
    
            when:
            Sign signTask = signing.sign(jar).first()
    
            then:
            def outputPath = jar.outputs.files.singleFile.toPath().toAbsolutePath().toString()
            signTask.signaturesByKey.containsKey(outputPath)
            signTask.signaturesByKey.get(outputPath) == signTask.singleSignature
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/files/misc/groovy/build.gradle

    tasks.register('ensureDirectory') {
        // Store target directory into a variable to avoid project reference in the configuration cache
        def directory = file("images")
    
        doLast {
            Files.createDirectories(directory.toPath())
        }
    }
    // end::mkdir-example[]
    
    // tag::move-example[]
    tasks.register('moveReports') {
        // Store the build directory into a variable to avoid project reference in the configuration cache
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 932 bytes
    - Viewed (0)
  5. platforms/jvm/jvm-services/src/integTest/groovy/org/gradle/jvm/toolchain/JavaInstallationRegistryIntegrationTest.groovy

                    .run()
            then:
            outputContains(javaHome)
        }
    
        private static String relativePath(TestFile from, String to) {
            from.toPath().relativize(new File(to).toPath()).toString()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:29:03 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/repository/TestRepositoryConnector.java

                    try {
                        Path dest = download.getPath();
                        Files.createDirectories(dest.getParent());
                        Files.copy(remoteFile.toPath(), dest);
                    } catch (IOException e) {
                        if (!remoteFile.exists()) {
                            download.setException(new ArtifactNotFoundException(download.getArtifact(), repository));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r22/BuildActionCrossVersionSpec.groovy

            when:
            File actualJar1 = withConnection { ProjectConnection connection ->
                connection.action(action1).run()
            }
            cl1.close()
            Files.delete(implJar.toPath())
    
            then:
            actualJar1 != implJar
            actualJar1.name == implJar.name
    
            when:
            builder.sourceFile('ActionImpl.java').text = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. samples/tlssurvey/src/main/kotlin/okhttp3/survey/RunSurvey.kt

    import okhttp3.survey.types.SuiteId
    import okio.FileSystem
    import okio.Path.Companion.toPath
    import org.conscrypt.Conscrypt
    
    @Suppress("ktlint:standard:property-naming")
    suspend fun main() {
      val includeConscrypt = false
    
      val client =
        OkHttpClient.Builder()
          .cache(Cache(FileSystem.SYSTEM, "build/okhttp_cache".toPath(), 100_000_000))
          .build()
    
      val sslLabsClients = SslLabsClient(client).clients()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/fs/FileSystemClient.java

        }
    
        protected FileOwnerAttributeView parseFileOwnerAttribute(final ResponseData responseData, final File file) {
            try {
                final FileOwnerAttributeView ownerAttrView = Files.getFileAttributeView(file.toPath(), FileOwnerAttributeView.class);
                if (ownerAttrView != null) {
                    final UserPrincipal owner = ownerAttrView.getOwner();
                    if (owner != null) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/templates/gradle-plugin-in-java/src/functionalTest/java/com/example/plugin/GreetingPluginFunctionalTest.java

        @Test
        public void canRunTask() throws IOException {
            // Setup the test build
            File projectDir = new File("build/functionalTest");
            Files.createDirectories(projectDir.toPath());
            writeString(new File(projectDir, "settings.gradle"), "");
            writeString(new File(projectDir, "build.gradle"),
                "plugins {" +
                    "  id('com.example.plugin.greeting')" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top