Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 76 for xlsb (0.07 sec)

  1. LICENSES/vendor/github.com/xlab/treeprint/LICENSE

    = vendor/github.com/xlab/treeprint licensed under: =
    
    The MIT License (MIT)
    Copyright © 2016 Maxim Kupriianov <******@****.***>
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the “Software”), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 09 00:50:43 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  2. src/compress/lzw/writer_test.go

    			for i := 0; i < b.N; i++ {
    				w := NewWriter(io.Discard, LSB, 8)
    				w.Write(buf1)
    				w.Close()
    			}
    		})
    		b.Run(fmt.Sprint("1e-Reuse", e), func(b *testing.B) {
    			b.SetBytes(int64(n))
    			w := NewWriter(io.Discard, LSB, 8)
    			for i := 0; i < b.N; i++ {
    				w.Write(buf1)
    				w.Close()
    				w.(*Writer).Reset(io.Discard, LSB, 8)
    			}
    		})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 12 11:00:47 UTC 2021
    - 5.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/id/UniqueId.java

        };
    
        private final String value;
    
        public static UniqueId from(UUID uuid) {
            long msb = uuid.getMostSignificantBits();
            long lsb = uuid.getLeastSignificantBits();
    
            byte[] bytes = new byte[16];
            ByteBuffer.wrap(bytes).putLong(msb).putLong(lsb);
            String value = ENCODING.encode(bytes);
    
            return new UniqueId(value);
        }
    
        public static UniqueId from(String string) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. src/hash/crc32/example_test.go

    package crc32_test
    
    import (
    	"fmt"
    	"hash/crc32"
    )
    
    func ExampleMakeTable() {
    	// In this package, the CRC polynomial is represented in reversed notation,
    	// or LSB-first representation.
    	//
    	// LSB-first representation is a hexadecimal number with n bits, in which the
    	// most significant bit represents the coefficient of x⁰ and the least significant
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 04 00:19:22 UTC 2015
    - 1K bytes
    - Viewed (0)
  5. src/internal/buildcfg/cfg_test.go

    	}
    	Error = nil
    	os.Setenv("GOARM64", "8.0")
    	if _ = goarm64(); Error == nil {
    		t.Errorf("Wrong parsing of GOARM64=8.0")
    	}
    	Error = nil
    	os.Setenv("GOARM64", "v8.0,lsb")
    	if _ = goarm64(); Error == nil {
    		t.Errorf("Wrong parsing of GOARM64=v8.0,lsb")
    	}
    	os.Setenv("GOARM64", "v8.0,lse")
    	if goarm64().Version != "v8.0" || goarm64().LSE != true || goarm64().Crypto != false {
    		t.Errorf("Wrong parsing of GOARM64=v8.0,lse")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/util/mime.map

    application/access             mdf              # Microsoft Access
    #application/excel              xls              # Microsoft Excel
    application/vnd.ms-excel       xls              # Microsoft Excel
    application/font-tdpfr         pfr              # TrueDoc Portable Font Resource
    application/futuresplash       spl              # Macromedia Flash
    application/hep                hep              # Hummingbird Host Explorer Profiles
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.9K bytes
    - Viewed (0)
  7. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/MsExcelExtractorTest.java

            msExcelExtractor = container.getComponent("msExcelExtractor");
        }
    
        public void test_getText() {
            final InputStream in = ResourceUtil.getResourceAsStream("extractor/msoffice/test.xls");
            final String content = msExcelExtractor.getText(in, null).getContent();
            CloseableUtil.closeQuietly(in);
            logger.info(content);
            assertTrue(content.contains("テスト"));
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/MsExcelExtractor.java

    import org.codelibs.fess.crawler.entity.ExtractData;
    import org.codelibs.fess.crawler.exception.CrawlerSystemException;
    import org.codelibs.fess.crawler.exception.ExtractException;
    
    /**
     * Gets a text from .xls file.
     *
     * @author shinsuke
     *
     */
    public class MsExcelExtractor extends AbstractExtractor {
        /*
         * (non-Javadoc)
         *
         * @see
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/cli-runtime/go.mod

    	github.com/pkg/errors v0.9.1 // indirect
    	github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
    	github.com/x448/float16 v0.8.4 // indirect
    	github.com/xlab/treeprint v1.2.0 // indirect
    	go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect
    	golang.org/x/net v0.25.0 // indirect
    	golang.org/x/oauth2 v0.20.0 // indirect
    	golang.org/x/sys v0.20.0 // indirect
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top