Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 110 for waitc (0.23 sec)

  1. src/cmd/internal/testdir/testdir_test.go

    		GOEXPERIMENT string
    		GODEBUG      string
    		CGO_ENABLED  string
    	}
    	if err := json.NewDecoder(stdout).Decode(&env); err != nil {
    		t.Fatal("Decode:", err)
    	}
    	if err := cmd.Wait(); err != nil {
    		t.Fatal("Wait:", err)
    	}
    	goos = env.GOOS
    	goarch = env.GOARCH
    	cgoEnabled, _ = strconv.ParseBool(env.CGO_ENABLED)
    	goExperiment = env.GOEXPERIMENT
    	goDebug = env.GODEBUG
    
    	common := testCommon{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    				constants.AmbientWaypointInboundBinding: "PROXY/15088",
    			},
    		},
    	})
    	s.addWaypoint(t, "1.2.3.4", "proxy-sandwich", constants.AllTraffic, true)
    	// TODO needing this check seems suspicious. We should really wait for up to 2 pod events.
    	assert.EventuallyEqual(t, func() int { return len(s.waypoints.List()) }, 1)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    					},
    				},
    				postfilter: result{
    					// Claims with immediate allocation don't. The allocation is considered
    					// more important than the pod and pods need to wait for the node to
    					// become available again.
    					status: framework.NewStatus(framework.Unschedulable, `still not schedulable`),
    				},
    			},
    		},
    		"good-topology": {
    			pod:    podWithClaimName,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  4. pkg/kube/inject/testdata/inputs/traffic-params.yaml.7.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
    - 75.9K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inputs/hello.yaml.14.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
    - 75.9K bytes
    - Viewed (0)
  6. pkg/kube/inject/testdata/inputs/hello.yaml.3.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
    - 75.9K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier.go

    	"strings"
    	"sync"
    	"sync/atomic"
    	"time"
    
    	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/wait"
    	"k8s.io/client-go/tools/events"
    	"k8s.io/klog/v2"
    	"k8s.io/kubernetes/pkg/proxy"
    	"k8s.io/kubernetes/pkg/proxy/conntrack"
    	"k8s.io/kubernetes/pkg/proxy/healthcheck"
    	"k8s.io/kubernetes/pkg/proxy/metaproxier"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  8. src/syscall/zsyscall_darwin_arm64.go

    	}
    	return
    }
    
    func libc_setgroups_trampoline()
    
    //go:cgo_import_dynamic libc_setgroups setgroups "/usr/lib/libSystem.B.dylib"
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func wait4(pid int, wstatus *_C_int, options int, rusage *Rusage) (wpid int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 51.7K bytes
    - Viewed (0)
  9. pkg/controller/podautoscaler/horizontal.go

    	"k8s.io/apimachinery/pkg/labels"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/wait"
    	autoscalinginformers "k8s.io/client-go/informers/autoscaling/v2"
    	coreinformers "k8s.io/client-go/informers/core/v1"
    	"k8s.io/client-go/kubernetes/scheme"
    	autoscalingclient "k8s.io/client-go/kubernetes/typed/autoscaling/v2"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inputs/status_params.yaml.8.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
    - 75.9K bytes
    - Viewed (0)
Back to top