Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 281 for Size (0.04 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            when:
            filtered.configureEach(action)
    
            then:
            _ * provider1.size() >> 1
            _ * provider2.size() >> 2
            0 * _
    
            when:
            def result = toList(filtered)
    
            then:
            _ * provider1.size() >> 1
            _ * provider2.size() >> 2
            1 * provider1.calculateValue(_) >> ValueSupplier.Value.of([a])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/xcoff.go

    	Ocputype    uint8    // Reserved for CPU type
    	Otextpsize  uint8    // Requested text page size
    	Odatapsize  uint8    // Requested data page size
    	Ostackpsize uint8    // Requested stack page size
    	Oflags      uint8    // Flags And TLS Alignment
    	Otsize      uint64   // Text Size In Bytes
    	Odsize      uint64   // Data Size In Bytes
    	Obsize      uint64   // Bss Size In Bytes
    	Oentry      uint64   // Entry Point Address
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/manual.css

    h4 small,
    h5 small,
    h6 small {
    	font-size: 60%;
    	color: #e99b8f;
    	line-height: 0;
    }
    
    h1 {
    	font-size: 2.125em;
    }
    
    h2 {
    	font-size: 1.6875em;
    }
    
    h3,
    #toctitle,
    .sidebarblock>.content>.title {
    	font-size: 1.375em;
    }
    
    h4 {
    	font-size: 1.125em;
    }
    
    h5 {
    	font-size: 1.125em;
    }
    
    h6 {
    	font-size: 1em;
    }
    
    hr {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/Preconditions.java

        } else if (size < 0) {
          throw new IllegalArgumentException("negative size: " + size);
        } else { // index >= size
          return lenientFormat("%s (%s) must be less than size (%s)", desc, index, size);
        }
      }
    
      /**
       * Ensures that {@code index} specifies a valid <i>position</i> in an array, list or string of
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"!has(self.val1)":                                     2,
    				"self.val1.all(k, size(self.val1) > 0)":               2752508,
    				"self.val1.exists_one(k, size(self.val1) > 0)":        2359294,
    				"!self.val1.exists_one(k, size(self.val1) > 0)":       2359295,
    				"size(self.val1) == 2":                                4,
    				"size(self.val1.filter(k, size(self.val1) > 1)) == 1": 6684670,
    			},
    		},
    		{name: "objects",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderProfileTest.groovy

        </profiles>
    </project>
    """
            pomReader = new PomReader(locallyAvailableExternalResource, moduleIdentifierFactory)
    
            then:
            pomReader.parseActivePomProfiles().size() == 1
            pomReader.properties.size() == 7
            !pomReader.properties.containsKey('prop1')
            !pomReader.properties.containsKey('prop3')
            pomReader.properties['prop2'] == 'myproperty2'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

        return nullptr;
      }
      auto mins = tensor.quantization->min;
      auto maxs = tensor.quantization->max;
      if (mins.size() != maxs.size() || mins.empty()) return nullptr;
    
      llvm::SmallVector<llvm::APFloat, 4> min_maxs;
      min_maxs.reserve(mins.size() * 2);
      for (int i = 0, end = mins.size(); i < end; ++i) {
        llvm::APFloat min(mins[i]);
        llvm::APFloat max(maxs[i]);
        min_maxs.push_back(min);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

    // TF ops to match the op semantics of Tensorflow. Basically, it does:
    // 1) If the requested size is smaller or equal than the input tensorlist's
    // size, rewrite it to a Slice op so that only the first 'size' rows are
    // returned. 2) If the requested size is larger than the input tensorlist's
    // size. We need to create an additional tensorlist with 'size - input_size'
    // elements, and append it to the end of the input tensorlist.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        set("a", "a", "aaa") // size 4
        set("b", "bb", "bbbb") // size 6
        assertThat(cache.size()).isEqualTo(10)
    
        // Cause the size to grow to 12 should evict 'A'.
        set("c", "c", "c")
        cache.flush()
        assertThat(cache.size()).isEqualTo(8)
        assertAbsent("a")
        assertValue("b", "bb", "bbbb")
        assertValue("c", "c", "c")
    
        // Causing the size to grow to 10 should evict nothing.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

        }
    
        @CanIgnoreReturnValue
        Builder<K, V> combine(ImmutableSortedMap.Builder<K, V> other) {
          ensureCapacity(size + other.size);
          System.arraycopy(other.keys, 0, this.keys, this.size, other.size);
          System.arraycopy(other.values, 0, this.values, this.size, other.size);
          size += other.size;
          return this;
        }
    
        /**
         * Returns a newly-created immutable sorted map.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top