Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for slowTest (0.28 sec)

  1. pkg/controller/podautoscaler/horizontal.go

    	var reason, message string
    	if args.DesiredReplicas >= args.CurrentReplicas {
    		reason = "ScaleUpStabilized"
    		message = "recent recommendations were lower than current one, applying the lowest recent recommendation"
    	} else {
    		reason = "ScaleDownStabilized"
    		message = "recent recommendations were higher than current one, applying the highest recent recommendation"
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. common/scripts/metallb-native.yaml

                    type: boolean
                  serviceAllocation:
                    description: AllocateTo makes ip pool allocation to specific namespace
                      and/or service. The controller will use the pool with lowest value
                      of priority in case of multiple matches. A pool with no priority
                      set will be used only if the pools with priority can't be used.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	errEmptiedFinalizers = fmt.Errorf("emptied finalizers")
    )
    
    // shouldOrphanDependents returns true if the finalizer for orphaning should be set
    // updated for FinalizerOrphanDependents. In the order of highest to lowest
    // priority, there are three factors affect whether to add/remove the
    // FinalizerOrphanDependents: options, existing finalizers of the object,
    // and e.DeleteStrategy.DefaultGarbageCollectionPolicy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  4. internal/bucket/lifecycle/lifecycle_test.go

    	}
    	if evt.StorageClass != "TIER-2" {
    		t.Fatalf("Expected TIER-2 but got %s", evt.StorageClass)
    	}
    }
    
    func TestNoncurrentVersionsLimit(t *testing.T) {
    	// test that the lowest max noncurrent versions limit is returned among
    	// matching rules
    	var rules []Rule
    	for i := 1; i <= 10; i++ {
    		rules = append(rules, Rule{
    			ID:     strconv.Itoa(i),
    			Status: "Enabled",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    type heapArena struct {
    	_ sys.NotInHeap
    
    	// spans maps from virtual address page ID within this arena to *mspan.
    	// For allocated spans, their pages map to the span itself.
    	// For free spans, only the lowest and highest pages map to the span itself.
    	// Internal pages map to an arbitrary span.
    	// For pages that have never been allocated, spans entries are nil.
    	//
    	// Modifications are protected by mheap.lock. Reads can be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Iterators.java

      /**
       * Returns the index in {@code iterator} of the first element that satisfies the provided {@code
       * predicate}, or {@code -1} if the Iterator has no such elements.
       *
       * <p>More formally, returns the lowest index {@code i} such that {@code
       * predicate.apply(Iterators.get(iterator, i))} returns {@code true}, or {@code -1} if there is no
       * such index.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Iterators.java

      /**
       * Returns the index in {@code iterator} of the first element that satisfies the provided {@code
       * predicate}, or {@code -1} if the Iterator has no such elements.
       *
       * <p>More formally, returns the lowest index {@code i} such that {@code
       * predicate.apply(Iterators.get(iterator, i))} returns {@code true}, or {@code -1} if there is no
       * such index.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. src/runtime/mgcpacer.go

    		// There's honestly not much we can do here but just trigger GCs continuously
    		// and let the CPU limiter reign that in. Something has to give at this point.
    		// Set it to heapMarked, the lowest possible goal.
    		return c.heapMarked
    	}
    
    	// Compute the goal.
    	goal := memoryLimit - (nonHeapMemory + overage)
    
    	// Apply some headroom to the goal to account for pacing inaccuracies and to reduce
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. cmd/erasure-server-pool.go

    	// the latest object.
    	sort.Slice(results, func(i, j int) bool {
    		a, b := results[i], results[j]
    		if a.oi.ModTime.Equal(b.oi.ModTime) {
    			// On tiebreak, select the lowest pool index.
    			return a.zIdx < b.zIdx
    		}
    		return a.oi.ModTime.After(b.oi.ModTime)
    	})
    
    	for _, res := range results {
    		err := res.err
    		if err == nil {
    			return res.oi, res.zIdx, nil
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    				st.MakePod().Name("p3.3").UID("p3.3").Node("node3").Priority(lowPriority).Req(smallRes).StartTime(epochTime).Obj(),
    			},
    			expected: []string{"node2"},
    		},
    		{
    			name:           "non-overlapping lowest high priority, sum priorities, and number of pods",
    			registerPlugin: tf.RegisterPluginAsExtensions(noderesources.Name, nodeResourcesFitFunc, "Filter", "PreFilter"),
    			nodeNames:      []string{"node1", "node2", "node3", "node4"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top