Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 284 for fopacity (0.28 sec)

  1. test/fixedbugs/issue30116u.out

                                                       slice[0:4294967295] runtime error: slice bounds out of range [:4294967295] with capacity 3
                                             slice[0:18446744073709551615] runtime error: slice bounds out of range [:18446744073709551615] with capacity 3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 17:33:38 UTC 2019
    - 44K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/node_container_manager_linux_test.go

    			capacity:       getResourceList("10", "10Gi"),
    		},
    		{
    			kubeReserved:   getResourceList("", "100Mi"),
    			systemReserved: getResourceList("50m", "50Mi"),
    			capacity:       getResourceList("10", "10Gi"),
    		},
    		{
    			kubeReserved:   getResourceList("50m", "100Mi"),
    			systemReserved: getResourceList("", "50Mi"),
    			capacity:       getResourceList("10", "10Gi"),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 12.1K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/noderesources/most_allocated_test.go

    			name: "resources requested equal node capacity",
    			requestedPod: st.MakePod().
    				Req(map[v1.ResourceName]string{"cpu": "2000", "memory": "4000"}).
    				Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "5000"}).
    				Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "5000", "memory": "10000"}).Obj(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 16K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/noderesources/least_allocated_test.go

    			// Node2 Score: (0 + 50) / 2 = 25
    			name:         "requested resources exceed node capacity",
    			requestedPod: st.MakePod().Req(map[v1.ResourceName]string{"cpu": "3000", "memory": "0"}).Obj(),
    			nodes: []*v1.Node{
    				st.MakeNode().Name("node1").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    				st.MakeNode().Name("node2").Capacity(map[v1.ResourceName]string{"cpu": "4000", "memory": "10000"}).Obj(),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 18.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	newCache := make([]*watchCacheEvent, capacity)
    	if capacity < w.capacity {
    		// adjust startIndex if cache capacity shrink.
    		w.startIndex = w.endIndex - capacity
    	}
    	for i := w.startIndex; i < w.endIndex; i++ {
    		newCache[i%capacity] = w.cache[i%w.capacity]
    	}
    	w.cache = newCache
    	metrics.RecordsWatchCacheCapacityChange(w.groupResource.String(), w.capacity, capacity)
    	w.capacity = capacity
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  6. pkg/ctrlz/assets/static/css/all.css

        border: 0;
        position: absolute;
        top: 3px;
        right: 1.3em;
        z-index: 5
    }
    
    button.copy-hide {
        transition: opacity .4s ease-in-out;
        opacity: 0
    }
    
    button.copy-show {
        transition: opacity 1.2s ease-in-out;
        opacity: 1
    }
    
    p {
        font-size: 1rem;
        font-weight: 300;
        line-height: 1.5;
        margin: .25em 0
    }
    
    @media (min-width: 768px) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    	// To preserve behavior of tests that assume a given capacity,
    	// resize it to th expected size.
    	wc.capacity = capacity
    	wc.cache = make([]*watchCacheEvent, capacity)
    	wc.lowerBoundCapacity = min(capacity, defaultLowerBoundCapacity)
    	wc.upperBoundCapacity = max(capacity, defaultUpperBoundCapacity)
    
    	return wc
    }
    
    type immediateTickerFactory struct{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval_test.go

    			eventsAddedToWatchcache: capacity + bufferSize,
    			intervalStartIndex:      0,
    		},
    		{
    			name:                    "watchCache over propagated, eventsAddedToWatchcache > capacity, intervalStartIndex at some offset",
    			eventsAddedToWatchcache: capacity + bufferSize,
    			intervalStartIndex:      5,
    		},
    	}
    
    	for _, c := range cases {
    		t.Run(c.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. android/guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

      }
    
      /**
       * Creates an {@code MonitorBasedArrayBlockingQueue} with the given (fixed) capacity and default
       * access policy.
       *
       * @param capacity the capacity of this queue
       * @throws IllegalArgumentException if {@code capacity} is less than 1
       */
      public MonitorBasedArrayBlockingQueue(int capacity) {
        this(capacity, false);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 19 19:24:36 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  10. pkg/volume/csi/nodeinfomanager/nodeinfomanager_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			Name:        "node1",
    			Annotations: annotations,
    			Labels:      labels,
    		},
    	}
    
    	if len(capacity) > 0 {
    		node.Status.Capacity = v1.ResourceList(capacity)
    		node.Status.Allocatable = v1.ResourceList(capacity)
    	}
    	return node
    }
    
    func marshall(nodeIDs nodeIDMap) string {
    	b, _ := json.Marshal(nodeIDs)
    	return string(b)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 17 02:02:59 UTC 2022
    - 34.3K bytes
    - Viewed (0)
Back to top