Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 23 for termination (0.73 sec)

  1. pkg/controller/endpointslice/endpointslice_controller_test.go

    		informerFactory.Core().V1().Services().Informer().GetStore(),
    	}
    }
    
    func newPod(n int, namespace string, ready bool, nPorts int, terminating bool) *v1.Pod {
    	status := v1.ConditionTrue
    	if !ready {
    		status = v1.ConditionFalse
    	}
    
    	var deletionTimestamp *metav1.Time
    	if terminating {
    		deletionTimestamp = &metav1.Time{
    			Time: time.Now(),
    		}
    	}
    
    	p := &v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    		},
    		{
    			name: "victim Pods terminating, feature PodDisruptionConditions is enabled",
    			fts:  feature.Features{EnablePodDisruptionConditions: true},
    			pod:  st.MakePod().Name("p_with_nominated_node").UID("p").Priority(highPriority).NominatedNodeName("node1").Obj(),
    			pods: []*v1.Pod{st.MakePod().Name("p1").UID("p1").Priority(lowPriority).Node("node1").Terminating().
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/HEAD/batch.v1.Job.json

            "message": "messageValue"
          }
        ],
        "startTime": "2002-01-01T01:01:01Z",
        "completionTime": "2003-01-01T01:01:01Z",
        "active": 4,
        "succeeded": 5,
        "failed": 6,
        "terminating": 11,
        "completedIndexes": "completedIndexesValue",
        "failedIndexes": "failedIndexesValue",
        "uncountedTerminatedPods": {
          "succeeded": [
            "succeededValue"
          ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/crypto/tls/common.go

    	// Deprecated: if this field is left at zero, session ticket keys will be
    	// automatically rotated every day and dropped after seven days. For
    	// customizing the rotation schedule or synchronizing servers that are
    	// terminating connections for the same host, use SetSessionTicketKeys.
    	SessionTicketKey [32]byte
    
    	// ClientSessionCache is a cache of ClientSessionState entries for TLS
    	// session resumption. It is only used by clients.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route.go

    	mesh *meshconfig.MeshConfig,
    	mostSpecificWildcardVsIndex map[host.Name]types.NamespacedName,
    ) []VirtualHostWrapper {
    	meshGateway := sets.New(constants.IstioMeshGateway)
    	opts := RouteOptions{
    		// Sidecar is never terminating TLS
    		IsTLS: false,
    		// Sidecar is never doing H3 (yet)
    		IsHTTP3AltSvcHeaderNeeded: false,
    		Mesh:                      mesh,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    			// if all containers are done and should not be started, there is no need to create a new sandbox.
    			// this stops confusing logs on pods whose containers all have exit codes, but we recreate a sandbox before terminating it.
    			//
    			// If ContainerStatuses is empty, we assume that we've never
    			// successfully created any containers. In this case, we should
    			// retry creating the sandbox.
    			changes.CreateSandbox = false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SmbFile.java

         * compare authentication information. In essence, two
         * <code>SmbFile</code> objects that refer to
         * the same file should generate the same hashcode provided it is possible
         * to make such a determination.
         *
         * @return A hashcode for this abstract file
         */
        @Override
        public int hashCode () {
            return this.fileLocator.hashCode();
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  8. guava/src/com/google/common/collect/MapMakerInternalMap.java

        void readEntries(ObjectInputStream in) throws IOException, ClassNotFoundException {
          while (true) {
            K key = (K) in.readObject();
            if (key == null) {
              break; // terminator
            }
            V value = (V) in.readObject();
            delegate.put(key, value);
          }
        }
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    			t.Fatalf("service instances store `instancesBySE` memory leak, expect 1, got %d", len(sd.serviceInstances.instancesBySE[namespacedName]))
    		}
    
    		// The following sections mimic this scenario:
    		// f1 starts terminating, f3 picks up the IP, f3 delete event (pod
    		// not ready yet) comes before f1
    		//
    		// Delete f3 event
    		callInstanceHandlers([]*model.WorkloadInstance{fi3}, sd, model.EventDelete, t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    // sandboxTemplate is a sandbox template to create fake sandbox.
    type sandboxTemplate struct {
    	pod         *v1.Pod
    	attempt     uint32
    	createdAt   int64
    	state       runtimeapi.PodSandboxState
    	running     bool
    	terminating bool
    }
    
    // containerTemplate is a container template to create fake container.
    type containerTemplate struct {
    	pod            *v1.Pod
    	container      *v1.Container
    	sandboxAttempt uint32
    	attempt        int
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
Back to top