Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for Gone (0.13 sec)

  1. pkg/controlplane/controller/apiserverleasegc/gc_controller.go

    				// by the same GC controller in another apiserver, which is legit.
    				// We don't expect other components to delete the lease.
    				klog.V(4).InfoS("Apiserver lease is gone already", "err", err)
    			} else {
    				klog.ErrorS(err, "Error deleting lease")
    			}
    		}
    	}
    }
    
    func isLeaseExpired(lease *v1.Lease) bool {
    	currentTime := time.Now()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 25 03:27:44 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    [[logging]]
    = Logging
    
    The log serves as the primary 'UI' of a build tool.
    If it becomes overly verbose, important warnings and issues can be obscured.
    However, it is essential to have relevant information to determine if something has gone wrong.
    
    Gradle defines six log levels, detailed in <<#logLevels,Log levels>>.
    In addition to the standard log levels, Gradle introduces two specific levels: _QUIET_ and _LIFECYCLE_.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/net/http/status.go

    	case StatusProxyAuthRequired:
    		return "Proxy Authentication Required"
    	case StatusRequestTimeout:
    		return "Request Timeout"
    	case StatusConflict:
    		return "Conflict"
    	case StatusGone:
    		return "Gone"
    	case StatusLengthRequired:
    		return "Length Required"
    	case StatusPreconditionFailed:
    		return "Precondition Failed"
    	case StatusRequestEntityTooLarge:
    		return "Request Entity Too Large"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 10 23:30:35 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/informers.go

    	}
    	if util.PodRedirectionEnabled(ns, pod) {
    		return pod, nil
    	}
    	return nil, nil
    }
    
    func (s *InformerHandlers) Start() {
    	kube.WaitForCacheSync("informer", s.ctx.Done(), s.pods.HasSynced, s.namespaces.HasSynced)
    	go s.queue.Run(s.ctx.Done())
    }
    
    // Gets a point-in-time snapshot of all pods that are CURRENTLY ambient enabled
    // (as per control plane annotation)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_serviceentry_test.go

    					CanonicalRevision: "latest",
    					ServiceAccount:    "sa1",
    					WorkloadType:      workloadapi.WorkloadType_POD,
    					WorkloadName:      "pod1",
    					Services:          nil, // vips for pod1 should be gone now
    				},
    			},
    		},
    	}})
    
    	assert.Equal(t, s.lookup(s.addrXdsName("240.240.34.56")), []model.AddressInfo{{
    		Address: &workloadapi.Address{
    			Type: &workloadapi.Address_Workload{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:01:04 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  6. pkg/proxy/endpointschangetracker.go

    	// ensure that no further traffic for the Service gets delivered to them.
    	DeletedUDPEndpoints []ServiceEndpoint
    
    	// NewlyActiveUDPServices identifies UDP Services that have just gone from 0 to
    	// non-0 endpoints. Existing conntrack entries caching the fact that these
    	// services are black holes must be deleted to ensure that traffic can immediately
    	// begin flowing to the new endpoints.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 21 14:44:08 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. pkg/controller/namespace/deletion/namespaced_resources_deleter.go

    	// ensure that the status is up to date on the namespace
    	// if we get a not found error, we assume the namespace is truly gone
    	namespace, err = d.retryOnConflictError(ctx, namespace, d.updateNamespaceStatusFunc)
    	if err != nil {
    		if errors.IsNotFound(err) {
    			return nil
    		}
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/device_compilation_profiler.cc

      if (cluster_not_found) {
        RegisterExecutionForCluster(function, &it->second);
      }
    
      // We avoid compiling clusters that have "gone megamorphic" i.e. have an
      // excessive amount of shape dynamism.
      if (it->second.is_megamorphic) {
        BroadcastOptimizationRemark(XlaOptimizationRemark::MEGAMORPHIC_FUNCTION,
                                    function.name())
            .IgnoreError();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/responsewriter/wrapper.go

    	// Handlers should always test for this ability at runtime
    	//
    	// The CloseNotifier interface is implemented by ResponseWriters which allow detecting
    	// when the underlying connection has gone away.
    	// Deprecated: the CloseNotifier interface predates Go's context package.
    	// New code should use Request.Context instead.
    	inner := decorator.Unwrap()
    	if innerNotifierFlusher, ok := inner.(CloseNotifierFlusher); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7K bytes
    - Viewed (0)
  10. docs/kms/IAM.md

    change unified the key-management aspect within MinIO.
    
    The unified KMS-based approach has several advantages:
    
    - Key management is now centralized. There is one way to change or rotate encryption keys.
       There used to be two different mechanisms - one for regular S3 objects and one for IAM data.
    - Reduced server startup time. For IAM encryption with the root credentials, MinIO had
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top