Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 224 for steady (0.19 sec)

  1. src/sync/map.go

    		// (so it would be made more efficient by promoting the dirty
    		// map to read-only).
    		// Count it as a miss so that we will eventually switch to the
    		// more efficient steady state.
    		m.missLocked()
    	}
    	return swapped
    }
    
    // CompareAndDelete deletes the entry for key if its value is equal to old.
    // The old value must be of a comparable type.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/batch/v1/generated.proto

      // The structure is empty for finished jobs.
      // +optional
      optional UncountedTerminatedPods uncountedTerminatedPods = 8;
    
      // The number of active pods which have a Ready condition and are not
      // terminating (without a deletionTimestamp).
      optional int32 ready = 9;
    }
    
    // JobTemplateSpec describes the data a Job should have when created from a template
    message JobTemplateSpec {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"ready":                   "The number of active pods which have a Ready condition and are not terminating (without a deletionTimestamp).",
    }
    
    func (JobStatus) SwaggerDoc() map[string]string {
    	return map_JobStatus
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/batch/v1/types.go

    	// The number of active pods which have a Ready condition and are not
    	// terminating (without a deletionTimestamp).
    	Ready *int32 `json:"ready,omitempty" protobuf:"varint,9,opt,name=ready"`
    }
    
    // UncountedTerminatedPods holds UIDs of Pods that have terminated but haven't
    // been accounted in Job status counters.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  5. pkg/apis/batch/types.go

    	// the feature gate JobPodReplacementPolicy is enabled (enabled by default).
    	// +optional
    	Terminating *int32
    
    	// The number of active pods which have a Ready condition and are not
    	// terminating (without a deletionTimestamp).
    	// +optional
    	Ready *int32
    
    	// The number of pods which reached phase Succeeded.
    	// The value increases monotonically for a given spec. However, it may
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/devicemanager/manager_test.go

    		originalCallback(resourceName, devices)
    		updateChan <- new(interface{})
    	}
    	activePods := func() []*v1.Pod {
    		return []*v1.Pod{}
    	}
    
    	// test steady state, initialization where sourcesReady, containerMap and containerRunningSet
    	// are relevant will be tested with a different flow
    	err = w.Start(activePods, &sourcesReadyStub{}, containermap.NewContainerMap(), sets.New[string]())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  7. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			},
    		},
    		"Verify we do not create a pod sandbox if no ready sandbox for pod with RestartPolicy=Never and all containers exited": {
    			mutatePodFn: func(pod *v1.Pod) {
    				pod.Spec.RestartPolicy = v1.RestartPolicyNever
    			},
    			mutateStatusFn: func(status *kubecontainer.PodStatus) {
    				// no ready sandbox
    				status.SandboxStatuses[0].State = runtimeapi.PodSandboxState_SANDBOX_NOTREADY
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/generators/go122-syscall-steal-proc-self.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests syscall P stealing.
    //
    // Specifically, it tests a scenario where a thread 'steals'
    // a P from itself. It's just a ProcStop with extra steps when
    // it happens on the same P.
    
    package main
    
    import (
    	"internal/trace"
    	"internal/trace/event/go122"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. src/internal/trace/testdata/generators/go122-syscall-steal-proc-simple.go

    	b0.Event("GoStatus", trace.GoID(1), trace.ThreadID(0), go122.GoRunning)
    	b0.Event("GoSyscallBegin", testgen.Seq(1), testgen.NoStack)
    	b0.Event("GoSyscallEndBlocked")
    
    	// A running goroutine steals proc 0.
    	b1 := g.Batch(trace.ThreadID(1), 0)
    	b1.Event("ProcStatus", trace.ProcID(2), go122.ProcRunning)
    	b1.Event("GoStatus", trace.GoID(2), trace.ThreadID(1), go122.GoRunning)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 988 bytes
    - Viewed (0)
  10. src/internal/trace/testdata/generators/go122-syscall-steal-proc-reacquire-new-proc.go

    	b0.Event("GoSyscallBegin", testgen.Seq(1), testgen.NoStack)
    	b0.Event("ProcStart", trace.ProcID(1), testgen.Seq(1))
    	b0.Event("GoSyscallEndBlocked")
    
    	// A running goroutine steals proc 0.
    	b1 := g.Batch(trace.ThreadID(1), 0)
    	b1.Event("ProcStatus", trace.ProcID(2), go122.ProcRunning)
    	b1.Event("GoStatus", trace.GoID(2), trace.ThreadID(1), go122.GoRunning)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 1.1K bytes
    - Viewed (0)
Back to top