Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MAC (0.1 sec)

  1. cmd/encryption-v1.go

    		return err
    	}
    
    	var partIDbin [4]byte
    	binary.LittleEndian.PutUint32(partIDbin[:], uint32(partID)) // marshal part ID
    
    	mac := hmac.New(sha256.New, objectEncryptionKey) // derive part encryption key from part ID and object key
    	mac.Write(partIDbin[:])
    	partEncryptionKey := mac.Sum(nil)
    
    	// Limit the reader, so the decryptor doesn't receive bytes
    	// from the next part (different DARE stream)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/build.gradle

            if (!OperatingSystem.current().macOsX) {
                excludeTestsMatching "org.gradle.docs.samples.*.building-swift-*.sample"
            }
            // We don't maintain Java 7 on Windows and Mac
            if (OperatingSystem.current().windows || OperatingSystem.current().macOsX) {
                excludeTestsMatching "*java7CrossCompilation.sample"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  3. src/time/tick_test.go

    		go func() {
    			defer wg.Done()
    			Sleep(10 * Microsecond)
    		}()
    	}
    	for range count {
    		Sleep(1 * Microsecond)
    	}
    
    	// Give ourselves 60 seconds to complete.
    	// This used to reliably fail on a Mac M3 laptop,
    	// which needed 77 seconds.
    	// Trybots are slower, so it will fail even more reliably there.
    	// With the fix, the code runs in under a second.
    	done := make(chan bool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top