Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 35 for DecInt (0.36 sec)

  1. guava/src/com/google/common/cache/CacheBuilder.java

      }
    
      /**
       * Specifies that each entry should be automatically removed from the cache once a fixed duration
       * has elapsed after the entry's creation, or the most recent replacement of its value.
       *
       * <p>When {@code duration} is zero, this method hands off to {@link #maximumSize(long)
       * maximumSize}{@code (0)}, ignoring any otherwise-specified maximum size or weight. This can be
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal.go

    	if args.DesiredReplicas >= args.CurrentReplicas {
    		reason = "ScaleUpStabilized"
    		message = "recent recommendations were lower than current one, applying the lowest recent recommendation"
    	} else {
    		reason = "ScaleDownStabilized"
    		message = "recent recommendations were higher than current one, applying the highest recent recommendation"
    	}
    	return recommendation, reason, message
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. pkg/kubelet/pod_workers.go

    	// that all intermediate states are synced to a worker, only the most recent.
    	// This state will not be visible to downstream components until a pod worker
    	// has begun processing it.
    	pendingUpdate *UpdatePodOptions
    	// activeUpdate is the most recent version of the pod's state that will be
    	// passed to a sync*Pod function. A pod becomes visible to downstream components
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

                    }
                }
    """
    
            expect:
            succeeds "check"
        }
    
        void "runtime exception when evaluating rule yields decent exception"() {
            mavenRepo.module("org.utils", "impl", '1.3').dependsOn('org.utils', 'api', '1.3').publish()
            mavenRepo.module("org.utils", "api", '1.3').publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/describe.go

    	path, err := getIstioVirtualServicePathForSvcFromRoute(cd, svc, port)
    	if err != nil {
    		return "", "", err
    	}
    
    	// Starting with recent 1.5.0 builds, the path will include .istio.io.  Handle both.
    	// nolint: gosimple
    	re := regexp.MustCompile("/apis/networking(\\.istio\\.io)?/v1alpha3/namespaces/(?P<namespace>[^/]+)/virtual-service/(?P<name>[^/]+)")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// Expected type of objects in the underlying cache.
    	objectType reflect.Type
    	// Used for logging, to disambiguate *unstructured.Unstructured (CRDs)
    	groupResource schema.GroupResource
    
    	// "sliding window" of recent changes of objects and the current state.
    	watchCache *watchCache
    	reflector  *cache.Reflector
    
    	// Versioner is used to handle resource versions.
    	versioner storage.Versioner
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apps/v1beta2/types.go

    }
    
    // StatefulSetStatus represents the current state of a StatefulSet.
    type StatefulSetStatus struct {
    	// observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the
    	// StatefulSet's generation, which is updated on mutation by the API Server.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  8. src/crypto/tls/conn.go

    	// all are tried to decrypt tickets.
    	ticketKeys []ticketKey
    
    	// clientFinishedIsFirst is true if the client sent the first Finished
    	// message during the most recent handshake. This is recorded because
    	// the first transmitted Finished message is the tls-unique
    	// channel-binding value.
    	clientFinishedIsFirst bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/types.go

    }
    
    // StatefulSetStatus represents the current state of a StatefulSet.
    type StatefulSetStatus struct {
    	// observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the
    	// StatefulSet's generation, which is updated on mutation by the API Server.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier.go

    				args,
    				"-s", epInfo.IP(),
    				"-j", string(kubeMarkMasqChain))
    			// Update client-affinity lists.
    			if svcInfo.SessionAffinityType() == v1.ServiceAffinityClientIP {
    				args = append(args, "-m", "recent", "--name", string(endpointChain), "--set")
    			}
    			// DNAT to final destination.
    			args = append(args, "-m", protocol, "-p", protocol, "-j", "DNAT", "--to-destination", epInfo.String())
    			natRules.Write(args)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
Back to top