Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for hashed (0.1 sec)

  1. src/cmd/link/internal/loader/loader.go

    type loadState struct {
    	l            *Loader
    	hashed64Syms map[uint64]symAndSize         // short hashed (content-addressable) symbols, keyed by content hash
    	hashedSyms   map[goobj.HashType]symAndSize // hashed (content-addressable) symbols, keyed by content hash
    
    	linknameVarRefs []linknameVarRef // linknamed var refererces
    }
    
    type linknameVarRef struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. cmd/test-utils_test.go

    // Sign given request using Signature V4.
    func signStreamingRequest(req *http.Request, accessKey, secretKey string, currTime time.Time) (string, error) {
    	// Get hashed payload.
    	hashedPayload := req.Header.Get("x-amz-content-sha256")
    	if hashedPayload == "" {
    		return "", fmt.Errorf("Invalid hashed payload")
    	}
    
    	// Set x-amz-date.
    	req.Header.Set("x-amz-date", currTime.Format(iso8601Format))
    
    	// Get header map.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  3. src/crypto/tls/common.go

    	hashed := sha512.Sum512(b[:])
    	// The first 16 bytes of the hash used to be exposed on the wire as a ticket
    	// prefix. They MUST NOT be used as a secret. In the future, it would make
    	// sense to use a proper KDF here, like HKDF with a fixed salt.
    	const legacyTicketKeyNameLen = 16
    	copy(key.aesKey[:], hashed[legacyTicketKeyNameLen:])
    	copy(key.hmacKey[:], hashed[legacyTicketKeyNameLen+len(key.aesKey):])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_messages.go

    }
    
    type transcriptHash interface {
    	Write([]byte) (int, error)
    }
    
    // transcriptMsg is a helper used to hash messages which are not hashed when
    // they are read from, or written to, the wire. This is typically the case for
    // messages which are either not sent, or need to be hashed out of order from
    // when they are read/written.
    //
    // For most messages, the message is marshalled using their marshal method,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/runtime/asm_amd64.s

    // Arguments are passed in registers, but the space for those arguments are allocated
    // in the caller's stack frame. These stubs write the args into that stack space and
    // then tail call to the corresponding runtime handler.
    // The tail call makes these stubs disappear in backtraces.
    // Defined as ABIInternal since they do not use the stack-based Go ABI.
    TEXT runtime·panicIndex<ABIInternal>(SB),NOSPLIT,$0-16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

            fails 'checkDeps'
            failure.assertHasCause("Could not resolve group:projectA:1.+.")
            failure.assertHasCause("No cached version listing for group:projectA:1.+ available for offline mode.")
            failure.assertHasCause("Could not resolve group:projectB:latest.release.")
            failure.assertHasCause("No cached version listing for group:projectB:latest.release available for offline mode.")
    
            when:
            repositoryInteractions {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  7. src/runtime/map.go

    		fatal("concurrent map writes")
    	}
    	hash := t.Hasher(key, uintptr(h.hash0))
    
    	// Set hashWriting after calling t.hasher, since t.hasher may panic,
    	// in which case we have not actually done a write.
    	h.flags ^= hashWriting
    
    	if h.buckets == nil {
    		h.buckets = newobject(t.Bucket) // newarray(t.Bucket, 1)
    	}
    
    again:
    	bucket := hash & bucketMask(h.B)
    	if h.growing() {
    		growWork(t, h, bucket)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/test.go

    		fmt.Fprintf(os.Stderr, "testcache: %s: test ID %x => input ID %x => %x\n", a.Package.ImportPath, testID, testInputsID, testAndInputKey(testID, testInputsID))
    	}
    
    	// Parse cached result in preparation for changing run time to "(cached)".
    	// If we can't parse the cached result, don't use it.
    	data, entry, err = cache.GetBytes(cache.Default(), testAndInputKey(testID, testInputsID))
    	if len(data) == 0 || data[len(data)-1] != '\n' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

          self._emit_with_loc('\n{} = arith.index_cast {} : index to i64'.format(
              casted, value))
          return casted, TFRTypes.I64
        else:
          return value, ty
    
      def _i64_to_index(self, value, ty):
        if ty == TFRTypes.I64:
          casted = self._ssa_name('casted')
          self._emit_with_loc('\n{} = arith.index_cast {} : i64 to index'.format(
              casted, value))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  10. pkg/kubelet/stats/cri_stats_provider_test.go

    		// Before the update, the cached value should be nil
    		cached := provider.getContainerUsageNanoCores(test.stats)
    		assert.Nil(t, cached)
    
    		// Update the cache and get the latest value.
    		real := provider.getAndUpdateContainerUsageNanoCores(test.stats)
    		assert.Equal(t, test.expected, real, test.desc)
    
    		// After the update, the cached value should be up-to-date
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
Back to top