Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for probe_type (1.47 sec)

  1. pkg/kubelet/prober/worker.go

    	}
    
    	// Graceful shutdown of the pod.
    	if w.pod.ObjectMeta.DeletionTimestamp != nil && (w.probeType == liveness || w.probeType == startup) {
    		klog.V(3).InfoS("Pod deletion requested, setting probe result to success",
    			"probeType", w.probeType, "pod", klog.KObj(w.pod), "containerName", w.container.Name)
    		if w.probeType == startup {
    			klog.InfoS("Pod deletion requested before container has fully started",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 01:28:06 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  2. pkg/kubelet/prober/prober_manager.go

    	}
    }
    
    // Key uniquely identifying container probes
    type probeKey struct {
    	podUID        types.UID
    	containerName string
    	probeType     probeType
    }
    
    // Type of probe (liveness, readiness or startup)
    type probeType int
    
    const (
    	liveness probeType = iota
    	readiness
    	startup
    
    	probeResultSuccessful string = "successful"
    	probeResultFailed     string = "failed"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. pkg/kubelet/prober/worker_test.go

    	m := newTestManager()
    
    	for _, probeType := range [...]probeType{liveness, readiness, startup} {
    		// Test statuses.
    		runningStatus := getTestRunningStatusWithStarted(probeType != startup)
    		pendingStatus := getTestRunningStatusWithStarted(probeType != startup)
    		pendingStatus.ContainerStatuses[0].State.Running = nil
    		terminatedStatus := getTestRunningStatusWithStarted(probeType != startup)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 23:48:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/RoleTypeDbm.java

        //                                                                          ==========
        protected final String _tableDbName = "role_type";
        protected final String _tableDispName = "role_type";
        protected final String _tablePropertyName = "RoleType";
    
        public String getTableDbName() {
            return _tableDbName;
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. src/main/resources/esclient.xml

    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_config.request_header/request_header"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_config.role_type/role_type"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    			<arg>"fess_config.scheduled_job/scheduled_job"</arg>
    		</postConstruct>
    		<postConstruct name="addIndexConfig">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 23 05:42:27 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  6. pkg/kubelet/prober/prober_manager_test.go

    func waitForWorkerExit(t *testing.T, m *manager, workerPaths []probeKey) error {
    	for _, w := range workerPaths {
    		condition := func() (bool, error) {
    			_, exists := m.getWorker(w.podUID, w.containerName, w.probeType)
    			return !exists, nil
    		}
    		if exited, _ := condition(); exited {
    			continue // Already exited, no need to poll.
    		}
    		t.Logf("Polling %v", w)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

                    "fess_config.related_content", //
                    "fess_config.related_query", //
                    "fess_config.request_header", //
                    "fess_config.role_type", //
                    "fess_config.scheduled_job", //
                    "fess_config.thumbnail_queue", //
                    "fess_config.web_authentication", //
                    "fess_config.web_config", //
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  8. pilot/pkg/xds/debug.go

    type SyncStatus struct {
    	ClusterID            string         `json:"cluster_id,omitempty"`
    	ProxyID              string         `json:"proxy,omitempty"`
    	ProxyType            model.NodeType `json:"proxy_type,omitempty"`
    	ProxyVersion         string         `json:"proxy_version,omitempty"`
    	IstioVersion         string         `json:"istio_version,omitempty"`
    	ClusterSent          string         `json:"cluster_sent,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top