Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 193 for Lord (0.17 sec)

  1. src/cmd/asm/internal/lex/input.go

    func (in *Input) Text() string {
    	return in.text
    }
    
    // hash processes a # preprocessor directive. It reports whether it completes.
    func (in *Input) hash() bool {
    	// We have a '#'; it must be followed by a known word (define, include, etc.).
    	tok := in.Stack.Next()
    	if tok != scanner.Ident {
    		in.expectText("expected identifier after '#'")
    	}
    	if !in.enabled() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/proxy.go

    				// For now, "direct" is the end of the line. We may decide to add some
    				// sort of fallback behavior for them in the future, so ignore
    				// subsequent entries for forward-compatibility.
    				break
    			}
    
    			// Single-word tokens are reserved for built-in behaviors, and anything
    			// containing the string ":/" or matching an absolute file path must be a
    			// complete URL. For all other paths, implicitly add "https://".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 03 15:21:05 UTC 2023
    - 13K bytes
    - Viewed (0)
  3. api/go1.9.txt

    pkg image/png, type EncoderBufferPool interface, Put(*EncoderBuffer)
    pkg math/big, method (*Int) IsInt64() bool
    pkg math/big, method (*Int) IsUint64() bool
    pkg math/big, type Word uint
    pkg math/bits (darwin-amd64), const UintSize = 64
    pkg math/bits (darwin-amd64-cgo), const UintSize = 64
    pkg math/bits (freebsd-386), const UintSize = 32
    pkg math/bits (freebsd-386-cgo), const UintSize = 32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 04 20:20:20 UTC 2021
    - 10.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    func slicecopy(toPtr *any, toLen int, fromPtr *any, fromLen int, wid uintptr) int
    
    func decoderune(string, int) (retv rune, retk int)
    func countrunes(string) int
    
    // Convert non-interface type to the data word of a (empty or nonempty) interface.
    func convT(typ *byte, elem *any) unsafe.Pointer
    
    // Same as convT, for types with no pointers in them.
    func convTnoptr(typ *byte, elem *any) unsafe.Pointer
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/html.go

        padding-right: 10px;
        color: gray;
    }
    
    div.line-number {
        font-size: 12px;
    }
    
    .ast {
        white-space: nowrap;
    }
    
    td.ssa-prog {
        width: 600px;
        word-wrap: break-word;
    }
    
    li {
        list-style-type: none;
    }
    
    li.ssa-long-value {
        text-indent: -2em;  /* indent wrapped lines */
    }
    
    li.ssa-value-list {
        display: inline;
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 15:11:40 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

                    appendJson("user-session-id", entity.getUserSessionId(), buf).append(',');
                    appendJson("user", entity.getUser(), buf).append(',');
                    appendJson("search-word", entity.getSearchWord(), buf).append(',');
                    appendJson("hit-count", entity.getHitCount(), buf).append(',');
                    appendJson("query-page-size", entity.getQueryPageSize(), buf).append(',');
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

                final String[] roles, final int num, final String[] langs) {
            if (logger.isDebugEnabled()) {
                logger.debug("Index from searchWord. word: {}", searchWord);
            }
    
            final long start = System.currentTimeMillis();
            final StringBuilder buf = new StringBuilder(searchWord.length());
            char prev = 0;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. src/main/webapp/css/bootstrap.min.css.map

    font-weight: 400;\n  line-height: 1.5;\n  text-align: left;\n  text-align: start;\n  text-decoration: none;\n  text-shadow: none;\n  text-transform: none;\n  letter-spacing: normal;\n  word-break: normal;\n  word-spacing: normal;\n  white-space: normal;\n  line-break: auto;\n  font-size: 0.875rem;\n  word-wrap: break-word;\n  opacity: 0;\n}\n\n.tooltip.show {\n  opacity: 0.9;\n}\n\n.tooltip .arrow {\n  position: absolute;\n  display: block;\n  width: 0.8rem;\n  height: 0.4rem;\n}\n\n.tooltip .arrow::before...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 626.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    //    AuxInt as unsigned (e.g. shifts) must be careful.
    //  - All SymOff opcodes require their offset to fit in an int32.
    
    // Suffixes encode the bit width of various instructions.
    // Q (quad word) = 64 bit
    // L (long word) = 32 bit
    // W (word)      = 16 bit
    // B (byte)      = 8 bit
    // D (double)    = 64 bit float
    // S (single)    = 32 bit float
    
    // copied from ../../amd64/reg.go
    var regNamesAMD64 = []string{
    	"AX",
    	"CX",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (0)
  10. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <alias type="application/vnd.ms-word"/>
        <_comment>Microsoft Word Document</_comment>
        <tika:link>http://en.wikipedia.org/wiki/.doc</tika:link>
        <tika:uti>com.microsoft.word.doc</tika:uti>
        <magic priority="50">
          <match value="Microsoft\ Word\ 6.0\ Document" type="string" offset="2080"/>
          <match value="Documento\ Microsoft\ Word\ 6" type="string" offset="2080"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top