Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for Nl (0.02 sec)

  1. src/crypto/internal/boring/sha.go

    func NewSHA1() hash.Hash {
    	h := new(sha1Hash)
    	h.Reset()
    	return h
    }
    
    type sha1Hash struct {
    	ctx C.GO_SHA_CTX
    	out [20]byte
    }
    
    type sha1Ctx struct {
    	h      [5]uint32
    	nl, nh uint32
    	x      [64]byte
    	nx     uint32
    }
    
    func (h *sha1Hash) noescapeCtx() *C.GO_SHA_CTX {
    	return (*C.GO_SHA_CTX)(noescape(unsafe.Pointer(&h.ctx)))
    }
    
    func (h *sha1Hash) Reset() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  2. src/mime/multipart/multipart.go

    	// and switch into that mode if so. This is a violation of the spec,
    	// but occurs in practice.
    	if r.partsRead == 0 && len(rest) == 1 && rest[0] == '\n' {
    		r.nl = r.nl[1:]
    		r.nlDashBoundary = r.nlDashBoundary[1:]
    	}
    	return bytes.Equal(rest, r.nl)
    }
    
    // skipLWSPChar returns b with leading spaces and tabs removed.
    // RFC 822 defines:
    //
    //	LWSP-char = SPACE / HTAB
    func skipLWSPChar(b []byte) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 16:12:35 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/typecheck.go

    			if isddd {
    				if i >= len(nl) {
    					goto notenough
    				}
    				if len(nl)-i > 1 {
    					goto toomany
    				}
    				n = nl[i]
    				ir.SetPos(n)
    				if n.Type() != nil {
    					nl[i] = assignconvfn(n, t, desc)
    				}
    				return
    			}
    
    			// TODO(mdempsky): Make into ... call with implicit slice.
    			for ; i < len(nl); i++ {
    				n = nl[i]
    				ir.SetPos(n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. pkg/proxy/util/nfacct/nfacct_linux_test.go

    	flags uint16
    
    	// data holds netlink attributes.
    	data []nl.NetlinkRequestData
    
    	// response and err are the predefined output of execution.
    	response [][]byte
    	err      error
    }
    
    // Serialize is part of request interface.
    func (fr *fakeRequest) Serialize() []byte { return nil }
    
    // AddData is part of request interface.
    func (fr *fakeRequest) AddData(data nl.NetlinkRequestData) {
    	fr.data = append(fr.data, data)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/parse.go

    		i := strings.Index(text, "\n")
    		j := strings.Index(text, "\r")
    		var nl byte
    		switch {
    		case j >= 0 && (i < 0 || j < i): // have \r, maybe \r\n
    			ln = text[:j]
    			if i == j+1 {
    				text = text[j+2:]
    				nl = '\r' + '\n'
    			} else {
    				text = text[j+1:]
    				nl = '\r'
    			}
    		case i >= 0:
    			ln, text = text[:i], text[i+1:]
    			nl = '\n'
    		default:
    			ln, text = text, ""
    		}
    		ps.lineno++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/walk/assign.go

    // check assign type list to
    // an expression list. called in
    //
    //	expr-list = func()
    func ascompatet(nl ir.Nodes, nr *types.Type) []ir.Node {
    	if len(nl) != nr.NumFields() {
    		base.Fatalf("ascompatet: assignment count mismatch: %d = %d", len(nl), nr.NumFields())
    	}
    
    	var nn ir.Nodes
    	for i, l := range nl {
    		if ir.IsBlank(l) {
    			continue
    		}
    		r := nr.Field(i)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  7. misc/wasm/wasm_exec.js

    			writeSync(fd, buf) {
    				outputBuf += decoder.decode(buf);
    				const nl = outputBuf.lastIndexOf("\n");
    				if (nl != -1) {
    					console.log(outputBuf.substring(0, nl));
    					outputBuf = outputBuf.substring(nl + 1);
    				}
    				return buf.length;
    			},
    			write(fd, buf, offset, length, position, callback) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 17:47:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  8. src/main/resources/esclient.xml

    		</postConstruct>
    		<postConstruct name="addConfigFile">
    			<arg>"fess"</arg>
    			<arg>"lv/protwords.txt"</arg>
    		</postConstruct>
    		<postConstruct name="addConfigFile">
    			<arg>"fess"</arg>
    			<arg>"nl/protwords.txt"</arg>
    		</postConstruct>
    		<postConstruct name="addConfigFile">
    			<arg>"fess"</arg>
    			<arg>"no/protwords.txt"</arg>
    		</postConstruct>
    		<postConstruct name="addConfigFile">
    			<arg>"fess"</arg>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 23 05:42:27 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/builtin.go

    	n.X = walkExpr(n.X, init)
    	n.Y = walkExpr(n.Y, init)
    	nl := typecheck.TempAt(base.Pos, ir.CurFunc, n.X.Type())
    	nr := typecheck.TempAt(base.Pos, ir.CurFunc, n.Y.Type())
    	var l []ir.Node
    	l = append(l, ir.NewAssignStmt(base.Pos, nl, n.X))
    	l = append(l, ir.NewAssignStmt(base.Pos, nr, n.Y))
    
    	nfrm := ir.NewUnaryExpr(base.Pos, ir.OSPTR, nr)
    	nto := ir.NewUnaryExpr(base.Pos, ir.OSPTR, nl)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/fess.json

            },
            "dutch_stop": {
              "type":       "stop",
              "stopwords_path": "${fess.dictionary.path}nl/stopwords.txt"
            },
            "dutch_keywords": {
              "type":       "keyword_marker",
              "keywords_path": "${fess.dictionary.path}nl/protwords.txt"
            },
            "dutch_stemmer": {
              "type":       "stemmer",
              "language":   "dutch"
            },
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Aug 11 01:26:55 UTC 2022
    - 39.9K bytes
    - Viewed (0)
Back to top