Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 152 for Size (0.04 sec)

  1. src/runtime/malloc.go

    		// The OS init code failed to fetch the physical page size.
    		throw("failed to get system page size")
    	}
    	if physPageSize > maxPhysPageSize {
    		print("system page size (", physPageSize, ") is larger than maximum page size (", maxPhysPageSize, ")\n")
    		throw("bad system page size")
    	}
    	if physPageSize < minPhysPageSize {
    		print("system page size (", physPageSize, ") is smaller than minimum page size (", minPhysPageSize, ")\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/javadoc.css

        color:var(--link-color-active);
    }
    pre {
        font-family:var(--code-font-family);
        font-size:1em;
    }
    h1 {
        font-size:1.428em;
    }
    h2 {
        font-size:1.285em;
    }
    h3 {
        font-size:1.14em;
    }
    h4 {
        font-size:1.072em;
    }
    h5 {
        font-size:1.001em;
    }
    h6 {
        font-size:0.93em;
    }
    /* Disable font boosting for selected elements */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  3. 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)
  4. src/runtime/mbitmap.go

    		off := alignUp(uintptr(cheaprand())%dataSize, goarch.PtrSize)
    		size := dataSize - off
    		if size == 0 {
    			off -= goarch.PtrSize
    			size += goarch.PtrSize
    		}
    		interior := x + off
    		size -= alignDown(uintptr(cheaprand())%size, goarch.PtrSize)
    		if size == 0 {
    			size = goarch.PtrSize
    		}
    		// Round up the type to the size of the type.
    		size = (size + gctyp.Size_ - 1) / gctyp.Size_ * gctyp.Size_
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

            assertEquals("maven-it-plugin-b", pom.getValue("build/plugins[2]/artifactId"));
            assertEquals(1, ((List<?>) pom.getValue("build/plugins[1]/executions")).size());
            assertEquals("maven-it-plugin-a", pom.getValue("reporting/plugins[1]/artifactId"));
            assertEquals(1, ((List<?>) pom.getValue("reporting/plugins[1]/reportSets")).size());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Sets.java

      public static <E> Set<Set<E>> combinations(Set<E> set, final int size) {
        final ImmutableMap<E, Integer> index = Maps.indexMap(set);
        checkNonnegative(size, "size");
        checkArgument(size <= index.size(), "size (%s) must be <= set.size() (%s)", size, index.size());
        if (size == 0) {
          return ImmutableSet.<Set<E>>of(ImmutableSet.<E>of());
        } else if (size == index.size()) {
          return ImmutableSet.<Set<E>>of(index.keySet());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top