Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 66 for waitc (0.08 sec)

  1. pkg/kube/inject/testdata/inputs/custom-template.yaml.40.template.gen.yaml

          {{- else if $holdProxy }}
            lifecycle:
              postStart:
                exec:
                  command:
                  - pilot-agent
                  - wait
          {{- else if $nativeSidecar }}
            {{- /* preStop is called when the pod starts shutdown. Initialize drain. We will get SIGTERM once applications are torn down. */}}
            lifecycle:
              preStop:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 76.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/types.go

    	// at any time.
    	OrderedReadyPodManagement PodManagementPolicyType = "OrderedReady"
    	// ParallelPodManagement will create and delete pods as soon as the stateful set
    	// replica count is changed, and will not wait for pods to be ready or complete
    	// termination.
    	ParallelPodManagement PodManagementPolicyType = "Parallel"
    )
    
    // StatefulSetUpdateStrategy indicates the strategy that the StatefulSet
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	if int64(r0) == -1 {
    		err = errnoErr2(e1, e2)
    	}
    	return
    }
    
    //go:nosplit
    func get_Wait4Addr() *(func(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, err error))
    
    var Wait4 = enter_Wait4
    
    func enter_Wait4(pid int, wstatus *WaitStatus, options int, rusage *Rusage) (wpid int, err error) {
    	funcref := get_Wait4Addr()
    	if funcptrtest(GetZosLibVec()+SYS_WAIT4<<4, "") == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  4. pkg/controller/endpointslice/endpointslice_controller_test.go

    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/intstr"
    	"k8s.io/apimachinery/pkg/util/rand"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes/fake"
    	k8stesting "k8s.io/client-go/testing"
    	"k8s.io/client-go/tools/cache"
    	"k8s.io/endpointslice/topologycache"
    	endpointsliceutil "k8s.io/endpointslice/util"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		defer c.watchCache.RUnlock()
    		return err
    	}
    	return nil
    }
    
    // Wait blocks until the cacher is Ready or Stopped, it returns an error if Stopped.
    func (c *Cacher) Wait(ctx context.Context) error {
    	return c.ready.wait(ctx)
    }
    
    // errWatcher implements watch.Interface to return a single error
    type errWatcher struct {
    	result chan watch.Event
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/runtime/mprof.go

    	//                           ┠┅┅┅┅┅┅┅┅┅┅┅P
    	//                   C+2     →    C+1    →  C
    	//
    	// Since we can't publish a consistent snapshot until all of
    	// the sweep frees are accounted for, we wait until the next
    	// mark termination ("MT" above) to publish the previous mark
    	// termination's snapshot ("P" above). To do this, allocation
    	// and free events are accounted to *future* heap profile
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. src/time/time_test.go

    	timer := NewTimer(Hour)
    	for i := 0; i < goroutines; i++ {
    		go func(i int) {
    			defer wg.Done()
    			for j := 0; j < tries; j++ {
    				timer.Reset(Hour + Duration(i*j))
    			}
    		}(i)
    	}
    	wg.Wait()
    }
    
    // Issue 37400: panic with "racy use of timers".
    func TestConcurrentTimerResetStop(t *testing.T) {
    	const goroutines = 8
    	const tries = 1000
    	var wg sync.WaitGroup
    	wg.Add(goroutines * 2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. src/net/http/client_test.go

    	case <-time.After(60 * time.Second):
    		t.Errorf("request not sent after 60s")
    	}
    
    	// Write the request body and wait for the request to complete.
    	const content = "body"
    	bodyw.Write([]byte(content))
    	bodyw.Close()
    	wg.Wait()
    	if gotBody != content {
    		t.Fatalf("server got body %q, want %q", gotBody, content)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers_test.go

    	podWorkers.UpdatePod(UpdatePodOptions{
    		Pod:        newNamedPod("5-static", "test1", "pod1", true),
    		UpdateType: kubetypes.SyncPodUpdate,
    	})
    	// Wait for the previous work to be delivered to the worker
    	drainAllWorkers(podWorkers)
    	channels.Channel("5-static").Hold()
    	podWorkers.UpdatePod(UpdatePodOptions{
    		Pod:        newNamedPod("5-static", "test1", "pod1", true),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier.go

    	v1 "k8s.io/api/core/v1"
    	discovery "k8s.io/api/discovery/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/version"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/client-go/tools/events"
    	utilsysctl "k8s.io/component-helpers/node/util/sysctl"
    	"k8s.io/kubernetes/pkg/proxy"
    	"k8s.io/kubernetes/pkg/proxy/conntrack"
    	"k8s.io/kubernetes/pkg/proxy/healthcheck"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
Back to top