Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for 0x7fff (0.09 sec)

  1. maven-core/src/main/java/org/apache/maven/project/ProjectModelResolver.java

     * declared in the POM.
     *
     */
    public class ProjectModelResolver implements ModelResolver {
    
        private static final int MAX_CAP = 0x7fff;
    
        private final RepositorySystemSession session;
    
        private final RequestTrace trace;
    
        private final String context = "project";
    
        private List<RemoteRepository> repositories;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/obj9.go

    		// Try converting MOVD $const,Rx into ADDIS/ORIS $s32>>16,R0,Rx
    		switch {
    		case isS32 && p.From.Offset&0xFFFF == 0 && p.From.Offset != 0:
    			p.As = AADDIS
    			p.From.Offset >>= 16
    			p.Reg = REG_R0
    
    		case isU32 && p.From.Offset&0xFFFF == 0 && p.From.Offset != 0:
    			p.As = AORIS
    			p.From.Offset >>= 16
    			p.Reg = REG_R0
    
    		case isS32 || isU32 || isS34:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/deadstore.go

    // does a -1 shadowRange, which is what sparsemap.get returns
    // on a failed lookup).
    type shadowRange int32
    
    func (sr shadowRange) lo() int64 {
    	return int64(sr & 0xffff)
    }
    
    func (sr shadowRange) hi() int64 {
    	return int64((sr >> 16) & 0xffff)
    }
    
    // contains reports whether [lo:hi] is completely within sr.
    func (sr shadowRange) contains(lo, hi int64) bool {
    	return lo >= sr.lo() && hi <= sr.hi()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_messages_test.go

    	}
    	if rand.Intn(10) > 5 {
    		m.extendedMasterSecret = true
    	}
    	for i := 0; i < rand.Intn(5); i++ {
    		m.supportedVersions = append(m.supportedVersions, uint16(rand.Intn(0xffff)+1))
    	}
    	if rand.Intn(10) > 5 {
    		m.cookie = randomBytes(rand.Intn(500)+1, rand)
    	}
    	for i := 0; i < rand.Intn(5); i++ {
    		var ks keyShare
    		ks.group = CurveID(rand.Intn(30000) + 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  5. guava/src/com/google/common/net/InetAddresses.java

          checkArgument(
              (port >= 0) && (port <= 0xffff), "port '%s' is out of range (0 <= port <= 0xffff)", port);
          checkArgument(
              (flags >= 0) && (flags <= 0xffff),
              "flags '%s' is out of range (0 <= flags <= 0xffff)",
              flags);
    
          this.server = MoreObjects.firstNonNull(server, ANY4);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  6. src/image/gif/writer_test.go

    	pals := []color.Palette{{
    		color.RGBA{0x00, 0x00, 0x00, 0xff},
    		color.RGBA{0x01, 0x00, 0x00, 0xff},
    		color.RGBA{0x02, 0x00, 0x00, 0xff},
    	}, {
    		color.RGBA{0x00, 0x00, 0x00, 0xff},
    		color.RGBA{0x00, 0x01, 0x00, 0xff},
    	}, {
    		color.RGBA{0x00, 0x00, 0x03, 0xff},
    		color.RGBA{0x00, 0x00, 0x02, 0xff},
    		color.RGBA{0x00, 0x00, 0x01, 0xff},
    		color.RGBA{0x00, 0x00, 0x00, 0xff},
    	}, {
    		color.RGBA{0x10, 0x07, 0xf0, 0xff},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. src/syscall/syscall_aix.go

    	if !w.Stopped() {
    		return -1
    	}
    	return Signal(w>>8) & 0xFF
    }
    
    func (w WaitStatus) Exited() bool { return w&0xFF == 0 }
    func (w WaitStatus) ExitStatus() int {
    	if !w.Exited() {
    		return -1
    	}
    	return int((w >> 8) & 0xFF)
    }
    
    func (w WaitStatus) Signaled() bool { return w&0x40 == 0 && w&0xFF != 0 }
    func (w WaitStatus) Signal() Signal {
    	if !w.Signaled() {
    		return -1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:50:55 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

            for (int i = 0; i < sz; i++) {
                char ch = str.charAt(i);
    
                // handle unicode
                if (ch > 0xfff) {
                    out.write("\\u" + hex(ch));
                } else if (ch > 0xff) {
                    out.write("\\u0" + hex(ch));
                } else if (ch > 0x7f) {
                    out.write("\\u00" + hex(ch));
                } else if (ch < 32) {
                    switch (ch) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. src/cmd/cover/cover.go

    		start := f.fset.Position(block.startByte)
    		end := f.fset.Position(block.endByte)
    
    		start, end = dedup(start, end)
    
    		fmt.Fprintf(w, "\t\t%d, %d, %#x, // [%d]\n", start.Line, end.Line, (end.Column&0xFFFF)<<16|(start.Column&0xFFFF), i)
    	}
    
    	// Close the position array.
    	fmt.Fprintf(w, "\t},\n")
    
    	// Initialize the position array field.
    	fmt.Fprintf(w, "\tNumStmt: [%d]uint16{\n", len(f.blocks))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. src/net/netip/netip.go

    // address ff02::1.
    func IPv6LinkLocalAllNodes() Addr { return AddrFrom16([16]byte{0: 0xff, 1: 0x02, 15: 0x01}) }
    
    // IPv6LinkLocalAllRouters returns the IPv6 link-local all routers multicast
    // address ff02::2.
    func IPv6LinkLocalAllRouters() Addr { return AddrFrom16([16]byte{0: 0xff, 1: 0x02, 15: 0x02}) }
    
    // IPv6Loopback returns the IPv6 loopback address ::1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top