Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 80 for Trailing (0.41 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// note that we don't have to call setDrainInputBufferLocked method on the watchers
    	// because we take advantage of the default value - stop immediately
    	// also watchers that have had already its draining strategy set
    	// are no longer available (they were removed from the allWatchers and the valueWatchers maps)
    	if len(i.allWatchers) > 0 || len(i.valueWatchers) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. pkg/scheduler/schedule_one_test.go

    func TestSchedulerGuaranteeNonNilNodeInSchedulingCycle(t *testing.T) {
    	if goruntime.GOOS == "windows" {
    		// TODO: remove skip once the failing test has been fixed.
    		t.Skip("Skip failing test on Windows.")
    	}
    	random := rand.New(rand.NewSource(time.Now().UnixNano()))
    	ctx, cancel := context.WithCancel(context.Background())
    	defer cancel()
    
    	var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    		}
    		if utilfeature.DefaultFeatureGate.Enabled(features.NodeSwap) {
    			if !isCgroup2UnifiedMode() && s.MemorySwap.SwapBehavior == kubelettypes.LimitedSwap {
    				// This feature is not supported for cgroupv1 so we are failing early.
    				return fmt.Errorf("swap feature is enabled and LimitedSwap but it is only supported with cgroupv2")
    			}
    			if !s.FailSwapOn && s.MemorySwap.SwapBehavior == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    				// watch remained established successfully
    			}
    		})
    	}
    }
    
    func TestWatchNotHangingOnStartupFailure(t *testing.T) {
    	// Configure cacher so that it can't initialize, because of
    	// constantly failing lists to the underlying storage.
    	dummyErr := fmt.Errorf("dummy")
    	backingStorage := &dummyStorage{err: dummyErr}
    	cacher, _, err := newTestCacherWithoutSyncing(backingStorage)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  5. src/net/http/transport.go

    		// requests at once, they can all pick the same conn
    		// and violate the server's max concurrent streams.
    		// Instead, match the HTTP/1 behavior for now and dial
    		// again to get a new TCP connection, rather than failing
    		// this request.
    		return true
    	}
    	if err == errMissingHost {
    		// User error.
    		return false
    	}
    	if !pc.isReused() {
    		// This was a fresh connection. There's no reason the server
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      // CHECK: return %[[RES0]] : tensor<8xui32>
    }
    
    // =============================================================================
    // Training OPs
    // =============================================================================
    
    func.func @sigmoidGrad(%arg0: tensor<?x32xf32>, %arg1: tensor<?x32xf32>) -> tensor<?x32xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    ontroller`, but skips reconciling Jobs with a custom value for this field. The value must be a valid domain-prefixed path (e.g. acme.io/foo) - all characters before the first \"/\" must be a valid subdomain as defined by RFC 1123. All characters trailing the first \"/\" must be valid HTTP Path characters as defined by RFC 3986. The value cannot exceed 63 characters. This field is immutable.\n\nThis field is alpha-level. The job controller accepts setting the field when the feature gate JobManagedBy...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  8. api/openapi-spec/swagger.json

    ontroller`, but skips reconciling Jobs with a custom value for this field. The value must be a valid domain-prefixed path (e.g. acme.io/foo) - all characters before the first \"/\" must be a valid subdomain as defined by RFC 1123. All characters trailing the first \"/\" must be valid HTTP Path characters as defined by RFC 3986. The value cannot exceed 63 characters. This field is immutable.\n\nThis field is alpha-level. The job controller accepts setting the field when the feature gate JobManagedBy...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller_test.go

    					CompletionTime:          &completedCond.LastTransitionTime,
    				},
    			},
    			wantSucceededPodsMetric: 1,
    			wantFailedPodsMetric:    1,
    		},
    		"failing job": {
    			pods: []*v1.Pod{
    				buildPod().uid("a").phase(v1.PodSucceeded).trackingFinalizer().Pod,
    				buildPod().uid("b").phase(v1.PodFailed).trackingFinalizer().Pod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  10. src/net/http/transport_test.go

    			t.Error("body length is zero")
    		}
    	})).ts
    	c := ts.Client()
    	c.Transport.(*Transport).RegisterProtocol("http", roundTripFunc(func(r *Request) (*Response, error) {
    		// Draining body to trigger failure condition on actual request to server.
    		if n, _ := io.Copy(io.Discard, r.Body); n == 0 {
    			t.Error("body length is zero during round trip")
    		}
    		return nil, ErrSkipAltProtocol
    	}))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top