Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 90 for Nl (0.03 sec)

  1. 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)
  2. 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)
  3. src/cmd/vendor/golang.org/x/text/cases/map.go

    // maxIgnorable defines the maximum number of ignorables to consider for
    // lookahead operations.
    const maxIgnorable = 30
    
    // supported lists the language tags for which we have tailorings.
    const supported = "und af az el lt nl tr"
    
    func init() {
    	tags := []language.Tag{}
    	for _, s := range strings.Split(supported, " ") {
    		tags = append(tags, language.MustParse(s))
    	}
    	matcher = internal.NewInheritanceMatcher(tags)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/README.md

    ```shell
    # iptables -t nat -nL
    
    Chain PREROUTING (policy ACCEPT)
    target     prot opt source               destination
    KUBE-SERVICES  all  --  0.0.0.0/0            0.0.0.0/0            /* kubernetes service portals */
    
    Chain OUTPUT (policy ACCEPT)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 02:32:29 UTC 2021
    - 18.8K bytes
    - Viewed (0)
  5. src/cmd/internal/objabi/flag.go

    				}
    				names = append(names, name)
    			}
    			sort.Strings(names)
    			// Indent multi-line help messages.
    			nl := fmt.Sprintf("\n\t%-*s\t", maxLen, "")
    			for _, name := range names {
    				help := f.tab[name].help
    				fmt.Printf("\t%-*s\t%s\n", maxLen, name, strings.Replace(help, "\n", nl, -1))
    			}
    			if f.debugSSA != nil {
    				// ssa options have their own help
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 23:08:09 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  6. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    nissay nissedal.no nisshin.aichi.jp niteroi.br nittedal.no niyodogawa.kochi.jp nj.us njs.jelastic.vps-host.net nl nl-ams-1.baremetal.scw.cloud nl.ca nl.ci nl.eu.org nl.no nm.cn nm.us no no-ip.biz no-ip.ca no-ip.co.uk no-ip.info no-ip.net no-ip.org no.com no.eu.org no.it nobeoka.miyazaki.jp noboribetsu.hokkaido.jp nobushi.jp noda.chiba.jp noda.iwate.jp nodes.k8s.fr-par.scw.cloud nodes.k8s.nl-ams.scw.cloud nodes.k8s.pl-waw.scw.cloud nog.community nogata.fukuoka.jp nogi.tochigi.jp noheji.aomori.jp noho.st...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  7. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    ac.ni
    biz.ni
    co.ni
    com.ni
    edu.ni
    gob.ni
    in.ni
    info.ni
    int.ni
    mil.ni
    net.ni
    nom.ni
    org.ni
    web.ni
    
    // nl : https://en.wikipedia.org/wiki/.nl
    //      https://www.sidn.nl/
    //      ccTLD for the Netherlands
    nl
    
    // no : https://www.norid.no/en/om-domenenavn/regelverk-for-no/
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  8. src/html/template/transition.go

    		// are supported by the 4 major browsers.
    		// This defines line comments as
    		//     LINECOMMENT ::= "//" [^\n\f\d]*
    		// since https://www.w3.org/TR/css3-syntax/#SUBTOK-nl defines
    		// newlines:
    		//     nl ::= #xA | #xD #xA | #xD | #xC
    	default:
    		panic(c.state.String())
    	}
    
    	i := bytes.IndexAny(s, lineTerminators)
    	if i == -1 {
    		return c, len(s)
    	}
    	c.state = endState
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. src/go/printer/testdata/expressions.input

    }
    
    
    func (p *parser) charClass() {
    	// respect source lines in multi-line expressions
    	if cc.negate && len(cc.ranges) == 2 &&
    		cc.ranges[0] == '\n' && cc.ranges[1] == '\n' {
    		nl := new(_NotNl)
    		p.re.add(nl)
    	}
    }
    
    
    func addState(s []state, inst instr, match []int) {
    	// handle comments correctly in multi-line expressions
    	for i := 0; i < l; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 16:41:54 UTC 2017
    - 12.1K bytes
    - Viewed (0)
  10. cmd/bucket-stats.go

    }
    
    // ReplicationLastMinute has last minute replication counters
    type ReplicationLastMinute struct {
    	LastMinute lastMinuteLatency
    }
    
    func (rl ReplicationLastMinute) merge(other ReplicationLastMinute) (nl ReplicationLastMinute) {
    	nl = ReplicationLastMinute{rl.LastMinute.merge(other.LastMinute)}
    	return
    }
    
    func (rl *ReplicationLastMinute) addsize(n int64) {
    	t := time.Now().Unix()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 06 06:00:45 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top