Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 706 for checkdup (0.13 sec)

  1. src/encoding/json/testdata/code.json.gz

    ouches":1,"min_t":1272051317,"max_t":1272051317,"mean_t":1272051317},{"name":"bug4427-expected.checksum","kids":[],"cl_weight":0.022222222222222223,"touches":1,"min_t":1272051317,"max_t":1272051317,"mean_t":1272051317},{"name":"bug14323-expected.checksum","kids":[],"cl_weight":0.022222222222222223,"touches":1,"min_t":1272051317,"max_t":1272051317,"mean_t":1272051317},{"name":"bug20804-expected.checksum","kids":[],"cl_weight":0.022222222222222223,"touches":1,"min_t":1272051317,"max_t":1272051317,...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 25 04:02:36 UTC 2016
    - 117.6K bytes
    - Viewed (0)
  2. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/git/internal/SourceDependencyCleanupIntegrationTest.groovy

        @ToBeFixedForConfigurationCache
        def "does not remove vcs checkout on every build"() {
            succeeds("assertVersion", "-PrepoVersion=1.0")
            def checkout = checkoutDir("dep", commits.initial.id.name, repo.id)
    
            // Put new file in the checkout directory that would be deleted if Gradle
            // deletes the checkout directory
            def trashFile = checkout.file("trash")
            trashFile.text = "junk"
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. pkg/kubelet/checkpointmanager/testing/example_checkpoint_formats/v1/types.go

    type CheckpointData struct {
    	Version  string
    	Name     string
    	Data     *Data
    	Checksum checksum.Checksum
    }
    
    // MarshalCheckpoint tries to marshal the CheckpointData into JSON data.
    func (cp *CheckpointData) MarshalCheckpoint() ([]byte, error) {
    	cp.Checksum = checksum.New(*cp.Data)
    	return json.Marshal(*cp)
    }
    
    // UnmarshalCheckpoint tries to unmarshal the passed JSON data into CheckpointData.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 19 03:53:33 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/memorymanager/state/checkpoint.go

    	}
    }
    
    // MarshalCheckpoint returns marshalled checkpoint
    func (mp *MemoryManagerCheckpoint) MarshalCheckpoint() ([]byte, error) {
    	// make sure checksum wasn't set before so it doesn't affect output checksum
    	mp.Checksum = 0
    	mp.Checksum = checksum.New(mp)
    	return json.Marshal(*mp)
    }
    
    // UnmarshalCheckpoint tries to unmarshal passed bytes to checkpoint
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 12:58:53 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/cpumanager/state/checkpoint.go

    	// make sure checksum wasn't set before so it doesn't affect output checksum
    	cp.Checksum = 0
    	cp.Checksum = checksum.New(cp)
    	return json.Marshal(*cp)
    }
    
    // MarshalCheckpoint returns marshalled checkpoint in v2 format
    func (cp *CPUManagerCheckpointV2) MarshalCheckpoint() ([]byte, error) {
    	// make sure checksum wasn't set before so it doesn't affect output checksum
    	cp.Checksum = 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 01:24:22 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/hash/ChecksumHashFunction.java

        return toString;
      }
    
      /** Hasher that updates a checksum. */
      private final class ChecksumHasher extends AbstractByteHasher {
        private final Checksum checksum;
    
        private ChecksumHasher(Checksum checksum) {
          this.checksum = checkNotNull(checksum);
        }
    
        @Override
        protected void update(byte b) {
          checksum.update(b);
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesErrorHandlingIntegTest.groovy

            repositoryInteractions {
                'org.utils:api:1.2' {
                    allowAll()
                }
            }
    
            then:
            fails ':checkDeps'
            GradleContextualExecuter.configCache || failure.assertHasDescription("Execution failed for task ':checkDeps'.")
            failure.assertHasFileName("Build file '$buildFile.path'")
            failure.assertHasLineNumber(lines + 10)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  8. pkg/wasm/cache_test.go

    			getOptions: GetOptions{
    				Checksum:        cacheHitSum,
    				ResourceName:    "namespace.resource",
    				ResourceVersion: "0",
    				RequestTimeout:  time.Second * 10,
    			},
    			wantCachedModules: map[moduleKey]*cacheEntry{
    				{name: ts.URL, checksum: cacheHitSum}: {modulePath: "test.wasm"},
    			},
    			wantCachedChecksums: map[string]*checksumEntry{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/vcstest/svn/hello.txt

    handle svn
    
    mkdir db/transactions
    mkdir db/txn-protorevs
    chmod 0755 hooks/pre-revprop-change
    
    env ROOT=$PWD
    cd .checkout
    [GOOS:windows] svn checkout file:///$ROOT .
    [!GOOS:windows] svn checkout file://$ROOT .
    
    svn add hello.go
    svn commit --file MSG
    svn propset svn:author 'rsc' --revprop -r1
    svn propset svn:date '2017-09-22T01:12:45.861368Z' --revprop -r1
    
    svn update
    svn log --xml
    
    [GOOS:windows] replace '\n' '\r\n' .svn-log
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 08 19:37:03 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  10. guava-tests/benchmark/com/google/common/hash/ChecksumBenchmark.java

    import com.google.caliper.Benchmark;
    import com.google.caliper.Param;
    import java.util.Random;
    import java.util.zip.Adler32;
    import java.util.zip.CRC32;
    import java.util.zip.Checksum;
    
    /**
     * Benchmarks for comparing {@link Checksum}s and {@link HashFunction}s that wrap {@link Checksum}s.
     *
     * <p>Parameters for the benchmark are:
     *
     * <ul>
     *   <li>size: The length of the byte array to hash.
     * </ul>
     *
     * @author Colin Decker
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 13 16:19:15 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top