Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 72 for hashOf (0.26 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/gradle_daemon.adoc

    === Memory Caching
    
    The Daemon enables in-memory caching across builds.
    This includes classes for plugins and build scripts.
    
    Similarly, the Daemon maintains in-memory caches of build data, such as the hashes of task inputs and outputs for incremental builds.
    
    == Performance Monitoring
    
    Gradle actively monitors heap usage to detect memory leaks in the Daemon.
    
    When a memory leak exhausts available heap space, the Daemon:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:43:14 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/sym.go

    	var hash map[string]*LSym
    	switch abi {
    	case ABI0:
    		hash = ctxt.hash
    	case ABIInternal:
    		hash = ctxt.funchash
    	default:
    		panic("unknown ABI")
    	}
    
    	ctxt.hashmu.Lock()
    	s := hash[name]
    	if s == nil {
    		s = &LSym{Name: name}
    		s.SetABI(abi)
    		hash[name] = s
    		if init != nil {
    			init(s)
    		}
    	}
    	ctxt.hashmu.Unlock()
    	return s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/link.go

    	Bso                *bufio.Writer
    	Pathname           string
    	Pkgpath            string           // the current package's import path
    	hashmu             sync.Mutex       // protects hash, funchash
    	hash               map[string]*LSym // name -> sym mapping
    	funchash           map[string]*LSym // name -> sym mapping for ABIInternal syms
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

            result.assertTasksExecutedAndNotSkipped(':update1', ':update2', ':verify1', ':verify2')
        }
    
        @ToBeFixedForConfigurationCache(skip = INVESTIGATE)
        def "when two identical archives have the same hashes and same decompression cache entry is reused"() {
            given: "2 archive files"
            createTar('test1.tar') {
                subdir1 {
                    file('file.txt').text = 'original text 1'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  5. src/go/build/deps_test.go

    	< encoding/ascii85, encoding/csv, encoding/gob, encoding/hex,
    	  encoding/json, encoding/pem, encoding/xml, mime;
    
    	# hashes
    	io
    	< hash
    	< hash/adler32, hash/crc32, hash/crc64, hash/fnv;
    
    	# math/big
    	FMT, math/rand
    	< math/big;
    
    	# compression
    	FMT, encoding/binary, hash/adler32, hash/crc32, sort
    	< compress/bzip2, compress/flate, compress/lzw, internal/zstd
    	< archive/zip, compress/gzip, compress/zlib;
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    	// must match one of these values. Specifying an empty set disables root CA
    	// pinning, which can be unsafe. Each hash is specified as "<type>:<value>",
    	// where the only currently supported type is "sha256". This is a hex-encoded
    	// SHA-256 hash of the Subject Public Key Info (SPKI) object in DER-encoded
    	// ASN.1. These hashes can be calculated using, for example, OpenSSL.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client_tls13.go

    			return c.sendAlert(alertInternalError)
    		}
    		if pskSuite.hash == hs.suite.hash {
    			// Update binders and obfuscated_ticket_age.
    			ticketAge := c.config.time().Sub(time.Unix(int64(hs.session.createdAt), 0))
    			hello.pskIdentities[0].obfuscatedTicketAge = uint32(ticketAge/time.Millisecond) + hs.session.ageAdd
    
    			transcript := hs.suite.hash.New()
    			transcript.Write([]byte{typeMessageHash, 0, 0, uint8(len(chHash))})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  8. src/internal/abi/type.go

    func (t *InterfaceType) NumMethod() int { return len(t.Methods) }
    
    type MapType struct {
    	Type
    	Key    *Type
    	Elem   *Type
    	Bucket *Type // internal type representing a hash bucket
    	// function for hashing keys (ptr to key, seed) -> hash
    	Hasher     func(unsafe.Pointer, uintptr) uintptr
    	KeySize    uint8  // size of key slot
    	ValueSize  uint8  // size of elem slot
    	BucketSize uint16 // size of bucket
    	Flags      uint32
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/upgrade/staticpods_test.go

    	pkiutiltesting "k8s.io/kubernetes/cmd/kubeadm/app/util/pkiutil/testing"
    	testutil "k8s.io/kubernetes/cmd/kubeadm/test"
    )
    
    const (
    	waitForHashes        = "wait-for-hashes"
    	waitForHashChange    = "wait-for-hash-change"
    	waitForPodsWithLabel = "wait-for-pods-with-label"
    )
    
    var testConfiguration = fmt.Sprintf(`
    apiVersion: %s
    kind: InitConfiguration
    nodeRegistration:
      name: foo
    localAPIEndpoint:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 32K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// `handSize` is a small positive number that configures the
    	// shuffle sharding of requests into queues.  When enqueuing a request
    	// at this priority level the request's flow identifier (a string
    	// pair) is hashed and the hash value is used to shuffle the list
    	// of queues and deal a hand of the size specified here.  The
    	// request is put into one of the shortest queues in that hand.
    	// `handSize` must be no larger than `queues`, and should be
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top