Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 147 for reasons (0.14 sec)

  1. pkg/scheduler/schedule_one_test.go

    			if !found {
    				t.Errorf("failed to find node %v in %v", node.Name, diagnosis.NodeToStatusMap)
    			}
    			reasons := status.Reasons()
    			if len(reasons) != 1 || reasons[0] != tf.ErrReasonFake {
    				t.Errorf("unexpected failures: %v", reasons)
    			}
    		})
    	}
    }
    
    func TestFindFitPredicateCallCounts(t *testing.T) {
    	tests := []struct {
    		name          string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  2. cluster/images/etcd/Makefile

    # version at a time, and patch release don't matter.
    #
    # Except from etcd-$(version) and etcdctl-$(version) binaries, we also
    # need etcd and etcdctl binaries for backward compatibility reasons.
    # That binary will be set to the last version from $(BUNDLED_ETCD_VERSIONS).
    BUNDLED_ETCD_VERSIONS?=3.4.18 3.5.14
    
    # LATEST_ETCD_VERSION identifies the most recent etcd version available.
    LATEST_ETCD_VERSION?=3.5.14
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/features/kube_features.go

    	ServerSideFieldValidation featuregate.Feature = "ServerSideFieldValidation"
    
    	// owner: @enj
    	// beta: v1.29
    	//
    	// Enables http2 DOS mitigations for unauthenticated clients.
    	//
    	// Some known reasons to disable these mitigations:
    	//
    	// An API server that is fronted by an L7 load balancer that is set up
    	// to mitigate http2 attacks may opt to disable this protection to prevent
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:36:46 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/crdclient/client.go

    // Package crdclient provides an implementation of the config store and cache
    // using Kubernetes Custom Resources and the informer framework from Kubernetes
    //
    // This code relies heavily on code generation for performance reasons; to implement the
    // Istio store interface, we need to take dynamic inputs. Using the dynamic informers results in poor
    // performance, as the cache will store unstructured objects which need to be marshaled on each Get/List call.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/UnsignedBytes.java

          /*
           * The following static final fields exist for performance reasons.
           *
           * In UnsignedBytesBenchmark, accessing the following objects via static final fields is the
           * fastest (more than twice as fast as the Java implementation, vs ~1.5x with non-final static
           * fields, on x86_32) under the Hotspot server compiler. The reason is obviously that the
           * non-final fields need to be reloaded inside the loop.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/noderesources/fit.go

    	if len(insufficientResources) != 0 {
    		// We will keep all failure reasons.
    		failureReasons := make([]string, 0, len(insufficientResources))
    		for i := range insufficientResources {
    			failureReasons = append(failureReasons, insufficientResources[i].Reason)
    		}
    		return framework.NewStatus(framework.Unschedulable, failureReasons...)
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/primitives/UnsignedBytes.java

          /*
           * The following static final fields exist for performance reasons.
           *
           * In UnsignedBytesBenchmark, accessing the following objects via static final fields is the
           * fastest (more than twice as fast as the Java implementation, vs ~1.5x with non-final static
           * fields, on x86_32) under the Hotspot server compiler. The reason is obviously that the
           * non-final fields need to be reloaded inside the loop.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. pilot/pkg/model/endpointshards.go

    	for _, v := range es.Shards {
    		for _, ep := range v {
    			// use the port name as the key, unless LegacyClusterPortKey is set and takes precedence
    			// In EDS we match on port *name*. But for historical reasons, we match on port number for CDS.
    			var portNum int
    			if ep.LegacyClusterPortKey != 0 {
    				if !ports.Contains(ep.LegacyClusterPortKey) {
    					continue
    				}
    				portNum = ep.LegacyClusterPortKey
    			} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. pkg/scheduler/scheduler.go

    	// SchedulePod tries to schedule the given pod to one of the nodes in the node list.
    	// Return a struct of ScheduleResult with the name of suggested host on success,
    	// otherwise will return a FitError with reasons.
    	SchedulePod func(ctx context.Context, fwk framework.Framework, state *framework.CycleState, pod *v1.Pod) (ScheduleResult, error)
    
    	// Close this to shut down the scheduler.
    	StopEverything <-chan struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  10. pkg/scheduler/schedule_one.go

    			sched.SchedulingQueue.Done(podInfo.Pod.UID)
    		}
    	}()
    
    	logger := klog.FromContext(ctx)
    	reason := v1.PodReasonSchedulerError
    	if status.IsRejected() {
    		reason = v1.PodReasonUnschedulable
    	}
    
    	switch reason {
    	case v1.PodReasonUnschedulable:
    		metrics.PodUnschedulable(fwk.ProfileName(), metrics.SinceInSeconds(start))
    	case v1.PodReasonSchedulerError:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top