Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 30 for ACCEPT (0.24 sec)

  1. src/cmd/trace/testdata/go122.test

    String id=106
    	data="runtime.gcStart"
    String id=107
    	data="runtime.gcBgMarkWorker"
    String id=108
    	data="internal/poll.(*FD).Accept"
    String id=109
    	data="net.(*netFD).accept"
    String id=110
    	data="net.(*TCPListener).accept"
    String id=111
    	data="net.(*TCPListener).Accept"
    String id=112
    	data="/usr/local/google/home/mknyszek/work/go-1/src/net/tcpsock.go"
    String id=113
    	data="main.main.func2"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_node_status_test.go

    	// set up a listener that hangs connections
    	ln, err := net.Listen("tcp", "127.0.0.1:0")
    	assert.NoError(t, err)
    	defer ln.Close()
    	go func() {
    		// accept connections and just let them hang
    		for {
    			_, err := ln.Accept()
    			if err != nil {
    				t.Log(err)
    				return
    			}
    			t.Log("accepted connection")
    			atomic.AddInt64(&attempts, 1)
    		}
    	}()
    
    	config := &rest.Config{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/rsc.io/markdown/emoji.go

    	"ab":                                   "\U0001f18e",
    	"abacus":                               "\U0001f9ee",
    	"abc":                                  "\U0001f524",
    	"abcd":                                 "\U0001f521",
    	"accept":                               "\U0001f251",
    	"accordion":                            "\U0001fa97",
    	"adhesive_bandage":                     "\U0001fa79",
    	"adult":                                "\U0001f9d1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 107.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       */
      public interface ValueAndCloserConsumer<V extends @Nullable Object> {
    
        /** Accepts a {@link ValueAndCloser} for the last step in a {@link ClosingFuture} pipeline. */
        void accept(ValueAndCloser<V> valueAndCloser);
      }
    
      /**
       * Starts a {@link ClosingFuture} pipeline by submitting a callable block to an executor.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       */
      @FunctionalInterface
      public interface ValueAndCloserConsumer<V extends @Nullable Object> {
    
        /** Accepts a {@link ValueAndCloser} for the last step in a {@link ClosingFuture} pipeline. */
        void accept(ValueAndCloser<V> valueAndCloser);
      }
    
      /**
       * Starts a {@link ClosingFuture} pipeline by submitting a callable block to an executor.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  6. pkg/proxy/nftables/proxier_test.go

    		add rule ip kube-proxy cluster-ips-check ip daddr { 172.30.0.0/16 } drop comment "Drop traffic to unallocated ClusterIPs"
    
    		add set ip kube-proxy nodeport-ips { type ipv4_addr ; comment "IPs that accept NodePort traffic" ; }
    		add map ip kube-proxy firewall-ips { type ipv4_addr . inet_proto . inet_service : verdict ; comment "destinations that are subject to LoadBalancerSourceRanges" ; }
    		add chain ip kube-proxy firewall-check
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/load/pkg.go

    // GNU binutils flagfile specifiers, sometimes called "response files").
    // To be conservative, we reject almost any arg beginning with non-alphanumeric ASCII.
    // We accept leading . _ and / as likely in file system paths.
    // There is a copy of this function in cmd/compile/internal/gc/noder.go.
    func SafeArg(name string) bool {
    	if name == "" {
    		return false
    	}
    	c := name[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  8. src/cmd/go/alldocs.go

    //		The TOOLEXEC_IMPORTPATH environment variable will be set,
    //		matching 'go list -f {{.ImportPath}}' for the package being built.
    //
    // The -asmflags, -gccgoflags, -gcflags, and -ldflags flags accept a
    // space-separated list of arguments to pass to an underlying tool
    // during the build. To embed spaces in an element in the list, surround
    // it with either single or double quotes. The argument list may be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  9. api/maven-api-model/src/main/mdo/maven.mdo

                and not the licenses that apply to dependencies.
                If multiple licenses are listed, it is assumed that the user can select
                any of them, not that they must accept all.
                ]]>
              </description>
              <association>
                <type>License</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  10. src/crypto/x509/x509_test.go

    			derBytes: []byte{
    				0x30, 10, // SEQUENCE
    				0x02, 1, // INTEGER, 1 byte
    				17,
    				0x02, 5, // INTEGER, 5 bytes
    				0x00, 0x80, 0x00, 0x00, 0x00,
    			},
    			// On 64-bit systems, encoding/asn1 will accept the
    			// public exponent, but ParsePKCS1PublicKey will return
    			// an error. On 32-bit systems, encoding/asn1 will
    			// return the error. The common substring of both error
    			// is the word “large”.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
Back to top