Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 90 for Nl (0.82 sec)

  1. src/main/webapp/js/admin/plugins/form-validator/lang/nl.js

    ion"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a,b){"use strict";a.formUtils.registerLoadedModule("lang/nl"),a(b).bind("validatorsLoaded",function(){a.formUtils.LANG={andSpaces:" en spaties ",badAlphaNumeric:"De ingevoerde waarde mag alleen alfabetische karakters bevatten",badAlphaNumericExtra:" en ",badCVV:"Het CVV nummer was onjuist",badCreditCard:"Het...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/SequentialOutputMatcher.groovy

                        Assert.fail("Missing text at line ${pos + 1}.${NL}Expected: ${expectedLine}${NL}Actual: ${actualLine}${NL}---${NL}Actual output:${NL}$actual${NL}---")
                    }
                    if (actualLine.contains(expectedLine)) {
                        Assert.fail("Extra text at line ${pos + 1}.${NL}Expected: ${expectedLine}${NL}Actual: ${actualLine}${NL}---${NL}Actual output:${NL}$actual${NL}---")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. pkg/proxy/util/nfacct/handler.go

    		Data: []nl.NetlinkRequestData{
    			// netfilter generic message
    			// (definition: https://github.com/torvalds/linux/blob/v6.7/include/uapi/linux/netfilter/nfnetlink.h#L32-L38)
    			&nl.Nfgenmsg{
    				NfgenFamily: uint8(unix.AF_NETLINK),
    				Version:     nl.NFNETLINK_V0,
    				ResId:       0,
    			},
    		},
    	}
    	return req
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AnyOrderOutputMatcher.groovy

                } else {
                    Assert.fail("Line missing from output.${NL}${expectedLine}${NL}---${NL}Actual output:${NL}$actual${NL}---")
                }
            }
    
            if (!(ignoreExtraLines || unmatchedLines.empty)) {
                def unmatched = unmatchedLines.join(NL)
                Assert.fail("Extra lines in output.${NL}${unmatched}${NL}---${NL}Actual output:${NL}$actual${NL}---")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. pkg/util/smallset/smallset.go

    	a := s.items
    	b := items
    	nl := make([]T, 0, len(a)+len(b))
    	i, j := 0, 0
    	appendIfUnique := func(t T) []T {
    		l := len(nl)
    		if l == 0 {
    			nl = append(nl, t)
    		} else {
    			last := nl[l-1]
    			if last != t {
    				nl = append(nl, t)
    			}
    		}
    		return nl
    	}
    	for i < len(a) && j < len(b) {
    		if a[i] < b[j] {
    			nl = appendIfUnique(a[i])
    			i++
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. src/log/syslog/syslog.go

    // format is as follows: <PRI>TIMESTAMP HOSTNAME TAG[PID]: MSG
    func (w *Writer) write(p Priority, msg string) (int, error) {
    	// ensure it ends in a \n
    	nl := ""
    	if !strings.HasSuffix(msg, "\n") {
    		nl = "\n"
    	}
    
    	err := w.conn.writeString(p, w.hostname, w.tag, msg, nl)
    	if err != nil {
    		return 0, err
    	}
    	// Note: return the length of the input, not the number of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  7. pkg/proxy/util/nfacct/nfacct_linux.go

    		return ErrEmptyName
    	}
    	if len(name) > MaxLength {
    		return ErrNameExceedsMaxLength
    	}
    
    	req := r.handler.newRequest(cmdNew, unix.NLM_F_REQUEST|unix.NLM_F_CREATE|unix.NLM_F_ACK)
    	req.AddData(nl.NewRtAttr(attrName, nl.ZeroTerminated(name)))
    	_, err := req.Execute(unix.NETLINK_NETFILTER, 0)
    	if err != nil {
    		return handleError(err)
    	}
    	return nil
    }
    
    // Get is part of the interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 06:47:50 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. src/cmd/dist/testjson.go

    	for len(b) > 0 {
    		nl := bytes.IndexByte(b, '\n')
    		if nl < 0 {
    			f.lineBuf.Write(b)
    			break
    		}
    		var line []byte
    		if f.lineBuf.Len() > 0 {
    			// We have buffered data. Add the rest of the line from b and
    			// process the complete line.
    			f.lineBuf.Write(b[:nl+1])
    			line = f.lineBuf.Bytes()
    		} else {
    			// Process a complete line from b.
    			line = b[:nl+1]
    		}
    		b = b[nl+1:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/go/internal/gover/gomod.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 gover
    
    import (
    	"bytes"
    	"strings"
    )
    
    var nl = []byte("\n")
    
    // GoModLookup takes go.mod or go.work content,
    // finds the first line in the file starting with the given key,
    // and returns the value associated with that key.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:31:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top