Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for newTask (0.19 sec)

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

           */
    
          int newCount = count;
          AtomicReferenceArray<ReferenceEntry<K, V>> newTable = newEntryArray(oldCapacity << 1);
          threshold = newTable.length() * 3 / 4;
          int newMask = newTable.length() - 1;
          for (int oldIndex = 0; oldIndex < oldCapacity; ++oldIndex) {
            // We need to guarantee that any existing reads of old Map can
            // proceed. So we cannot yet null out each bin.
    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

           */
    
          int newCount = count;
          AtomicReferenceArray<ReferenceEntry<K, V>> newTable = newEntryArray(oldCapacity << 1);
          threshold = newTable.length() * 3 / 4;
          int newMask = newTable.length() - 1;
          for (int oldIndex = 0; oldIndex < oldCapacity; ++oldIndex) {
            // We need to guarantee that any existing reads of old Map can
            // proceed. So we cannot yet null out each bin.
    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. src/cmd/go/internal/work/exec.go

    	writeActionGraph()
    }
    
    // buildActionID computes the action ID for a build action.
    func (b *Builder) buildActionID(a *Action) cache.ActionID {
    	p := a.Package
    	h := cache.NewHash("build " + p.ImportPath)
    
    	// Configuration independent of compiler toolchain.
    	// Note: buildmode has already been accounted for in buildGcflags
    	// and should not be inserted explicitly. Most buildmodes use the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. src/crypto/sha512/sha512_test.go

    	tests := []struct {
    		name    string
    		newHash func() hash.Hash
    		golden  []sha512Test
    	}{
    		{"512/224", New512_224, golden224},
    		{"512/256", New512_256, golden256},
    		{"384", New384, golden384},
    		{"512", New, golden512},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			for _, test := range tt.golden {
    				h := tt.newHash()
    				h2 := tt.newHash()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:17:08 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    // will be fixed to change variable type as suitable.
    
    type SockaddrGen [24]byte
    
    type InterfaceInfo struct {
    	Flags            uint32
    	Address          SockaddrGen
    	BroadcastAddress SockaddrGen
    	Netmask          SockaddrGen
    }
    
    type IpAddressString struct {
    	String [16]byte
    }
    
    type IpMaskString IpAddressString
    
    type IpAddrString struct {
    	Next      *IpAddrString
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
Back to top