Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for xlsb (0.16 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/impl/MimeTypeHelperImplTest.java

                    "hoge.docx");
            assertContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "test/text1.txt", "hoge.xlsx");
            assertContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet", "extractor/msoffice/test.xlsx", "hoge.xlsx");
            assertContentType("application/vnd.openxmlformats-officedocument.presentationml.presentation", "test/text1.txt", "hoge.pptx");
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  2. fess-crawler/src/test/resources/extractor/msoffice/test.xls

    Shinsuke Sugaya <******@****.***> 1444529815 +0900
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 22K bytes
    - Viewed (0)
  3. fess-crawler/src/test/resources/extractor/msoffice/test_as.xls

    Shinsuke Sugaya <******@****.***> 1444529815 +0900
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 19K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/armerror.s

    	BFX	$12, $41, R2, R3   // ERROR "wrong width or LSB"
    	BFX	$12, $-2, R2       // ERROR "wrong width or LSB"
    	BFXU	$40, $4, R2, R3    // ERROR "wrong width or LSB"
    	BFXU	$-40, $4, R2       // ERROR "wrong width or LSB"
    	BFX	$-2, $4, R2, R3    // ERROR "wrong width or LSB"
    	BFXU	$4, R2, R5, R2     // ERROR "missing or wrong LSB"
    	BFXU	$4, R2, R5         // ERROR "missing or wrong LSB"
    	BFC	$12, $8, R2, R3    // ERROR "illegal combination"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 14:06:21 UTC 2017
    - 14.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/op.go

    	default:
    		panic("bad BoundsKind")
    	}
    }
    
    // arm64BitField is the GO type of ARM64BitField auxInt.
    // if x is an ARM64BitField, then width=x&0xff, lsb=(x>>8)&0xff, and
    // width+lsb<64 for 64-bit variant, width+lsb<32 for 32-bit variant.
    // the meaning of width and lsb are instruction-dependent.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    		u := (x >> 23) & 1
    		if u == 0 {
    			d = -d
    		}
    		return PCRel(d)
    
    	case arg_lsb_width:
    		lsb := (x >> 7) & (1<<5 - 1)
    		msb := (x >> 16) & (1<<5 - 1)
    		if msb < lsb || msb >= 32 {
    			return nil
    		}
    		return Imm(msb + 1 - lsb)
    
    	case arg_mem_R:
    		Rn := Reg((x >> 16) & (1<<4 - 1))
    		return Mem{Base: Rn, Mode: AddrOffset}
    
    	case arg_mem_R_pm_R_postindex:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  7. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractorTest.java

        }
    
        public void test_getTika_msexcelx() {
            final InputStream in = ResourceUtil.getResourceAsStream("extractor/msoffice/test.xlsx");
            final ExtractData extractData = tikaExtractor.getText(in, null);
            final String content = extractData.getContent();
            CloseableUtil.closeQuietly(in);
            logger.info(content);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/value.go

    		return fmt.Sprintf(" [%d]", v.AuxInt)
    	case auxUInt8:
    		return fmt.Sprintf(" [%d]", v.AuxUInt8())
    	case auxARM64BitField:
    		lsb := v.AuxArm64BitField().getARM64BFlsb()
    		width := v.AuxArm64BitField().getARM64BFwidth()
    		return fmt.Sprintf(" [lsb=%d,width=%d]", lsb, width)
    	case auxFloat32, auxFloat64:
    		return fmt.Sprintf(" [%g]", v.AuxFloat())
    	case auxString:
    		return fmt.Sprintf(" {%q}", v.Aux)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  9. src/math/big/ftoa.go

    	// TODO(gri) strconv/ftoa.do describes a shortcut in some cases.
    	// See if we can use it (in adjusted form) here as well.
    
    	// 1) Compute normalized mantissa mant and exponent exp for x such
    	// that the lsb of mant corresponds to 1/2 ulp for the precision of
    	// x (i.e., for mant we want x.prec + 1 bits).
    	mant := nat(nil).set(x.mant)
    	exp := int(x.exp) - mant.bitLen()
    	s := mant.bitLen() - int(x.prec+1)
    	switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  10. pkg/util/iptables/testing/parse_test.go

    		{
    			name: "local source",
    			rule: `-A KUBE-XLB-GNZBNJ2PO5MGZ6GT -m comment --comment "masquerade LOCAL traffic for ns2/svc2:p80 LB IP" -m addrtype --src-type LOCAL -j KUBE-MARK-MASQ`,
    			parsed: &Rule{
    				Raw:        `-A KUBE-XLB-GNZBNJ2PO5MGZ6GT -m comment --comment "masquerade LOCAL traffic for ns2/svc2:p80 LB IP" -m addrtype --src-type LOCAL -j KUBE-MARK-MASQ`,
    				Chain:      iptables.Chain("KUBE-XLB-GNZBNJ2PO5MGZ6GT"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 26K bytes
    - Viewed (0)
Back to top