Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 524 for unprocessed (0.15 sec)

  1. pilot/pkg/serviceregistry/kube/controller/serviceexportcache_test.go

    	createEndpoints(t, c, serviceExportName, serviceExportNamespace, []string{"tcp-port"}, []string{serviceExportPodIP}, nil, nil)
    
    	ec := c.exports.(*serviceExportCacheImpl)
    	// Wait for the resources to be processed by the controller.
    	retry.UntilOrFail(t, func() bool {
    		if svc := ec.GetService(ec.serviceHostname()); svc == nil {
    			return false
    		}
    		inst := ec.getEndpoint(c.Endpoints)
    		return inst != nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/dispatch/Dispatch.java

     */
    public interface Dispatch<T> {
        /**
         * Dispatches the next message. Blocks until the messages has been accepted but generally does not wait for the
         * message to be processed. Delivery guarantees are implementation specific.
         *
         * @param message The message.
         */
        void dispatch(T message);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. src/internal/bytealg/index_s390x.go

    	if cpu.S390X.HasVX {
    		MaxLen = 64
    	}
    }
    
    // Cutover reports the number of failures of IndexByte we should tolerate
    // before switching over to Index.
    // n is the number of bytes processed so far.
    // See the bytes.Index implementation for details.
    func Cutover(n int) int {
    	// 1 error per 8 characters, plus a few slop to start.
    	return (n + 16) / 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Mar 04 19:49:44 UTC 2018
    - 1011 bytes
    - Viewed (0)
  4. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingListener.java

     *
     */
    public interface ModelBuildingListener {
    
        /**
         * Notifies the listener that the model has been constructed to the extent where build extensions can be processed.
         *
         * @param event The details about the event.
         */
        void buildExtensionsAssembled(ModelBuildingEvent event);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. src/cmd/internal/pgo/pgo.go

    // Package pgo contains the compiler-agnostic portions of PGO profile handling.
    // Notably, parsing pprof profiles and serializing/deserializing from a custom
    // intermediate representation.
    package pgo
    
    // Profile contains the processed data from the PGO profile.
    type Profile struct {
    	// TotalWeight is the aggregated edge weights across the profile. This
    	// helps us determine the percentage threshold for hot/cold
    	// partitioning.
    	TotalWeight int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/ingress/controller.go

    	item := config.NamespacedName(ing)
    	if shouldProcess {
    		// record processed ingress
    		c.mutex.Lock()
    		c.ingresses[item] = ing
    		c.mutex.Unlock()
    		return true
    	}
    
    	c.mutex.Lock()
    	_, preProcessed := c.ingresses[item]
    	// previous processed but should not currently, delete it
    	if preProcessed && !shouldProcess {
    		delete(c.ingresses, item)
    	} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/policy/v1beta1/generated.proto

      optional int64 observedGeneration = 1;
    
      // DisruptedPods contains information about pods whose eviction was
      // processed by the API server eviction subresource handler but has not
      // yet been observed by the PodDisruptionBudget controller.
      // A pod will be in this map from the time when the API server processed the
      // eviction request to the time when the pod is seen by PDB controller
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelCache.java

     * under the License.
     */
    package org.apache.maven.api.services;
    
    import java.util.function.Supplier;
    
    /**
     * Caches auxiliary data used during model building like already processed raw/effective models. The data in the cache
     * is meant for exclusive consumption by the model builder and is opaque to the cache implementation. The cache key is
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/configuration/BeanConfigurator.java

         *            {@code null}.
         * @throws BeanConfigurationException If the bean configuration could not be successfully processed.
         */
        void configureBean(BeanConfigurationRequest request) throws BeanConfigurationException;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/file/ExpandDetails.java

     */
    public interface ExpandDetails {
        /**
         * Controls if the underlying {@link groovy.text.SimpleTemplateEngine} escapes backslashes in the file before processing. If this is set to {@code false} then escape sequences in the processed
         * files ({@code \n}, {@code \t}, {@code \\}, etc) are converted to the symbols that they represent, so, for example {@code \n} becomes newline. If set to {@code true} then escape sequences are
         * left as is.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:00:28 UTC 2022
    - 1.5K bytes
    - Viewed (0)
Back to top