Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 124 for Precompute (0.13 sec)

  1. src/crypto/tls/handshake_server_tls13.go

    		c.sendAlert(alertInternalError)
    		return err
    	}
    
    	c.ekm = hs.suite.exportKeyingMaterial(hs.masterSecret, hs.transcript)
    
    	// If we did not request client certificates, at this point we can
    	// precompute the client finished and roll the transcript forward to send
    	// session tickets in our first flight.
    	if !hs.requestClientCert() {
    		if err := hs.sendSessionTickets(); err != nil {
    			return err
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. pkg/kube/inject/inject_test.go

    			continue
    		}
    		want := f.Name() + ".injected"
    		if alreadyTested.Contains(want) {
    			continue
    		}
    		cases = append(cases, testCase{in: f.Name(), want: want})
    	}
    
    	// Precompute injection settings. This may seem like a premature optimization, but due to the size of
    	// YAMLs, with -race this was taking >10min in some cases to generate!
    	if util.Refresh() {
    		cleanupOldFiles(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/CharMatcher.java

       * worthwhile only if the precomputed matcher is queried many thousands of times.
       *
       * <p>This method has no effect (returns {@code this}) when called in GWT: it's unclear whether a
       * precomputed matcher is faster, but it certainly consumes more memory, which doesn't seem like a
       * worthwhile tradeoff in a browser.
       */
      public CharMatcher precomputed() {
        return Platform.precomputeCharMatcher(this);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. src/crypto/internal/bigmod/nat.go

    		rr.montgomeryMul(rr, rr, m)
    		i--
    		if logR>>i&1 != 0 {
    			rr.Add(rr, m)
    		}
    	}
    
    	return rr
    }
    
    // minusInverseModW computes -x⁻¹ mod _W with x odd.
    //
    // This operation is used to precompute a constant involved in Montgomery
    // multiplication.
    func minusInverseModW(x uint) uint {
    	// Every iteration of this loop doubles the least-significant bits of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/CharMatcher.java

       * worthwhile only if the precomputed matcher is queried many thousands of times.
       *
       * <p>This method has no effect (returns {@code this}) when called in GWT: it's unclear whether a
       * precomputed matcher is faster, but it certainly consumes more memory, which doesn't seem like a
       * worthwhile tradeoff in a browser.
       */
      public CharMatcher precomputed() {
        return Platform.precomputeCharMatcher(this);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. pilot/pkg/model/sidecar.go

    	}, "", "  ")
    }
    
    // IstioEgressListenerWrapper is a wrapper for
    // networking.IstioEgressListener object. The wrapper provides performance
    // optimizations as it allows us to precompute and store the list of
    // services/virtualServices that apply to this listener.
    type IstioEgressListenerWrapper struct {
    	// The actual IstioEgressListener api object from the Config. It can be
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  7. src/crypto/sha1/sha1block_amd64.s

    // From http://software.intel.com/en-us/articles
    // (look for improving-the-performance-of-the-secure-hash-algorithm-1)
    // This implementation is 2x unrolled, and interleaves vector instructions,
    // used to precompute W, with scalar computation of current round
    // for optimal scheduling.
    
    // Trivial helper macros.
    #define UPDATE_HASH(A,TB,C,D,E) \
    	ADDL	(R9), A \
    	MOVL	A, (R9) \
    	ADDL	4(R9), TB \
    	MOVL	TB, 4(R9) \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  8. pkg/kube/krt/recomputetrigger.go

    	return &RecomputeTrigger{inner: inner, i: atomic.NewInt32(0)}
    }
    
    // TriggerRecomputation tells all dependants to recompute
    func (r *RecomputeTrigger) TriggerRecomputation() {
    	v := r.i.Inc()
    	r.inner.Set(ptr.Of(v))
    }
    
    // MarkDependant marks the given context as depending on this trigger. This registers it to be recomputed when TriggerRecomputation
    // is called.
    func (r *RecomputeTrigger) MarkDependant(ctx HandlerContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 05:51:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. pilot/pkg/model/push_context.go

    type PushRequest struct {
    	// Full determines whether a full push is required or not. If false, an incremental update will be sent.
    	// Incremental pushes:
    	// * Do not recompute the push context
    	// * Do not recompute proxy state (such as ServiceInstances)
    	// * Are not reported in standard metrics such as push time
    	// As a result, configuration updates should never be incremental. Generally, only EDS will set this, but
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier.go

    		if !ok {
    			proxier.logger.Error(nil, "Failed to cast serviceInfo", "servicePortName", svcPortName)
    			continue
    		}
    
    		protocol := strings.ToLower(string(svcInfo.Protocol()))
    		// Precompute svcNameString; with many services the many calls
    		// to ServicePortName.String() show up in CPU profiles.
    		svcPortNameString := svcPortName.String()
    
    		// Handle traffic that loops back to the originator with SNAT.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
Back to top