Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for Potato (0.14 sec)

  1. src/net/testdata/resolv.conf

    # /etc/resolv.conf
    
    domain localdomain
    nameserver 8.8.8.8
    nameserver 2001:4860:4860::8888
    nameserver fe80::1%lo0
    options ndots:5 timeout:10 attempts:3 rotate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 177 bytes
    - Viewed (0)
  2. src/main/webapp/css/admin/plugins/daterangepicker/daterangepicker.css

      text-align:...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 7.9K bytes
    - Viewed (0)
  3. hack/verify-test-code.sh

        for err in "${errors_expect_no_error[@]}"; do
          echo "$err"
        done
        echo
        echo 'The above files need to use framework.ExpectNoError(err) instead of '
        echo 'Expect(err).NotTo(HaveOccurred()) or gomega.Expect(err).NotTo(gomega.HaveOccurred())'
        echo
      } >&2
      exit 1
    fi
    
    if [ ${#errors_framework_contains_tests[@]} -ne 0 ]; then
      {
        echo "Errors:"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 23 08:51:42 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. test/rotate2.go

    // runoutput ./rotate.go
    
    // Copyright 2013 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.
    
    // Generate test of bit rotations.
    // The output is compiled and run.
    
    package main
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 286 bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/init/kubeletfinalize.go

    	// Check for the existence of the kubelet-client-current.pem file in the kubelet certificate directory.
    	rotate := false
    	pemPath := filepath.Join(pkiPath, "kubelet-client-current.pem")
    	if _, err := os.Stat(pemPath); err == nil {
    		klog.V(1).Infof("[kubelet-finalize] Assuming that kubelet client certificate rotation is enabled: found %q", pemPath)
    		rotate = true
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 10:54:51 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/status/ready/probe_test.go

    	err = probe.Check()
    	g.Expect(err).NotTo(HaveOccurred())
    	g.Expect(probe.atleastOnceReady).Should(BeTrue())
    	server.Close()
    
    	server = testserver.CreateAndStartServer(noServerStats)
    	probe.AdminPort = uint16(server.Listener.Addr().(*net.TCPAddr).Port)
    	err = probe.Check()
    	g.Expect(err).NotTo(HaveOccurred())
    	g.Expect(probe.atleastOnceReady).Should(BeTrue())
    	server.Close()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. pilot/pkg/config/monitor/file_snapshot_test.go

    	}
    
    	ts.testSetup(t)
    
    	fileWatcher := NewFileSnapshot(ts.rootPath, collection.SchemasFor(), "foo")
    	configs, err := fileWatcher.ReadConfigFiles()
    	g.Expect(err).NotTo(HaveOccurred())
    	g.Expect(configs).To(HaveLen(1))
    	g.Expect(configs[0].Domain).To(Equal("foo"))
    
    	gateway := configs[0].Spec.(*networking.Gateway)
    	g.Expect(gateway.Servers[0].Port.Number).To(Equal(uint32(80)))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. src/net/dnsconfig_unix.go

    					conf.timeout = time.Duration(n) * time.Second
    				case stringslite.HasPrefix(s, "attempts:"):
    					n, _, _ := dtoi(s[9:])
    					if n < 1 {
    						n = 1
    					}
    					conf.attempts = n
    				case s == "rotate":
    					conf.rotate = true
    				case s == "single-request" || s == "single-request-reopen":
    					// Linux option:
    					// http://man7.org/linux/man-pages/man5/resolv.conf.5.html
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:14:43 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. src/internal/chacha8rand/chacha8_arm64.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    // QR is the ChaCha quarter-round on A, B, C, and D.
    // V30 is used as a temporary, and V31 is assumed to
    // hold the index table for rotate left 8.
    #define QR(A, B, C, D) \
    	VADD A.S4, B.S4, A.S4; VEOR D.B16, A.B16, D.B16;   VREV32 D.H8, D.H8; \
    	VADD C.S4, D.S4, C.S4; VEOR B.B16, C.B16, V30.B16; VSHL $12, V30.S4, B.S4; VSRI $20, V30.S4, B.S4 \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  10. src/internal/chacha8rand/chacha8_amd64.s

    	MOVOU X10, (10*16)(BX)
    	MOVOU X11, (11*16)(BX)
    
    	MOVL $0, AX
    	MOVQ AX, X15 // must be 0 on return
    
    	RET
    
    // rotate left 16 indexes for PSHUFB
    GLOBL ·rol16<>(SB), NOPTR|RODATA, $16
    DATA ·rol16<>+0(SB)/8, $0x0504070601000302
    DATA ·rol16<>+8(SB)/8, $0x0D0C0F0E09080B0A
    
    // rotate left 8 indexes for PSHUFB
    GLOBL ·rol8<>(SB), NOPTR|RODATA, $16
    DATA ·rol8<>+0(SB)/8, $0x0605040702010003
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top