Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 253 for ants (0.11 sec)

  1. src/go/build/constraint/expr.go

    					lits = append(lits, lit)
    				default:
    					return nil, errComplex
    				}
    			}
    			ands = append(ands, lits)
    		}
    		split = append(split, ands)
    	}
    
    	// If all the ORs have length 1 (no actual OR'ing going on),
    	// push the top-level ANDs to the bottom level, so that we get
    	// one // +build line instead of many.
    	maxOr := 0
    	for _, or := range split {
    		if maxOr < len(or) {
    			maxOr = len(or)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  2. src/net/iprawsock.go

    // This implements the [syscall.Conn] interface.
    func (c *IPConn) SyscallConn() (syscall.RawConn, error) {
    	if !c.ok() {
    		return nil, syscall.EINVAL
    	}
    	return newRawConn(c.fd), nil
    }
    
    // ReadFromIP acts like ReadFrom but returns an IPAddr.
    func (c *IPConn) ReadFromIP(b []byte) (int, *IPAddr, error) {
    	if !c.ok() {
    		return 0, nil, syscall.EINVAL
    	}
    	n, addr, err := c.readFrom(b)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. src/net/unixsock.go

    		return syscall.EINVAL
    	}
    	if err := c.fd.closeWrite(); err != nil {
    		return &OpError{Op: "close", Net: c.fd.net, Source: c.fd.laddr, Addr: c.fd.raddr, Err: err}
    	}
    	return nil
    }
    
    // ReadFromUnix acts like [UnixConn.ReadFrom] but returns a [UnixAddr].
    func (c *UnixConn) ReadFromUnix(b []byte) (int, *UnixAddr, error) {
    	if !c.ok() {
    		return 0, nil, syscall.EINVAL
    	}
    	n, addr, err := c.readFrom(b)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/AntlrSourceDirectorySet.java

     * limitations under the License.
     */
    
    package org.gradle.api.plugins.antlr;
    
    import org.gradle.api.file.SourceDirectorySet;
    
    /**
     * Contract for a Gradle extension that acts as a handler for what I call a virtual directory mapping,
     * injecting a virtual directory named 'antlr' into the project's various {@link org.gradle.api.tasks.SourceSet source
     * sets}.
     *
     * @since 7.1
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. docs/pt/docs/async.md

    Você fica na fila enquanto alguns (vamos dizer 8) caixas pegam os pedidos das pessoas na sua frente.
    
    Todo mundo antes de você está esperando pelos hambúrgueres estarem prontos antes de deixar o caixa porquê cada um dos 8 caixas vai e prepara o hambúrguer antes de pegar o próximo pedido.
    
    Então é finalmente sua vez, e pede 2 hambúrgueres muito saborosos para você e seu _crush_ :heart_eyes:.
    
    Você paga.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  6. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JvmImplementation.java

     * Represents a filter for a implementation of a Java Virtual Machine.
     *
     * @since 6.8
     */
    public final class JvmImplementation {
    
        /**
         * Vendor-specific virtual machine implementation.
         *
         * Acts as a placeholder and matches any implementation from any vendor.
         * Usually used to override specific implementation requests.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 17:40:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorFactory.java

    import java.io.Serializable;
    
    /**
     * Implementation of {@link WorkerTestClassProcessorFactory} which instantiates a {@link JUnitTestClassProcessor}.
     * This class is loaded on test workers themselves and acts as the entry-point to running JUnit 4 tests on a test worker.
     */
    class JUnitTestClassProcessorFactory implements WorkerTestClassProcessorFactory, Serializable {
        private final JUnitSpec spec;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/envoyfilter/listener_patch_test.go

    				Value: buildPatchStruct(`
    					{"transport_socket":{
    						"name":"transport_sockets.alts",
    						"typed_config":{
    							"@type":"type.googleapis.com/udpa.type.v1.TypedStruct",
                  "type_url": "type.googleapis.com/envoy.extensions.transport_sockets.alts.v3.Alts",
    							"value":{"handshaker_service":"1.2.3.4"}}}}`),
    			},
    		},
    		// Patch custom TLS type to a FC without TLS already set
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 70.1K bytes
    - Viewed (0)
  9. docs/es/docs/async.md

    Todos los que están antes de ti están esperando 🕙 que sus hamburguesas 🍔 estén listas antes de dejar el mostrador porque cada uno de los 8 cajeros prepara la hamburguesa de inmediato antes de recibir el siguiente pedido.
    
    <img src="https://fastapi.tiangolo.com/img/async/parallel-burgers/parallel-burgers-01.png" alt="illustration">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  10. pkg/scheduler/internal/cache/snapshot.go

    	havePodsWithAffinityNodeInfoList []*framework.NodeInfo
    	// havePodsWithRequiredAntiAffinityNodeInfoList is the list of nodes with at least one pod declaring
    	// required anti-affinity terms.
    	havePodsWithRequiredAntiAffinityNodeInfoList []*framework.NodeInfo
    	// usedPVCSet contains a set of PVC names that have one or more scheduled pods using them,
    	// keyed in the format "namespace/name".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top