Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 134 for Egrave (1.07 sec)

  1. pkg/kubelet/container/runtime.go

    	// gracePeriodOverride if specified allows the caller to override the pod default grace period.
    	// only hard kill paths are allowed to specify a gracePeriodOverride in the kubelet in order to not corrupt user data.
    	// it is useful when doing SIGKILL for hard eviction scenarios, or max grace period during soft eviction scenarios.
    	KillPod(ctx context.Context, pod *v1.Pod, runningPod Pod, gracePeriodOverride *int64) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  2. pilot/pkg/model/config.go

    // provides a notification mechanism to receive update events. As such, the
    // notification handlers must be registered prior to calling _Run_, and the
    // cache requires initial synchronization grace period after calling  _Run_.
    //
    // Update notifications require the following consistency guarantee: the view
    // in the cache must be AT LEAST as fresh as the moment notification arrives, but
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. pkg/controller/servicecidrs/servicecidrs_controller_test.go

    				deletedServiceCIDR,
    			},
    			cidrSynced: deletedServiceCIDR.Name,
    			actions:    [][]string{{"patch", "servicecidrs", ""}},
    		},
    		{
    			name: "service CIDR being deleted but within the grace period must be requeued not remove the finalizer", // TODO: assert is actually requeued
    			cidrs: []*networkingapiv1alpha1.ServiceCIDR{
    				deletingServiceCIDR,
    			},
    			cidrSynced: deletingServiceCIDR.Name,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. pilot/pkg/autoregistration/controller_test.go

    			c2.OnDisconnect(makeConn(p, origConnTime))
    			// ensure the entry is connected to the new instance
    			checkNonAutoRegisteredEntryOrFail(t, store, weB, c2.instanceID)
    		})
    	})
    	t.Run("disconnect for longer than grace period", func(t *testing.T) {
    		// report proxy is healthy
    		c2.QueueWorkloadEntryHealth(p, HealthEvent{
    			Healthy: true,
    		})
    		// ensure health condition has been updated
    		checkHealthOrFail(t, store, p, true)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/options/options_test.go

    	"--namespace-sync-period=10m",
    	"--node-cidr-mask-size=48",
    	"--node-cidr-mask-size-ipv4=48",
    	"--node-cidr-mask-size-ipv6=108",
    	"--node-eviction-rate=0.2",
    	"--node-monitor-grace-period=30s",
    	"--node-monitor-period=10s",
    	"--node-startup-grace-period=30s",
    	"--profiling=false",
    	"--pv-recycler-increment-timeout-nfs=45",
    	"--pv-recycler-minimum-timeout-hostpath=45",
    	"--pv-recycler-minimum-timeout-nfs=200",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  6. pkg/registry/core/pod/strategy_test.go

    			}
    			Strategy.CheckGracefulDelete(genericapirequest.NewContext(), tc.pod, out)
    			if out.GracePeriodSeconds == nil {
    				t.Errorf("out grace period was nil but supposed to be %v", tc.gracePeriod)
    			}
    			if *(out.GracePeriodSeconds) != tc.gracePeriod {
    				t.Errorf("out grace period was %v but was expected to be %v", *out, tc.gracePeriod)
    			}
    		})
    	}
    }
    
    type mockPodGetter struct {
    	pod *api.Pod
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  7. pkg/controller/servicecidrs/servicecidrs_controller.go

    		// however, there can be a race when the allocators still consider the ServiceCIDR
    		// ready and allocate a new IPAddress from them, to avoid that, we wait during a
    		// a grace period to be sure the deletion change has been propagated to the allocators
    		// and no new IPAddress is going to be allocated.
    		timeUntilDeleted := deletionGracePeriod - time.Since(cidr.GetDeletionTimestamp().Time)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 18K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_device.cc

      // to set_tensorflow_accelerator_device_info() with ops that call the getter
      // tensorflow_accelerator_device_info(). This isn't trivially fixed by adding
      // locking to those methods; see the bug for details. Our only saving grace at
      // the moment is that this race doesn't seem to occur in practice.
      if (use_accelerator_device_info_) {
        auto accelerator_device_info =
            std::make_unique<DeviceBase::AcceleratorDeviceInfo>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet.go

    // SyncTerminatedPod. This method is expected to return with the grace period provided and the
    // provided context may be cancelled if the duration is exceeded. The method may also be interrupted
    // with a context cancellation if the grace period is shortened by the user or the kubelet (such as
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  10. tests/integration/ambient/baseline_test.go

    			pods, err := kubetest.NewPodFetch(t.AllClusters()[0], apps.Namespace.Name(), constants.GatewayNameLabel+"=waypoint")()
    			assert.NoError(t, err)
    			for _, p := range pods {
    				grace := p.Spec.TerminationGracePeriodSeconds
    				if grace != nil && *grace == want {
    					return true
    				}
    			}
    			return false
    		}
    		// check that waypoint deployment is unmodified
    		retry.UntilOrFail(t, func() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
Back to top