Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 311 for oldest (0.15 sec)

  1. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.cc

        uint64_t now = timer_seconds_();
        while (!lra_list_.empty()) {
          auto it = block_map_.find(lra_list_.back());
          if (now - it->second->timestamp <= max_staleness_) {
            // The oldest block is not yet expired. Come back later.
            break;
          }
          // We need to make a copy of the filename here, since it could otherwise
          // be used within RemoveFile_Locked after `it` is deleted.
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Jul 16 01:39:09 GMT 2020
    - 11.1K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache_test.cc

      EXPECT_EQ(calls, 3);
      // Advance the fake timestamp so that "a" becomes stale via its first block.
      env->SetNowSeconds(now + 2);
      // The pruning thread periodically compares env->NowSeconds() with the oldest
      // block's timestamp to see if it should evict any files. At the current fake
      // timestamp of `now` + 2, file "a" is stale because its first block is stale,
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Oct 15 03:16:57 GMT 2021
    - 23.2K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/HpackTest.kt

        assertThat(hpackReader!!.headerCount).isEqualTo(0)
        assertThat(hpackReader!!.getAndResetHeaderList()).isEqualTo(
          headerEntries("custom-key", "custom-header"),
        )
      }
    
      /** Oldest entries are evicted to support newer ones.  */
      @Test
      fun writerEviction() {
        val headerBlock =
          headerEntries(
            "custom-foo",
            "custom-header",
            "custom-bar",
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 38.2K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    org.apache.maven.artifact.resolver.conflict.FarthestConflictReso org.apache.maven.artifact.resolver.conflict.ConflictResolver newest org.apache.maven.artifact.resolver.conflict.NewestConflictResolv org.apache.maven.artifact.resolver.conflict.ConflictResolver oldest org.apache.maven.artifact.resolver.conflict.OldestConflictResolv org.apache.maven.artifact.manager.WagonManager org.apache.maven.artifact.manager.DefaultWagonManager org.apache.maven.artifact.repository.ArtifactRepositoryFa org.apache.maven.artif...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 160.1K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    org.apache.maven.artifact.resolver.conflict.FarthestConflictReso org.apache.maven.artifact.resolver.conflict.ConflictResolver newest org.apache.maven.artifact.resolver.conflict.NewestConflictResolv org.apache.maven.artifact.resolver.conflict.ConflictResolver oldest org.apache.maven.artifact.resolver.conflict.OldestConflictResolv org.apache.maven.artifact.manager.WagonManager org.apache.maven.artifact.manager.DefaultWagonManager org.apache.maven.artifact.repository.ArtifactRepositoryFa org.apache.maven.artif...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 160.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * build</a>.)
         *
         * <p>Be careful when targeting an older SDK than you are building against (most commonly when
         * building for Android): Ensure that any object you pass implements the interface not just in
         * your current SDK version but also at the oldest version you support. For example, <a
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `You are,' said the King.
    
      `Nearly two miles high,' added the Queen.
    
      `Well, I shan't go, at any rate,' said Alice:  `besides,
    that's not a regular rule:  you invented it just now.'
    
      `It's the oldest rule in the book,' said the King.
    
      `Then it ought to be Number One,' said Alice.
    
      The King turned pale, and shut his note-book hastily.
    `Consider your verdict,' he said to the jury, in a low, trembling
    Plain Text
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `You are,' said the King.
    
      `Nearly two miles high,' added the Queen.
    
      `Well, I shan't go, at any rate,' said Alice:  `besides,
    that's not a regular rule:  you invented it just now.'
    
      `It's the oldest rule in the book,' said the King.
    
      `Then it ought to be Number One,' said Alice.
    
      The King turned pale, and shut his note-book hastily.
    `Consider your verdict,' he said to the jury, in a low, trembling
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbCopyUtil.java

            String path = dest.getLocator().getUNCPath();
            if ( path.length() > 1 ) {
                try {
                    dest.mkdir();
                    if ( dh.hasCapability(SmbConstants.CAP_NT_SMBS) ) {
                        dest.setPathInformation(src.getAttributes(), src.createTime(), src.lastModified(), src.lastAccess());
                    }
                    else {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:52:42 GMT 2020
    - 17.1K bytes
    - Viewed (0)
  10. cmd/bucket-replication-stats.go

    		}
    
    		for arn, stat := range bucketStat.ReplicationStats.Stats {
    			oldst := stats[arn]
    			if oldst == nil {
    				oldst = &BucketReplicationStat{
    					XferRateLrg: newXferStats(),
    					XferRateSml: newXferStats(),
    				}
    			}
    			fstats := stat.FailStats.merge(oldst.FailStats)
    			lrg := oldst.XferRateLrg.merge(*stat.XferRateLrg)
    			sml := oldst.XferRateSml.merge(*stat.XferRateSml)
    			stats[arn] = &BucketReplicationStat{
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 13.4K bytes
    - Viewed (0)
Back to top