Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pbit32 (0.18 sec)

  1. platforms/core-execution/hashing/src/main/java/org/gradle/internal/hash/HashCode.java

        @VisibleForTesting
        static class HashCode128 extends HashCode {
            private final long bits1;
            private final long bits2;
    
            public HashCode128(long bits1, long bits2) {
                this.bits1 = bits1;
                this.bits2 = bits2;
            }
    
            @Override
            public int length() {
                return 16;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 19:25:07 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  2. src/internal/trace/internal/oldtrace/parser.go

    		}
    
    		var pid32 int32
    		if pid == math.MaxUint64 {
    			pid32 = -1
    		} else {
    			pid32 = int32(pid)
    		}
    
    		v, err := p.readVal()
    		if err != nil {
    			return err
    		}
    
    		*ev = rawEvent{
    			typ:         EvBatch,
    			args:        p.args[:0],
    			batchPid:    pid32,
    			batchOffset: off,
    		}
    		ev.args = append(ev.args, pid, v)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
Back to top