Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for getWeights (0.34 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/MultiLineBuildProgressAreaTest.groovy

            then:
            interaction {
                (progressArea.getHeight() - 1) * ansi.newline()
                0 * ansi._
            }
        }
    
        def "redraw the work in progress area"() {
            given:
            fillArea()
    
            when:
            redraw()
    
            then:
            interaction {
                (progressArea.getHeight() - 1) * ansi.newline()
                1 * ansi.cursorUp(5)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      auto input_type = transpose_conv.getInput()
                            .getType()
                            .dyn_cast_or_null<mlir::RankedTensorType>();
      auto weight_type = transpose_conv.getWeights()
                             .getType()
                             .dyn_cast_or_null<mlir::RankedTensorType>();
      if (input_type && weight_type && input_type.hasStaticShape() &&
          weight_type.hasStaticShape()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/MultiLineBuildProgressArea.java

        }
    
        /**
         * The location of the top left of this progress area.
         */
        public Cursor getWritePosition() {
            return statusAreaPos;
        }
    
        public int getHeight() {
            return entries.size();
        }
    
        @Override
        public void resizeBuildProgressTo(int buildProgressLabelCount) {
            int delta = buildProgressLabelCount - buildProgressLabels.size();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 5K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGeneratorTest.java

            BufferedImage img = ImageIO.read(file);
            logger.debug("width: {}, height: {}", img.getWidth(), img.getHeight());
            assertEquals("Image Width", width, img.getWidth());
            assertEquals("Image Height", height, img.getHeight());
        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. maven-jline/src/main/java/org/apache/maven/jline/FastTerminal.java

            getTerminal().setSize(size);
        }
    
        @Override
        public int getWidth() {
            return getTerminal().getWidth();
        }
    
        @Override
        public int getHeight() {
            return getTerminal().getHeight();
        }
    
        @Override
        public Size getBufferSize() {
            return getTerminal().getBufferSize();
        }
    
        @Override
        public void flush() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/LocalCache.java

                  } else if (map.isExpired(e, now)) {
                    // This is a duplicate check, as preWriteCleanup already purged expired
                    // entries, but let's accommodate an incorrect expiration queue.
                    enqueueNotification(
                        entryKey, hash, value, valueReference.getWeight(), RemovalCause.EXPIRED);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LocalCache.java

                  } else if (map.isExpired(e, now)) {
                    // This is a duplicate check, as preWriteCleanup already purged expired
                    // entries, but let's accommodate an incorrect expiration queue.
                    enqueueNotification(
                        entryKey, hash, value, valueReference.getWeight(), RemovalCause.EXPIRED);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java

                    reader.setInput(input);
                    final ImageReadParam param = reader.getDefaultReadParam();
                    final int width = reader.getWidth(0);
                    final int height = reader.getHeight(0);
                    if (width <= 0 || height <= 0) {
                        return Result.NO_IMAGE;
                    }
                    if (!fessConfig.validateThumbnailSize(width, height)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top