Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for Precompute (0.25 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/reflect/value.go

    				switch st.kind {
    				case abiStepIntReg:
    					offset := add(s, st.offset, "precomputed value offset")
    					intFromReg(&regArgs, st.ireg, st.size, offset)
    				case abiStepPointer:
    					s := add(s, st.offset, "precomputed value offset")
    					*((*unsafe.Pointer)(s)) = regArgs.Ptrs[st.ireg]
    				case abiStepFloatReg:
    					offset := add(s, st.offset, "precomputed value offset")
    					floatFromReg(&regArgs, st.freg, st.size, offset)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. pilot/pkg/model/telemetry.go

    		return nil
    	}
    
    	key := loggingKey{
    		telemetryKey: ct.telemetryKey,
    		Class:        class,
    	}
    	t.mu.Lock()
    	defer t.mu.Unlock()
    	precomputed, ok := t.computedLoggingConfig[key]
    	if ok {
    		return precomputed
    	}
    
    	providers := mergeLogs(ct.Logging, t.meshConfig, workloadMode(class))
    	cfgs := make([]LoggingConfig, 0, len(providers))
    	for p, v := range providers {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 18:14:09 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/controller.go

    			// this can happen when an immediate delete after update
    			// the delete event can be handled later
    			return nil
    		}
    		return handler(prev, curr, event)
    	}
    	// Pre-build our metric types to avoid recompute them on each event
    	adds := k8sEvents.With(typeTag.Value(otype), eventTag.Value("add"))
    	updatesames := k8sEvents.With(typeTag.Value(otype), eventTag.Value("updatesame"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            if (incomingEdges.isEmpty()) {
                return;
            }
            // Cleaning has to be done on a copied collection because of the recompute happening on selector removal
            List<EdgeState> remainingIncomingEdges = ImmutableList.copyOf(incomingEdges);
            clearIncomingEdges();
            for (EdgeState incomingEdge : remainingIncomingEdges) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
Back to top