Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for zig (0.04 sec)

  1. src/image/jpeg/scan.go

    			}
    
    			zig, err = d.refineNonZeroes(b, zig, zigEnd, int32(val0), delta)
    			if err != nil {
    				return err
    			}
    			if zig > zigEnd {
    				return FormatError("too many coefficients")
    			}
    			if z != 0 {
    				b[unzig[zig]] = z
    			}
    		}
    	}
    	if d.eobRun > 0 {
    		d.eobRun--
    		if _, err := d.refineNonZeroes(b, zig, zigEnd, -1, delta); err != nil {
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Client-TLSv10-ECDHE-ECDSA-AES

    000002a0  a8 31 00 8a 30 81 87 02  42 01 21 7e c2 26 cb 5e  |.1..0...B.!~.&.^|
    000002b0  f1 2a d2 9b 7f 3f b4 d4  28 5e 63 5a 20 aa 28 87  |.*...?..(^cZ .(.|
    000002c0  bb dd 5c 6a 91 a2 2d 03  7a 69 67 8b ca 84 a6 1f  |..\j..-.zig.....|
    000002d0  d3 58 40 eb 5c 54 95 96  05 d0 37 63 e4 a6 1b 51  |.X@.\T....7c...Q|
    000002e0  9a d0 93 31 82 e6 8e a0  af 29 64 02 41 4c ff ac  |...1.....)d.AL..|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

     * </code></td>
     * </tr>
     * 
     * <tr>
     * <td width="20%"><code>
     *  smb://host/share/foo/bar/
     * </code></td>
     * <td width="20%"><code>
     *  /share2/zig/zag
     * </code></td>
     * <td><code>
     *  smb://host/share2/zig/zag
     * </code></td>
     * </tr>
     * 
     * <tr>
     * <td width="20%"><code>
     *  smb://host/share/foo/bar/
     * </code></td>
     * <td width="20%"><code>
     *  ../zip/
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  4. src/cmd/go/internal/work/buildid.go

    				// C compiler may use. (Clang and GCC mostly seem to follow the scheme X.Y.Z,
    				// but in https://go.dev/issue/64619 we saw "8.3 [DragonFly]", and who knows
    				// what other C compilers like "zig cc" might report?)
    				next := fields[i+1]
    				if len(next) > 0 && next[0] >= '0' && next[0] <= '9' {
    					version = line
    					break
    				}
    			}
    		}
    		if version != "" {
    			break
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    		a = append(a, "-fno-caret-diagnostics")
    	}
    	// clang is too smart about command-line arguments
    	if b.gccSupportsFlag(compiler, "-Qunused-arguments") {
    		a = append(a, "-Qunused-arguments")
    	}
    
    	// zig cc passes --gc-sections to the underlying linker, which then causes
    	// undefined symbol errors when compiling with cgo but without C code.
    	// https://github.com/golang/go/issues/52690
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top