Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 183 for qword (0.09 sec)

  1. src/go/types/sizes.go

    //   - Arrays and structs are aligned per spec definition; all other
    //     types are naturally aligned with a maximum alignment MaxAlign.
    //
    // *StdSizes implements Sizes.
    type StdSizes struct {
    	WordSize int64 // word size in bytes - must be >= 4 (32bits)
    	MaxAlign int64 // maximum alignment in bytes - must be >= 1
    }
    
    func (s *StdSizes) Alignof(T Type) (result int64) {
    	defer func() {
    		assert(result >= 1)
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. src/go/doc/comment/wrap_test.go

    	best := make([]int64, len(words)+1)
    	bestleft := make([]int, len(words)+1)
    	best[0] = 0
    	for i, w := range words {
    		if utf8.RuneCountInString(w) >= max {
    			// Overlong word must appear on line by itself. No effect on score.
    			best[i+1] = best[i]
    			continue
    		}
    		best[i+1] = 1e18
    		p := wrapPenalty(w)
    		n := -1
    		for j := i; j >= 0; j-- {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/mime.map

    application/mac-binhex40       hqx              # Macintosh binhexed archives
    application/mspowerpoint       ppt              # Microsoft Powerpoint
    application/msword             doc              # Microsoft Word
    application/octet-stream       bin exe ani      # Binary File
    application/oda                oda
    application/pagemaker          pm5 pt5 pm       # PageMaker
    application/pdf                pdf              # Adobe Acrobat
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.9K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/testing/RelationshipTester.java

    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    final class RelationshipTester<T> {
    
      static class ItemReporter {
        String reportItem(Item<?> item) {
          return item.toString();
        }
      }
    
      /**
       * A word about using {@link Equivalence}, which automatically checks for {@code null} and
       * identical inputs: This sounds like it ought to be a problem here, since the goals of this class
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 25 11:57:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. src/runtime/memclr_arm64.s

    	STP	(ZR, ZR), 16(R0)
    	STP	(ZR, ZR), 32(R0)
    	SUBS	$64, R4, R4
    	STP	(ZR, ZR), 48(R0)
    	ADD	$64, R0, R0
    	BGE	loop_zva_prolog
    
    	ADD	R4, R0, R0
    
    aligned:
    	SUB	R5, R1, R1
    
    loop_zva:
    	WORD	$0xd50b7420 // DC ZVA, R0
    	ADD	R5, R0, R0
    	SUBS	R5, R1, R1
    	BHS	loop_zva
    	ANDS	R6, R1, R1
    	BNE	tail_maybe_long
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/testing/RelationshipTester.java

    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    final class RelationshipTester<T> {
    
      static class ItemReporter {
        String reportItem(Item<?> item) {
          return item.toString();
        }
      }
    
      /**
       * A word about using {@link Equivalence}, which automatically checks for {@code null} and
       * identical inputs: This sounds like it ought to be a problem here, since the goals of this class
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 25 11:57:12 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. src/math/big/floatmarsh_test.go

    		buf []byte
    		msg string
    	}{
    		{
    			[]byte{0x1, 0x2a, 0x20, 0x20, 0x20, 0x20, 0x0, 0x20, 0x20, 0x20, 0x0, 0x20, 0x20, 0x20, 0x20, 0x0, 0x0, 0x0, 0x0, 0xc},
    			"Float.GobDecode: msb not set in last word",
    		},
    		{
    			[]byte{1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0},
    			"Float.GobDecode: nonzero finite number with empty mantissa",
    		},
    	} {
    		err := NewFloat(0).GobDecode(tc.buf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 23 18:18:05 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/cases/cases.go

    func Lower(t language.Tag, opts ...Option) Caser {
    	return Caser{makeLower(t, getOpts(opts...))}
    }
    
    // Title returns a Caser for language-specific title casing. It uses an
    // approximation of the default Unicode Word Break algorithm.
    func Title(t language.Tag, opts ...Option) Caser {
    	return Caser{makeTitle(t, getOpts(opts...))}
    }
    
    // Fold returns a Caser that implements Unicode case folding. The returned Caser
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/gcsizes.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package types2
    
    type gcSizes struct {
    	WordSize int64 // word size in bytes - must be >= 4 (32bits)
    	MaxAlign int64 // maximum alignment in bytes - must be >= 1
    }
    
    func (s *gcSizes) Alignof(T Type) (result int64) {
    	defer func() {
    		assert(result >= 1)
    	}()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractorTest.java

            pdfExtractor = container.getComponent("pdfExtractor");
            pdfExtractorForPdfPassword = container.getComponent("pdfExtractorForPdfPassword");
            pdfExtractorForPdfPassword.addPassword(".*test_.*.pdf", "word");
        }
    
        public void test_getText() {
            final InputStream in = ResourceUtil.getResourceAsStream("extractor/test.pdf");
            final ExtractData extractData = pdfExtractor.getText(in, null);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top