Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for writeTime (0.16 sec)

  1. android/guava/src/com/google/common/cache/LocalCache.java

        }
    
        // The code below is exactly the same for each write entry type.
    
        volatile long writeTime = Long.MAX_VALUE;
    
        @Override
        public long getWriteTime() {
          return writeTime;
        }
    
        @Override
        public void setWriteTime(long time) {
          this.writeTime = time;
        }
    
        // Guarded By Segment.this
        @Weak ReferenceEntry<K, V> nextWrite = nullEntry();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

        }
    
        // The code below is exactly the same for each write entry type.
    
        volatile long writeTime = Long.MAX_VALUE;
    
        @Override
        public long getWriteTime() {
          return writeTime;
        }
    
        @Override
        public void setWriteTime(long time) {
          this.writeTime = time;
        }
    
        // Guarded By Segment.this
        @Weak ReferenceEntry<K, V> nextWrite = nullEntry();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  3. cmd/storage-datatypes_gen.go

    	if err != nil {
    		err = msgp.WrapError(err, "DataDir")
    		return
    	}
    	err = en.WriteBool(z.XLV1)
    	if err != nil {
    		err = msgp.WrapError(err, "XLV1")
    		return
    	}
    	err = en.WriteTime(z.ModTime)
    	if err != nil {
    		err = msgp.WrapError(err, "ModTime")
    		return
    	}
    	err = en.WriteInt64(z.Size)
    	if err != nil {
    		err = msgp.WrapError(err, "Size")
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  4. cmd/data-usage-cache_gen.go

    		err = msgp.WrapError(err, "NextCycle")
    		return
    	}
    	// write "LastUpdate"
    	err = en.Append(0xaa, 0x4c, 0x61, 0x73, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65)
    	if err != nil {
    		return
    	}
    	err = en.WriteTime(z.LastUpdate)
    	if err != nil {
    		err = msgp.WrapError(err, "LastUpdate")
    		return
    	}
    	// write "SkipHealing"
    	err = en.Append(0xab, 0x53, 0x6b, 0x69, 0x70, 0x48, 0x65, 0x61, 0x6c, 0x69, 0x6e, 0x67)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 100.8K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/CacheTest.kt

    1
    201105
    2
    
    CLEAN $urlKey ${entryMetadata.length} ${entryBody.length}
    """
        fileSystem.createDirectory(cache.directoryPath)
        writeFile(cache.directoryPath, "$urlKey.0", entryMetadata)
        writeFile(cache.directoryPath, "$urlKey.1", entryBody)
        writeFile(cache.directoryPath, "journal", journalBody)
        cache = Cache(fileSystem, cache.directory.path.toPath(), Int.MAX_VALUE.toLong())
        client =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    	data, err := json.Marshal(pcfg)
    	if err != nil {
    		return err
    	}
    	data = append(data, '\n')
    	if err := sh.writeFile(pconfigfile, data); err != nil {
    		return err
    	}
    	var sb strings.Builder
    	for i := range outfiles {
    		fmt.Fprintf(&sb, "%s\n", outfiles[i])
    	}
    	return sh.writeFile(covoutputsfile, []byte(sb.String()))
    }
    
    var objectMagic = [][]byte{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/CallTest.kt

      }
    
      private fun upload(
        chunked: Boolean,
        size: Int,
        writeSize: Int,
      ) {
        server.enqueue(MockResponse())
        executeSynchronously(
          Request(
            url = server.url("/"),
            body = requestBody(chunked, size.toLong(), writeSize),
          ),
        )
      }
    
      /** https://github.com/square/okhttp/issues/2344  */
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	procWriteConsoleW                                        = modkernel32.NewProc("WriteConsoleW")
    	procWriteFile                                            = modkernel32.NewProc("WriteFile")
    	procWriteProcessMemory                                   = modkernel32.NewProc("WriteProcessMemory")
    	procAcceptEx                                             = modmswsock.NewProc("AcceptEx")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    		hostsFileContent = managedHostsFileContent(hostIPs, hostName, hostDomainName, hostAliases)
    	}
    
    	hostsFilePerm := os.FileMode(0644)
    	if err := os.WriteFile(fileName, hostsFileContent, hostsFilePerm); err != nil {
    		return err
    	}
    	return os.Chmod(fileName, hostsFilePerm)
    }
    
    // nodeHostsFileContent reads the content of node's hosts file.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods_test.go

    func writeHostsFile(filename string, cfg string) (string, error) {
    	tmpdir, err := os.MkdirTemp("", "kubelet=kubelet_pods_test.go=")
    	if err != nil {
    		return "", err
    	}
    	return tmpdir, os.WriteFile(filepath.Join(tmpdir, filename), []byte(cfg), 0644)
    }
    
    func TestManagedHostsFileContent(t *testing.T) {
    	testCases := []struct {
    		hostIPs         []string
    		hostName        string
    		hostDomainName  string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
Back to top