Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 71 for Precompute (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/internal/trace/mud.go

    		if r < thresh {
    			d.trackSum += area
    		} else {
    			d.trackSum += area * (thresh - l) / (r - l)
    		}
    		if d.trackSum >= d.trackMass {
    			// The tracked mass now falls in a different
    			// bucket. Recompute the inverse cumulative sum.
    			d.setTrackMass(d.trackMass)
    		}
    	}
    }
    
    // setTrackMass sets the mass to track the inverse cumulative sum for.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. guava-gwt/src-super/com/google/common/base/super/com/google/common/base/Platform.java

    /** @author Jesse Wilson */
    final class Platform {
      static CharMatcher precomputeCharMatcher(CharMatcher matcher) {
        // CharMatcher.precomputed() produces CharMatchers that are maybe a little
        // faster (and that's debatable), but definitely more memory-hungry. We're
        // choosing to turn .precomputed() into a no-op in GWT, because it doesn't
        // seem to be a worthwhile tradeoff in a browser.
        return matcher;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 27 13:56:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. src/cmd/internal/pgo/serialize.go

    		written += int64(n)
    		if err != nil {
    			return written, err
    		}
    	}
    
    	if err := bw.Flush(); err != nil {
    		return written, err
    	}
    
    	// No need to serialize TotalWeight, it can be trivially recomputed
    	// during parsing.
    
    	return written, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/pod.go

    	if pc.c != nil {
    		if pc.c.opts.XDSUpdater != nil {
    			ip := pod.Status.PodIP
    			pc.c.opts.XDSUpdater.ProxyUpdate(pc.c.Cluster(), ip)
    		}
    		if isPodUpdate {
    			// Recompute service(s) due to pod label change.
    			// If it is a new pod, no need to recompute, as it yet computed for the first time yet.
    			pc.c.recomputeServiceForPod(pod)
    		}
    	}
    }
    
    func (pc *PodCache) getPodKeys(addr string) []types.NamespacedName {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildEnvironment.kt

     *          since this whole object is kept in the classloader between builds.
     *          Anything that changes must be in a val with a get() method that recomputes the value each time.
     */
    object BuildEnvironment {
    
        /**
         * A selection of environment variables injected into the environment by the `codeql-env.sh` script.
         */
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 16:58:31 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/macho_update_uuid.go

    	rv[8] |= 0xc0
    
    	return rv
    }
    
    // machoRewriteUuid copies over the contents of the Macho executable
    // exef into the output file outexe, and in the process updates the
    // LC_UUID command to a new value recomputed from the Go build id.
    func machoRewriteUuid(ctxt *Link, exef *os.File, exem *macho.File, outexe string) error {
    	outf, err := os.OpenFile(outexe, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0755)
    	if err != nil {
    		return err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top