Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 623 for fopacity (0.15 sec)

  1. src/runtime/mgclimit_test.go

    		// CPU resources now.
    		l.ResetCapacity(advance(0), procs-10)
    		if l.Fill() != l.Capacity() {
    			t.Errorf("failed lower fill to new capacity %d, got fill %d", l.Capacity(), l.Fill())
    		}
    		if !l.Limiting() {
    			t.Errorf("limiter is disabled after resetting capacity lower")
    		}
    		if expect := uint64((CapacityPerProc/2 + 6*time.Millisecond) * procs); l.Overflow() != expect+baseOverflow {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 13 16:02:20 UTC 2022
    - 9K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/scorer.go

    	rawScoringFunction := helper.BuildBrokenLinearFunction(scoringFunctionShape)
    	f := func(requested, capacity int64) int64 {
    		if capacity == 0 || requested > capacity {
    			return rawScoringFunction(maxUtilization)
    		}
    
    		return rawScoringFunction(requested * maxUtilization / capacity)
    	}
    	return func(classResources classResourceMap) int64 {
    		var nodeScore int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 13 11:08:45 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  3. pkg/volume/util/fs/fs_windows_test.go

    		t.Fatalf("TestInfo failed: %s", err.Error())
    	}
    	availablebytes, capacity, usage, inodesTotal, inodesFree, inodeUsage, err = Info(tmpfile1.Name())
    	validateInfo(t, availablebytes, capacity, usage, inodesTotal, inodeUsage, inodesFree)
    }
    
    func validateInfo(t *testing.T, availablebytes int64, capacity int64, usage int64, inodesTotal int64, inodeUsage int64, inodesFree int64) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pkg/kubelet/cm/container_manager_linux_test.go

    		},
    		{
    			name: "capacity property does not have ephemeral-storage",
    			cm: &containerManagerImpl{
    				cadvisorInterface: mockCadvisor,
    				capacity:          v1.ResourceList{},
    			},
    			expectedResourceQuantity:   resource.NewQuantity(ephemeralStorageFromCadvisor, resource.BinarySI),
    			expectedNoEphemeralStorage: false,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. common-protos/k8s.io/api/storage/v1alpha1/generated.proto

    //
    // The following three cases all imply that no capacity is available for
    // a certain combination:
    // - no object exists with suitable topology and storage class name
    // - such an object exists, but the capacity is unset
    // - such an object exists, but the capacity is zero
    //
    // The producer of these objects can decide which approach is more suitable.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceReport.js

    }
    
    function enableSectionSign() {
        $('.data-row').mouseenter(function () {
            $('#section-sign-' + $(this).attr('scenario')).css('opacity', '1');
        }).mouseleave(function () {
            $('#section-sign-' + $(this).attr('scenario')).css('opacity', '0');
        });
    
        $('.section-sign').click(function () {
            var $temp = $("<input>");
            $("body").append($temp);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top