Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 672 for fopacity (0.11 sec)

  1. common-protos/k8s.io/api/storage/v1beta1/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
    - 24.9K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/binder.go

    	if err != nil {
    		return false, err
    	}
    
    	sizeInBytes := quantity.Value()
    	for _, capacity := range capacities {
    		if capacity.StorageClassName == storageClass.Name &&
    			capacitySufficient(capacity, sizeInBytes) &&
    			b.nodeHasAccess(logger, node, capacity) {
    			// Enough capacity found.
    			return true, nil
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. pkg/volume/metrics_statfs_test.go

    	metrics = NewMetricsStatFS(tmpDir)
    	actual, err = metrics.GetMetrics()
    	if err != nil {
    		t.Errorf("Unexpected error when calling GetMetrics %v", err)
    	}
    
    	if a := actual.Capacity.Value(); a <= 0 {
    		t.Errorf("Expected Capacity %d to be greater than 0.", a)
    	}
    	if a := actual.Available.Value(); a <= 0 {
    		t.Errorf("Expected Available %d to be greater than 0.", a)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 02 23:01:59 UTC 2017
    - 2K bytes
    - Viewed (0)
  4. src/internal/saferio/io.go

    		n -= next
    		off += int64(next)
    	}
    	return buf, nil
    }
    
    // SliceCapWithSize returns the capacity to use when allocating a slice.
    // After the slice is allocated with the capacity, it should be
    // built using append. This will avoid allocating too much memory
    // if the capacity is large and incorrect.
    //
    // A negative result means that the value is always too big.
    func SliceCapWithSize(size, c uint64) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 00:34:05 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/gc/DefaultSlidingWindow.java

    public class DefaultSlidingWindow<T> implements SlidingWindow<T> {
        final LinkedBlockingDeque<T> deque;
        final ReentrantLock lock = new ReentrantLock();
    
        public DefaultSlidingWindow(int capacity) {
            this.deque = new LinkedBlockingDeque<T>(capacity);
        }
    
        @Override
        public void slideAndInsert(T element) {
            lock.lock();
            try {
                while (!deque.offerLast(element)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

                val opacity = Attribute.of("opacity", String::class.java)
    
                configurations {
                    consumable("blueRoundTransparentElements") {
                        attributes.attribute(color, "blue")
                        attributes.attribute(shape, "round")
                        attributes.attribute(opacity, "transparent")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  7. pkg/apis/storage/types.go

    //
    // 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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.cc

          absl::MutexLock l(&mu_);
          // Do not update state if the block is already to be evicted.
          if (block->timestamp != 0) {
            // Use capacity() instead of size() to account for all  memory
            // used by the cache.
            cache_size_ += block->data.capacity();
            // Put to beginning of LRA list.
            lra_list_.erase(block->lra_iterator);
            lra_list_.push_front(key);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 16 01:39:09 UTC 2020
    - 11.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/storage/v1/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1beta1/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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 25K bytes
    - Viewed (0)
Back to top