Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 76 for xlsb (0.07 sec)

  1. go.sum

    github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU=
    github.com/xlab/treeprint v1.2.0 h1:HzHnuAF1plUN2zGlAFHbSQP2qJ0ZAD3XF5XD7OesXRQ=
    github.com/xlab/treeprint v1.2.0/go.mod h1:gj5Gd3gPdKtR1ikdDK6fnFLdmIS0X30kTTuNd/WEJu0=
    github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  2. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"application/vnd.sealed.eml",
    				"application/vnd.sealed.mht",
    				"application/vnd.sealed.net",
    				"application/vnd.sealed.ppt",
    				"application/vnd.sealed.tiff",
    				"application/vnd.sealed.xls",
    				"application/vnd.sealedmedia.softseal.html",
    				"application/vnd.sealedmedia.softseal.pdf",
    				"application/vnd.seemail",
    				"application/vnd.sema",
    				"application/vnd.semd",
    				"application/vnd.semf",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  3. src/math/big/nat.go

    		} else {
    			z = z.make(n)
    		}
    		copy(z, x)
    		z[j] |= m
    		// no need to normalize
    		return z
    	}
    	panic("set bit is not 0 or 1")
    }
    
    // bit returns the value of the i'th bit, with lsb == bit 0.
    func (x nat) bit(i uint) uint {
    	j := i / _W
    	if j >= uint(len(x)) {
    		return 0
    	}
    	// 0 <= j < len(x)
    	return uint(x[j] >> (i % _W) & 1)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM.rules

    (MOVHreg (MOVWconst [c])) => (MOVWconst [int32(int16(c))])
    (MOVHUreg (MOVWconst [c])) => (MOVWconst [int32(uint16(c))])
    (MOVWreg (MOVWconst [c])) => (MOVWconst [c])
    // BFX: Width = c >> 8, LSB = c & 0xff, result = d << (32 - Width - LSB) >> (32 - Width)
    (BFX [c] (MOVWconst [d])) => (MOVWconst [d<<(32-uint32(c&0xff)-uint32(c>>8))>>(32-uint32(c>>8))])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 90.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		// bit to the end bit (inclusive) are combined with arg0 using the logical
    		// operation specified. Bit indices are specified from left to right - the
    		// MSB is 0 and the LSB is 63.
    		//
    		// Examples:
    		//               |          aux         |
    		// | instruction | start | end | amount |          arg0         |          arg1         |         result        |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.21.md

    - github.com/niemeyer/pretty: [a10e7ca](https://github.com/niemeyer/pretty/tree/a10e7ca)
    - github.com/xlab/treeprint: [a009c39](https://github.com/xlab/treeprint/tree/a009c39)
    - go.starlark.net: 8dd3e2e
    - golang.org/x/term: 6a3ed07
    - sigs.k8s.io/kustomize/api: v0.8.5
    - sigs.k8s.io/kustomize/cmd/config: v0.9.7
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.20.md

    - github.com/go-ini/ini: [v1.9.0](https://github.com/go-ini/ini/tree/v1.9.0)
    - github.com/ugorji/go: [v1.1.4](https://github.com/ugorji/go/tree/v1.1.4)
    - github.com/xlab/handysort: [fb3537e](https://github.com/xlab/handysort/tree/fb3537e)
    - github.com/xordataexchange/crypt: [b2862e3](https://github.com/xordataexchange/crypt/tree/b2862e3)
    - vbom.ml/util: db5cfe1
    
    
    
    # v1.20.0-rc.0
    
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.25.md

    - github.com/seccomp/libseccomp-golang: [3879420 → f33da4d](https://github.com/seccomp/libseccomp-golang/compare/3879420...f33da4d)
    - github.com/xlab/treeprint: [a009c39 → v1.1.0](https://github.com/xlab/treeprint/compare/a009c39...v1.1.0)
    - github.com/yuin/goldmark: [v1.4.1 → v1.4.13](https://github.com/yuin/goldmark/compare/v1.4.1...v1.4.13)
    - go.etcd.io/etcd/api/v3: v3.5.1 → v3.5.4
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/zip_sum_test/testdata/zip_sums.csv

    github.com/tdewolff/test,v1.0.4,h1:ih38SXuQJ32Hng5EtSW32xqEsVeMnPp6nNNRPhBBDE8=,807205136d8f39bb7533d10b72932a183f15b45c385cd5464ae9d06e4af43337
    github.com/tealeg/xlsx,v1.0.5,h1:+f8oFmvY8Gw1iUXzPk+kz+4GpbDZPK1FhPiQRd+ypgE=,ff32f4336aed03df7c9cb7a4df9f1f42a1c64fe5d17c34566159511943d24bde
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 18 17:29:01 UTC 2020
    - 334.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    // of a 10-bit UN.M49 code. To search an UN.M49 code in fromM49, search in
    //
    //	fromM49[m49Index[msb39(code)]:m49Index[msb3(code)+1]]
    //
    // for an entry where the first 7 bits match the 7 lsb of the UN.M49 code.
    // The region code is stored in the 9 lsb of the indexed value.
    // Size: 18 bytes, 9 elements
    var m49Index = [9]int16{
    	0, 59, 108, 143, 181, 220, 259, 291,
    	333,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
Back to top