Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 253 for ants (0.29 sec)

  1. src/internal/bytealg/count_arm64.s

    TEXT countbytebody<>(SB),NOSPLIT,$0
    	// R11 = count of byte to search
    	MOVD	$0, R11
    	// short path to handle 0-byte case
    	CBZ	R2, done
    	CMP	$0x20, R2
    	// jump directly to tail if length < 32
    	BLO	tail
    	ANDS	$0x1f, R0, R9
    	BEQ	chunk
    	// Work with not 32-byte aligned head
    	BIC	$0x1f, R0, R3
    	ADD	$0x20, R3
    	PCALIGN $16
    head_loop:
    	MOVBU.P	1(R0), R5
    	CMP	R5, R1
    	CINC	EQ, R11, R11
    	SUB	$1, R2, R2
    	CMP	R0, R3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 17:00:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/header-params.md

        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="10"
        {!> ../../../docs_src/header_params/tutorial002.py!}
        ```
    
    !!! warning "Aviso"
        Antes de definir `convert_underscores` como `False`, lembre-se de que alguns proxies e servidores HTTP não permitem o uso de cabeçalhos com sublinhados.
    
    ## Cabeçalhos duplicados
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/aes/cache.go

    	}
    	c.cache.Set(keyFunc(dataCtx), transformer, c.ttl)
    }
    
    func keyFunc(dataCtx value.Context) string {
    	return toString(dataCtx.AuthenticatedData())
    }
    
    // toString performs unholy acts to avoid allocations
    func toString(b []byte) string {
    	// unsafe.SliceData relies on cap whereas we want to rely on len
    	if len(b) == 0 {
    		return ""
    	}
    	// Copied from go 1.20.1 strings.Builder.String
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/p256_asm_arm64.s

    	LDP	4*16(a_ptr), (acc0, acc1)// iff select[0] == 0, z3 = z1
    	LDP	5*16(a_ptr), (acc2, acc3)
    	ANDS	$1, hlp1, ZR
    	CSEL	EQ, acc0, y0, y0
    	CSEL	EQ, acc1, y1, y1
    	CSEL	EQ, acc2, y2, y2
    	CSEL	EQ, acc3, y3, y3
    	LDP	p256one<>+0x00(SB), (acc0, acc1)
    	LDP	p256one<>+0x10(SB), (acc2, acc3)
    	ANDS	$2, hlp1, ZR            // iff select[1] == 0, z3 = 1
    	CSEL	EQ, acc0, y0, y0
    	CSEL	EQ, acc1, y1, y1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. pkg/scheduler/internal/cache/cache.go

    	// way around.
    	updateNodesHavePodsWithAffinity := false
    	// HavePodsWithRequiredAntiAffinityNodeInfoList must be re-created if a node changed its
    	// status from having pods with required anti-affinity to NOT having pods with required
    	// anti-affinity or the other way around.
    	updateNodesHavePodsWithRequiredAntiAffinity := false
    	// usedPVCSet must be re-created whenever the head node generation is greater than
    	// last snapshot generation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 09:56:48 UTC 2023
    - 24.9K bytes
    - Viewed (0)
  6. docs/pt/docs/advanced/templates.md

    ```Python hl_lines="4  11  15-18"
    {!../../../docs_src/templates/tutorial001.py!}
    ```
    
    !!! note
        Antes do FastAPI 0.108.0, Starlette 0.29.0, `name` era o primeiro parâmetro.
    
        Além disso, em versões anteriores, o objeto `request` era passado como parte dos pares chave-valor no "context" dict para o Jinja2.
    
    
    !!! tip "Dica"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 28 04:05:17 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. docs/pt/docs/deployment/docker.md

    ### Contêiner Único
    
    Se você tiver uma configuração simples, com um **único contêiner** que então inicia vários **processos trabalhadores** (ou também apenas um processo), então poderia executar esses passos anteriores no mesmo contêiner, logo antes de iniciar o processo com o aplicativo. A imagem oficial do Docker suporta isso internamente.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 37.4K bytes
    - Viewed (0)
  8. src/crypto/internal/boring/hmac.go

    	}
    	// Make copy of context because Go hash.Hash mandates
    	// that Sum has no effect on the underlying stream.
    	// In particular it is OK to Sum, then Write more, then Sum again,
    	// and the second Sum acts as if the first didn't happen.
    	C._goboringcrypto_HMAC_CTX_init(&h.ctx2)
    	if C._goboringcrypto_HMAC_CTX_copy_ex(&h.ctx2, &h.ctx) == 0 {
    		panic("boringcrypto: HMAC_CTX_copy_ex failed")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 4K bytes
    - Viewed (0)
  9. test/typeparam/typelist.go

    	return &x
    }
    
    // Indexing of generic types containing type parameters in their type list:
    func at[T interface{ ~[]E }, E any](x T, i int) E {
    	return x[i]
    }
    
    // A generic type inside a function acts like a named type. Its underlying
    // type is itself, its "operational type" is defined by the type list in
    // the tybe bound, if any.
    func _[T interface{ ~int }](x T) {
    	type myint int
    	var _ int = int(x)
    	var _ T = 42
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 09:04:48 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. docs/pt/docs/tutorial/path-params.md

    Porque as operações de rota são avaliadas em ordem, você precisa ter certeza que a rota para `/users/me` está sendo declarado antes da rota `/users/{user_id}`:
    
    ```Python hl_lines="6  11"
    {!../../../docs_src/path_params/tutorial003.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top