Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. cni/pkg/ipset/nldeps_linux.go

    		family = unix.AF_INET6
    	} else {
    		family = unix.AF_INET
    	}
    	err := netlink.IpsetCreate(name, "hash:ip", netlink.IpsetCreateOptions{Comments: true, Replace: true, Family: family})
    	if ipsetErr, ok := err.(nl.IPSetError); ok && ipsetErr == nl.IPSET_ERR_EXIST {
    		return nil
    	}
    
    	return err
    }
    
    func (m *realDeps) destroySet(name string) error {
    	err := netlink.IpsetDestroy(name)
    	return err
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 30 18:07:05 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. src/encoding/pem/pem.go

    	if err != nil {
    		return
    	}
    
    	n, err = l.out.Write(nl)
    	if err != nil {
    		return
    	}
    
    	return l.Write(b[excess:])
    }
    
    func (l *lineBreaker) Close() (err error) {
    	if l.used > 0 {
    		_, err = l.out.Write(l.line[0:l.used])
    		if err != nil {
    			return
    		}
    		_, err = l.out.Write(nl)
    	}
    
    	return
    }
    
    func writeHeader(out io.Writer, k, v string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. src/crypto/tls/testdata/Client-TLSv13-ExportKeyingMaterial

    000000d0  52 c7 c2 84 cb 48 81 a3  da bd a1 50 5c ec 5c a7  |R....H.....P\.\.|
    000000e0  10 01 58 cc 03 c3 53 04  03 69 80 f4 ad 4d ce 72  |..X...S..i...M.r|
    000000f0  26 4e 6c c7 2c 31 69 2b  fd 97 67 5e 7d e0 05 b3  |&Nl.,1i+..g^}...|
    00000100  f4 40 64 a1 bd a3 fd a8  f9 7b 18 82 89 8f 25 f9  |.@d......{....%.|
    00000110  ca ca c4 8f e4 90 7b 26  7a d5 b2 1e fa 05 db ad  |......{&z.......|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    		$2 == "XCASE" ||
    		$2 == "ALTWERASE" ||
    		$2 == "NOKERNINFO" ||
    		$2 == "NFDBITS" ||
    		$2 ~ /^PAR/ ||
    		$2 ~ /^SIG[^_]/ ||
    		$2 ~ /^O[CNPFPL][A-Z]+[^_][A-Z]+$/ ||
    		$2 ~ /^(NL|CR|TAB|BS|VT|FF)DLY$/ ||
    		$2 ~ /^(NL|CR|TAB|BS|VT|FF)[0-9]$/ ||
    		$2 ~ /^O?XTABS$/ ||
    		$2 ~ /^TC[IO](ON|OFF)$/ ||
    		$2 ~ /^IN_/ ||
    		$2 ~ /^KCM/ ||
    		$2 ~ /^LANDLOCK_/ ||
    		$2 ~ /^LOCK_(SH|EX|NB|UN)$/ ||
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  6. src/net/textproto/reader.go

    func mustHaveFieldNameColon(line []byte) error {
    	if bytes.IndexByte(line, ':') < 0 {
    		return ProtocolError(fmt.Sprintf("malformed MIME header: missing colon: %q", line))
    	}
    	return nil
    }
    
    var nl = []byte("\n")
    
    // upcomingHeaderKeys returns an approximation of the number of keys
    // that will be in this header. If it gets confused, it returns 0.
    func (r *Reader) upcomingHeaderKeys() (n int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. src/runtime/runtime_test.go

    		return ok
    	}))
    }
    
    func TestVersion(t *testing.T) {
    	// Test that version does not contain \r or \n.
    	vers := Version()
    	if strings.Contains(vers, "\r") || strings.Contains(vers, "\n") {
    		t.Fatalf("cr/nl in version: %q", vers)
    	}
    }
    
    func TestTimediv(t *testing.T) {
    	for _, tc := range []struct {
    		num int64
    		div int32
    		ret int32
    		rem int32
    	}{
    		{
    			num: 8,
    			div: 2,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val bytebuddyAgent = "net.bytebuddy:byte-buddy-agent"
        val cglib = "cglib:cglib"
        val compileTesting = "com.google.testing.compile:compile-testing"
        val equalsverifier = "nl.jqno.equalsverifier:equalsverifier"
        val hikariCP = "com.zaxxer:HikariCP"
        val guice = "com.google.inject:guice"
        val httpmime = "org.apache.httpcomponents:httpmime"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. src/net/http/client_test.go

    	}
    }
    
    func removeCommonLines(a, b string) (asuffix, bsuffix string, commonLines int) {
    	for {
    		nl := strings.IndexByte(a, '\n')
    		if nl < 0 {
    			return a, b, commonLines
    		}
    		line := a[:nl+1]
    		if !strings.HasPrefix(b, line) {
    			return a, b, commonLines
    		}
    		commonLines++
    		a = a[len(line):]
    		b = b[len(line):]
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_test.go

    type testNodeLister struct {
    	nodes []*v1.Node
    }
    
    func (nl testNodeLister) Get(name string) (*v1.Node, error) {
    	for _, node := range nl.nodes {
    		if node.Name == name {
    			return node, nil
    		}
    	}
    	return nil, fmt.Errorf("Node with name: %s does not exist", name)
    }
    
    func (nl testNodeLister) List(_ labels.Selector) (ret []*v1.Node, err error) {
    	return nl.nodes, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top