Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 689 for effort (0.1 sec)

  1. pkg/controller/endpoint/endpoints_controller.go

    		// the annotation as not set correctly
    		return false
    	}
    	_, ok := annotations[v1.EndpointsOverCapacity]
    	return !ok
    }
    
    // truncateEndpoints by best effort will distribute the endpoints over the subsets based on the proportion
    // of endpoints per subset and will prioritize Ready Endpoints over NotReady Endpoints.
    func truncateEndpoints(endpoints *v1.Endpoints) bool {
    	totalReady := 0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    // * Goroutine leaks (#1655)
    // * Excessive API-server calls at startup which have no benefit to us (#1603)
    // * Hard to use with SSA (#1669)
    // While these can be worked around, at some point it isn't worth the effort.
    //
    // Server Side Apply with go templates is an odd choice (no one likes YAML templating...) but is one of the few
    // remaining options after all others are ruled out.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    // patcher breaks the process of patch application and retries into smaller
    // pieces of functionality.
    // TODO: Use builder pattern to construct this object?
    // TODO: As part of that effort, some aspects of PatchResource above could be
    // moved into this type.
    type patcher struct {
    	// Pieces of RequestScope
    	namer               ScopeNamer
    	creater             runtime.ObjectCreater
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. pkg/registry/core/pod/strategy_test.go

    				newContainer("guaranteed", getResourceList("100m", "100Mi"), getResourceList("100m", "100Mi")),
    			}),
    			expected: api.PodQOSGuaranteed,
    		},
    		{
    			pod: newPod("best-effort", []api.Container{
    				newContainer("best-effort", getResourceList("", ""), getResourceList("", "")),
    			}),
    			expected: api.PodQOSBestEffort,
    		},
    		{
    			pod: newPod("burstable", []api.Container{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/phases/upgrade/staticpods.go

    				fmt.Printf("[upgrade/staticpods] External CA detected, %s certificate can't be renewed\n", constants.SuperAdminKubeConfigFileName)
    			}
    		}
    	}
    
    	// Remove the temporary directories used on a best-effort (don't fail if the calls error out)
    	// The calls are set here by design; we should _not_ use "defer" above as that would remove the directories
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener_inbound.go

    func buildInboundPassthroughChains(lb *ListenerBuilder) []*listener.FilterChain {
    	// Setup enough slots for common max size (permissive mode is 5 filter chains). This is not
    	// exact, just best effort optimization
    	filterChains := make([]*listener.FilterChain, 0, 1+5)
    	filterChains = append(filterChains, buildInboundBlackhole(lb))
    
    	mtlsOptions := lb.authnBuilder.ForPassthrough()
    	for _, mtls := range mtlsOptions {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/CompactHashMap.java

       * structure (to make it possible to throw ConcurrentModificationException in the iterator). Note
       * that we choose not to make this volatile, so we do less of a "best effort" to track such
       * errors, for better performance.
       *
       * <p>For a new instance, where the arrays above have not yet been allocated, the value of {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/capture/run.go

    	if err != nil {
    		return err
    	}
    
    	ipt6Ver, err := cfg.ext.DetectIptablesVersion(true)
    	if err != nil {
    		return err
    	}
    
    	defer func() {
    		// Best effort since we don't know if the commands exist
    		_ = cfg.ext.Run(constants.IPTablesSave, &iptVer, nil)
    		if cfg.cfg.EnableIPv6 {
    			_ = cfg.ext.Run(constants.IPTablesSave, &ipt6Ver, nil)
    		}
    	}()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    [[deprecate_filtered_configuration_file_and_filecollection_methods]]
    ==== Filtered Configuration `file` and `fileCollection` methods are deprecated
    
    In an ongoing effort to simplify the Gradle API, the following methods that support filtering based on declared dependencies have been deprecated:
    
    On link:{javadocPath}/org/gradle/api/artifacts/Configuration.html--[Configuration]:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. src/internal/trace/event.go

    	// what a thread/proc/goroutine was executing at a given point in time.
    	// These events may slightly contradict the situation StateTransitions
    	// describe, so they should only be treated as a best-effort annotation.
    	EventStackSample
    
    	// EventRangeBegin and EventRangeEnd are a pair of generic events representing
    	// a special range of time. Ranges are named and scoped to some resource
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
Back to top