Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 71 for Precompute (0.13 sec)

  1. src/cmd/compile/internal/types2/named.go

    				iface.complete = old.complete
    				iface.implicit = old.implicit // should be false but be conservative
    				underlying = iface
    			}
    			iface.methods = methods
    			iface.tset = nil // recompute type set with new methods
    
    			// If check != nil, check.newInterface will have saved the interface for later completion.
    			if check == nil { // golang/go#61561: all newly created interfaces must be fully evaluated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/inline/inlheur/scoring.go

    	nameFinder := newNameFinder(fn)
    
    	if debugTrace&debugTraceScoring != 0 {
    		fmt.Fprintf(os.Stderr, "=-= ScoreCalls(%v)\n", ir.FuncName(fn))
    	}
    
    	// If this is an inlinable function, use the precomputed
    	// call site table for it. If the function wasn't an inline
    	// candidate, collect a callsite table for it now.
    	var cstab CallSiteTab
    	if funcInlHeur, ok := fpmap[fn]; ok {
    		cstab = funcInlHeur.cstab
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. src/go/types/named.go

    				iface.complete = old.complete
    				iface.implicit = old.implicit // should be false but be conservative
    				underlying = iface
    			}
    			iface.methods = methods
    			iface.tset = nil // recompute type set with new methods
    
    			// If check != nil, check.newInterface will have saved the interface for later completion.
    			if check == nil { // golang/go#61561: all newly created interfaces must be fully evaluated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. pkg/dns/client/dns.go

    		if wildcard {
    			out = append(out, wcAnswers...)
    		} else {
    			out = append(out, ipAnswers...)
    		}
    	}
    	return out, hostFound
    }
    
    // This function stores the list of hostnames along with the precomputed DNS response for that hostname.
    // Most hostnames have a DNS response containing the A/AAAA records. In addition, this function stores a
    // variant of the host+ the first search domain in resolv.conf as the first query
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  5. src/crypto/internal/mlkem768/mlkem768.go

    	SharedKeySize        = 32
    	SeedSize             = 32 + 32
    )
    
    // A DecapsulationKey is the secret key used to decapsulate a shared key from a
    // ciphertext. It includes various precomputed values.
    type DecapsulationKey struct {
    	dk [DecapsulationKeySize]byte
    	encryptionKey
    	decryptionKey
    }
    
    // Bytes returns the extended encoding of the decapsulation key, according to
    // FIPS 203 (DRAFT).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  6. src/index/suffixarray/sais.go

    		return
    	}
    
    	// Establish slices indexed by text character
    	// holding character frequency and bucket-sort offsets.
    	// If there's only enough tmp for one slice,
    	// we make it the bucket offsets and recompute
    	// the character frequency each time we need it.
    	var freq, bucket []int32
    	if len(tmp) >= 2*textMax {
    		freq, bucket = tmp[:textMax], tmp[textMax:2*textMax]
    		freq[0] = -1 // mark as uninitialized
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier.go

    	if err != nil {
    		proxier.logger.Error(err, "nftables sync failed")
    		metrics.NFTablesSyncFailuresTotal.Inc()
    
    		// staleChains is now incorrect since we didn't actually flush the
    		// chains in it. We can recompute it next time.
    		clear(proxier.staleChains)
    		return
    	}
    	success = true
    
    	for name, lastChangeTriggerTimes := range endpointUpdateResult.LastChangeTriggerTimes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/buildlist.go

    //     selected at the same version or is upgraded by the dependencies of a
    //     root.
    //
    // If any module that provided a package has been upgraded above its previous
    // version, the caller may need to reload and recompute the package graph.
    //
    // To ensure that the loading process eventually converges, the caller should
    // add any needed roots from the tidy root set (without removing existing untidy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/mips/asm0.go

    		return false
    	}
    	// If p is a multi-instruction sequence with uses REGTMP inserted by
    	// the assembler in order to materialize a large constant/offset, we
    	// can restart p (at the start of the instruction sequence), recompute
    	// the content of REGTMP, upon async preemption. Currently, all cases
    	// of assembler-inserted REGTMP fall into this category.
    	// If p doesn't use REGTMP, it can be simply preempted, so we don't
    	// mark it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    	}
    	defer cacher.Stop()
    	// Update bookmarkFrequency to speed up test.
    	// Note that the frequency lower than 1s doesn't change much due to
    	// resolution how frequency we recompute.
    	cacher.bookmarkWatchers.bookmarkFrequency = time.Second
    
    	if !utilfeature.DefaultFeatureGate.Enabled(features.ResilientWatchCacheInitialization) {
    		if err := cacher.ready.wait(context.Background()); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
Back to top