Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 0_80 (0.06 sec)

  1. maven-embedder/src/test/java/org/apache/maven/cli/transfer/FileSizeFormatTest.java

            long _4000_bytes = 4000L;
            long _8000_bytes = 2L * _4000_bytes;
            long _50_kilobytes = 50000L;
            assertEquals("0/8.0 kB", format.formatProgress(_0_bytes, _8000_bytes));
            assertEquals("0.4/8.0 kB", format.formatProgress(_400_bytes, _8000_bytes));
            assertEquals("4.0/8.0 kB", format.formatProgress(_4000_bytes, _8000_bytes));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 21:48:41 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/primitives/UnsignedBytes.java

      private UnsignedBytes() {}
    
      /**
       * The largest power of two that can be represented as an unsigned {@code byte}.
       *
       * @since 10.0
       */
      public static final byte MAX_POWER_OF_TWO = (byte) 0x80;
    
      /**
       * The largest value that fits into an unsigned byte.
       *
       * @since 13.0
       */
      public static final byte MAX_VALUE = (byte) 0xFF;
    
      private static final int UNSIGNED_MASK = 0xFF;
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  3. settings.gradle.kts

        id("io.github.gradle.gradle-enterprise-conventions-plugin").version("0.10.1")
        id("org.gradle.toolchains.foojay-resolver-convention") version ("0.8.0")
    //    id("net.ltgt.errorprone").version("3.1.0")
    }
    
    includeBuild("build-logic-commons")
    includeBuild("build-logic")
    
    apply(from = "gradle/shared-with-buildSrc/mirrors.settings.gradle.kts")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. internal/grid/connection.go

    	}
    
    	return ww.writeFrame(w, frame)
    }
    
    // writeFrame writes frame binary representation into w.
    func (ww *wsWriter) writeFrame(w io.Writer, f ws.Frame) error {
    	const (
    		bit0  = 0x80
    		len7  = int64(125)
    		len16 = int64(^(uint16(0)))
    		len64 = int64(^(uint64(0)) >> 1)
    	)
    
    	bts := ww.tmp[:]
    	if f.Header.Fin {
    		bts[0] |= bit0
    	}
    	bts[0] |= f.Header.Rsv << 4
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top