Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 52 for blocked (0.21 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    // activeQ is empty and waits until a new item is added to the queue. It
    // increments scheduling cycle when a pod is popped.
    func (p *PriorityQueue) Pop(logger klog.Logger) (*framework.QueuedPodInfo, error) {
    	p.lock.Lock()
    	defer p.lock.Unlock()
    	for p.activeQ.Len() == 0 {
    		// When the queue is empty, invocation of Pop() is blocked until new item is enqueued.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/sidecar_simulation_test.go

    				},
    				Result: simulation.Result{
    					// This request should be blocked
    					ClusterMatched: "BlackHoleCluster",
    				},
    			},
    			{
    				Name: "direct request to inbound port",
    				Call: simulation.Call{
    					Port:     15006,
    					Protocol: simulation.TCP,
    				},
    				Result: simulation.Result{
    					// This request should be blocked
    					ClusterMatched: "BlackHoleCluster",
    				},
    			},
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. src/runtime/pprof/pprof_test.go

    }
    
    // goroutineDeep blocks at stack depth n, including the caller until the test is
    // finished.
    func goroutineDeep(t *testing.T, n int) {
    	if n > 1 {
    		goroutineDeep(t, n-1)
    		return
    	}
    	wait := make(chan struct{}, 1)
    	t.Cleanup(func() {
    		wait <- struct{}{}
    	})
    	<-wait
    }
    
    // produceProfileEvents produces pprof events at the given stack depth and then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  4. plugin/pkg/admission/limitranger/admission_test.go

    	if err != nil {
    		t.Errorf("Should have ignored calls to any subresource of pod %v", err)
    	}
    
    	// a pod that is undergoing termination should never be blocked
    	terminatingPod := validPod("terminatingPod", 1, api.ResourceRequirements{})
    	now := metav1.Now()
    	terminatingPod.DeletionTimestamp = &now
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    			},
    			wantFilterStatuses: []*framework.Status{nil, nil},
    			name: "The affinity rule is to schedule all of the pods of this collection to the same zone. The first pod of the collection " +
    				"should not be blocked from being scheduled onto any node, even there's no existing pod that matches the rule anywhere.",
    		},
    		{
    			pod: st.MakePod().Namespace(defaultNamespace).Labels(map[string]string{"foo": "bar", "service": "securityscan"}).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DN_NEED_RESTART          = DN_LIAR           // System needs to be restarted for this Devnode to work properly
    	DN_DRIVER_BLOCKED        = DN_NOT_FIRST_TIME // One or more drivers are blocked from loading for this Devnode
    	DN_LEGACY_DRIVER         = DN_MOVED          // This device is using a legacy driver
    	DN_CHILD_WITH_INVALID_ID = DN_HAS_MARK       // One or more children have invalid IDs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

    settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

    settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    		if scenario.needsCapacity &&
    			csiDriver != nil && csiDriver.Spec.StorageCapacity != nil && *csiDriver.Spec.StorageCapacity {
    			// Without CSIStorageCapacity objects, provisioning is blocked.
    			expectedReasons = append(expectedReasons, ErrReasonNotEnoughSpace)
    			expectedProvisions = nil
    		}
    		checkReasons(t, reasons, expectedReasons)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. src/net/http/request.go

    		return value
    	}
    	return def
    }
    
    // NOTE: This is not intended to reflect the actual Go version being used.
    // It was changed at the time of Go 1.1 release because the former User-Agent
    // had ended up blocked by some intrusion detection systems.
    // See https://codereview.appspot.com/7532043.
    const defaultUserAgent = "Go-http-client/1.1"
    
    // Write writes an HTTP/1.1 request, which is the header and body, in wire format.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top