Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 902 for accept4 (0.26 sec)

  1. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part3_gradle_dep_man.adoc

    [source,text]
    ----
    $ ./gradlew build --scan
    
    BUILD SUCCESSFUL in 423ms
    7 actionable tasks: 7 up-to-date
    
    Publishing a build scan to scans.gradle.com requires accepting the Gradle Terms of Service defined at https://gradle.com/terms-of-service. Do you accept these terms? [yes, no] yes
    
    Gradle Terms of Service accepted.
    
    Publishing build scan...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 22:40:17 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. pkg/util/iptables/testing/parse_test.go

    				-A KUBE-FORWARD -m conntrack --ctstate INVALID -j DROP
    				-A KUBE-FORWARD -m comment --comment "kubernetes forwarding rules" -m mark --mark 0x4000/0x4000 -j ACCEPT
    				-A KUBE-FORWARD -m comment --comment "kubernetes forwarding conntrack rule" -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
    				COMMIT
    				*nat
    				:KUBE-SERVICES - [0:0]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 26K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/LockOnDemandCrossProcessCacheAccessTest.groovy

                    return lock
            }
    
            then:
            1 * onOpen.accept(lock)
    
            then:
            1 * action.get() >> "result"
            0 * _
    
            when:
            contendedAction.accept(signal)
    
            then:
            1 * onClose.accept(lock)
            1 * lock.close()
            1 * signal.trigger()
            0 * _
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  4. src/unicode/utf8/utf8.go

    	// Status for the special one-byte case.
    	xx = 0xF1 // invalid: size 1
    	as = 0xF0 // ASCII: size 1
    	s1 = 0x02 // accept 0, size 2
    	s2 = 0x13 // accept 1, size 3
    	s3 = 0x03 // accept 0, size 3
    	s4 = 0x23 // accept 2, size 3
    	s5 = 0x34 // accept 3, size 4
    	s6 = 0x04 // accept 0, size 4
    	s7 = 0x44 // accept 4, size 4
    )
    
    // first is information about the first byte in a UTF-8 sequence.
    var first = [256]uint8{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:36 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. src/syscall/syscall_bsd.go

    		return sa, nil
    	}
    	return nil, EAFNOSUPPORT
    }
    
    func Accept(fd int) (nfd int, sa Sockaddr, err error) {
    	var rsa RawSockaddrAny
    	var len _Socklen = SizeofSockaddrAny
    	nfd, err = accept(fd, &rsa, &len)
    	if err != nil {
    		return
    	}
    	if (runtime.GOOS == "darwin" || runtime.GOOS == "ios") && len == 0 {
    		// Accepted socket has no address.
    		// This is likely due to a bug in xnu kernels,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 10:34:48 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  6. src/crypto/tls/tls.go

    type listener struct {
    	net.Listener
    	config *Config
    }
    
    // Accept waits for and returns the next incoming TLS connection.
    // The returned connection is of type *Conn.
    func (l *listener) Accept() (net.Conn, error) {
    	c, err := l.Listener.Accept()
    	if err != nil {
    		return nil, err
    	}
    	return Server(c, l.config), nil
    }
    
    // NewListener creates a Listener which accepts connections from an inner
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/inet/TcpConnectorTest.groovy

        def "client cannot connect after server stopped"() {
            when:
            def acceptor = incomingConnector.accept(Mock(Action), false)
            acceptor.stop()
            outgoingConnector.connect(acceptor.address)
    
            then:
            ConnectException e = thrown()
            e.message.startsWith "Could not connect to server ${acceptor.address}."
            e.cause instanceof java.net.ConnectException
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    -		     : __builtin_strspn (s, accept))))))		      \
    -      : __builtin_strspn (s, accept)); })
    -#  else
    -#   define strspn(s, accept) \
    -  __extension__								      \
    -  ({ char __a0, __a1, __a2;						      \
    -     (__builtin_constant_p (accept) && __string2_1bptr_p (accept)	      \
    -      ? ((__a0 = ((const char *) (accept))[0], __a0 == '\0')		      \
    -	 ? ((void) (s), (size_t) 0)					      \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/README.md

    | KUBE-NODE-PORT-UDP             | nodeport type service UDP port           | masquerade for packets to nodePort(UDP)  |
    | KUBE-NODE-PORT-LOCAL-UDP       | nodeport type service UDP port with `externalTrafficPolicy=local` | accept packages to nodeport service with `externalTrafficPolicy=local` |
    
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 02:32:29 UTC 2021
    - 18.8K bytes
    - Viewed (0)
  10. pkg/probe/http/http_test.go

    				"Accept": {""},
    			},
    			health:  probe.Success,
    			notBody: "Accept:",
    		},
    		{
    			handler: headerEchoHandler,
    			reqHeaders: http.Header{
    				"User-Agent": {"foo/1.0"},
    				"Accept":     {""},
    			},
    			health:  probe.Success,
    			notBody: "Accept:",
    		},
    		{
    			handler:    headerEchoHandler,
    			reqHeaders: http.Header{},
    			health:     probe.Success,
    			accBody:    "Accept: */*",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:40:08 UTC 2023
    - 15.7K bytes
    - Viewed (0)
Back to top