Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 179 for Pull (0.05 sec)

  1. pkg/kubelet/cm/devicemanager/manager_test.go

    // happens, we will NOT delete devices; and no orphaned devices left.
    func TestDevicePluginReRegistration(t *testing.T) {
    	// TODO: Remove skip once https://github.com/kubernetes/kubernetes/pull/115269 merges.
    	if goruntime.GOOS == "windows" {
    		t.Skip("Skipping test on Windows.")
    	}
    	socketDir, socketName, pluginSocketName, err := tmpSocketDir()
    	require.NoError(t, err)
    	defer os.RemoveAll(socketDir)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    	mp := acquirem()
    
    	trace := traceAcquire()
    	if trace.ok() {
    		trace.GCSweepStart()
    		traceRelease(trace)
    	}
    
    	arenas := h.sweepArenas
    	locked := false
    	for npage > 0 {
    		// Pull from accumulated credit first.
    		if credit := h.reclaimCredit.Load(); credit > 0 {
    			take := credit
    			if take > npage {
    				// Take only what we need.
    				take = npage
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    			return in < jn
    		}
    		return configs[i].CreationTimestamp.Before(configs[j].CreationTimestamp)
    	})
    }
    
    // convertResources is the top level entrypoint to our conversion logic, computing the full state based
    // on KubernetesResources inputs.
    func convertResources(r GatewayResources) IstioResources {
    	// sort HTTPRoutes by creation timestamp and namespace/name
    	sortConfigByCreationTime(r.HTTPRoute)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. tests/integration/ambient/baseline_test.go

    			// We are testing to svc traffic but presently sidecar has not been updated to know that to svc traffic should not
    			// go to a workload-attached waypoint
    			t.Skip("https://github.com/istio/istio/pull/50182")
    		}
    
    		// TODO test from all source workloads as well
    		src.CallOrFail(t, opt)
    	})
    }
    
    func TestPodIP(t *testing.T) {
    	framework.NewTest(t).Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    		{
    			name: "RV=unset, allowWatchBookmarks=true, sendInitialEvents=nil",
    			opts: listOptions(true, nil, ""),
    			// Expecting RV 0, due to https://github.com/kubernetes/kubernetes/pull/123935 reverted to serving those requests from watch cache.
    			// Set to 100, when WatchFromStorageWithoutResourceVersion is set to true.
    			expectedWatchResourceVersion: 0,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_attacher_test.go

    			// this test won't fail on Windows due to permission denied errors.
    			// TODO: Remove the skip once Windows file permissions support is added.
    			// https://github.com/kubernetes/kubernetes/pull/110921
    			skipOnWindows: true,
    			spec:          volume.NewSpecFromPersistentVolume(makeTestPV(pvName, 10, testDriver, "test-vol1"), true),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route.go

    	case *networking.StringMatch_Regex:
    		// `*` is NOT a RE2 style regex, it's a metacharacter.
    		// It will be translated as present_match, rather than matching "any string".
    		// see https://github.com/istio/istio/pull/20629
    		catchall = m.Regex == "*"
    	}
    
    	return catchall
    }
    
    // translateMetadataMatch translates a header match to dynamic metadata matcher. Returns nil if the header is not supported
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  8. pkg/controller/daemon/daemon_controller.go

    		}
    		logger.V(4).Info("Pod updated", "pod", klog.KObj(curPod))
    		dsc.enqueueDaemonSet(ds)
    		changedToReady := !podutil.IsPodReady(oldPod) && podutil.IsPodReady(curPod)
    		// See https://github.com/kubernetes/kubernetes/pull/38076 for more details
    		if changedToReady && ds.Spec.MinReadySeconds > 0 {
    			// Add a second to avoid milliseconds skew in AddAfter.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  9. src/cmd/link/internal/loader/loader.go

    			// list and check later after all symbol defs are loaded. Linknamed vars are rare,
    			// so this list won't be long.
    			// Only check references (pull), not definitions (push, with non-zero size),
    			// so push is always allowed.
    			// This use of linkname is usually for referencing C symbols, so allow symbols
    			// with no "." in its name (not a regular Go symbol).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  10. cmd/kubelet/app/server.go

    		// The Kubelet has special flag parsing requirements to enforce flag precedence rules,
    		// so we do all our parsing manually in Run, below.
    		// DisableFlagParsing=true provides the full set of flags passed to the kubelet in the
    		// `args` arg to Run, without Cobra's interference.
    		DisableFlagParsing: true,
    		SilenceUsage:       true,
    		RunE: func(cmd *cobra.Command, args []string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top