Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 93 for unserved (0.38 sec)

  1. tests/integration/ambient/baseline_test.go

    				HBONE:   hbwl,
    				Check:   check.OK(),
    			})
    			run("Unserved VIP destination", echo.CallOptions{
    				To:      apps.Captured,
    				Count:   1,
    				Address: apps.Captured[0].Address(),
    				Port:    echo.Port{ServicePort: ports.HTTP.ServicePort},
    				Scheme:  scheme.HTTP,
    				HBONE:   hbsvc,
    				Check:   check.Error(),
    			})
    			run("Unserved pod destination", echo.CallOptions{
    				To:      apps.Captured,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  2. pkg/proxy/nftables/proxier.go

    }
    
    // OnServiceAdd is called whenever creation of new service object
    // is observed.
    func (proxier *Proxier) OnServiceAdd(service *v1.Service) {
    	proxier.OnServiceUpdate(nil, service)
    }
    
    // OnServiceUpdate is called whenever modification of an existing
    // service object is observed.
    func (proxier *Proxier) OnServiceUpdate(oldService, service *v1.Service) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        public boolean isCanBeMutated() {
            boolean immutable = observed || currentResolveState.get().isPresent();
            return !immutable;
        }
    
        @Override
        public void markAsObserved() {
            if (observed) {
                return;
            }
    
            runActionInHierarchy(conf -> {
                if (!conf.observed) {
                    conf.configurationAttributes.freeze();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  4. pkg/proxy/iptables/proxier.go

    }
    
    // OnServiceAdd is called whenever creation of new service object
    // is observed.
    func (proxier *Proxier) OnServiceAdd(service *v1.Service) {
    	proxier.OnServiceUpdate(nil, service)
    }
    
    // OnServiceUpdate is called whenever modification of an existing
    // service object is observed.
    func (proxier *Proxier) OnServiceUpdate(oldService, service *v1.Service) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  5. cmd/kubelet/app/server.go

    		if err != nil {
    			return err
    		}
    		if reservedSystemCPUs.Size() > 0 {
    			// at cmd option validation phase it is tested either --system-reserved-cgroup or --kube-reserved-cgroup is specified, so overwrite should be ok
    			klog.InfoS("Option --reserved-cpus is specified, it will overwrite the cpu setting in KubeReserved and SystemReserved", "kubeReserved", s.KubeReserved, "systemReserved", s.SystemReserved)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1/types.go

    	// +optional
    	MaxSurge *intstr.IntOrString `json:"maxSurge,omitempty" protobuf:"bytes,2,opt,name=maxSurge"`
    }
    
    // DeploymentStatus is the most recently observed status of the Deployment.
    type DeploymentStatus struct {
    	// The generation observed by the deployment controller.
    	// +optional
    	ObservedGeneration int64 `json:"observedGeneration,omitempty" protobuf:"varint,1,opt,name=observedGeneration"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  7. src/net/url/url_test.go

    	{
    		"http://[fe80::1%25%65%6e%301-._~]/", // percent-encoded+unreserved zone identifier
    		&URL{
    			Scheme: "http",
    			Host:   "[fe80::1%en01-._~]",
    			Path:   "/",
    		},
    		"http://[fe80::1%25en01-._~]/",
    	},
    	// host and port subcomponents; IPv6 address with zone identifier in RFC 6874
    	{
    		"http://[fe80::1%25%65%6e%301-._~]:8080/", // percent-encoded+unreserved zone identifier
    		&URL{
    			Scheme: "http",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    	end    uintptr // end of reserved space
    
    	mapMemory bool // transition memory from Reserved to Ready if true
    }
    
    func (l *linearAlloc) init(base, size uintptr, mapMemory bool) {
    	if base+size < base {
    		// Chop off the last byte. The runtime isn't prepared
    		// to deal with situations where the bounds could overflow.
    		// Leave that memory reserved, though, so we don't map it
    		// later.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    In prior versions of Gradle, many of these circumstances were detected and handled by failing the build.
    However, some cases went undetected or did not trigger build failures.
    In Gradle 9.0, all changes to a configuration after it has been observed will become an error.
    After a configuration of any type has been observed, it should be considered immutable.
    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. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	// structuredParameters is true if the claim is handled via the builtin
    	// controller.
    	structuredParameters bool
    	controller           *claimController
    
    	// Set by Reserved, published by PreBind.
    	allocation           *resourcev1alpha2.AllocationResult
    	allocationDriverName string
    }
    
    type podSchedulingState struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top