Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 106 for partlen (0.3 sec)

  1. docs/fr/docs/deployment/docker.md

    haute performance. Il peut faire office de "Proxy de terminaison TLS" (entre autres fonctionnalités).
    
    Il est intégré à Let's Encrypt. Ainsi, il peut gérer toutes les parties HTTPS, y compris l'acquisition et le renouvellement des certificats.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  2. cmd/encryption-v1.go

    	for i1, size := range sizes[partStart:] {
    		i := partStart + i1
    		if endOffset < cumulativeSum+size {
    			partEnd = i
    			break
    		}
    		cumulativeSum += size
    		encPartSize, _ := sio.EncryptedSize(uint64(size))
    		encCumulativeSum += int64(encPartSize)
    	}
    	// partEnd is always found in the loop above, because off and
    	// length are validated.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultValueSourceProviderFactory.java

                Try<@org.jetbrains.annotations.Nullable T> obtained = value.getValue();
                if (obtainedFrom != null) {
                    // We are the first thread to see the obtained value. Let's tell the interested parties about it.
                    valueBroadcaster.getSource().valueObtained(obtainedValue(obtained), obtainedFrom);
                }
                return obtained;
            }
    
            @Nonnull
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. docs/fr/docs/index.md

    ## Prérequis
    
    FastAPI repose sur les épaules de géants :
    
    * <a href="https://www.starlette.io/" class="external-link" target="_blank">Starlette</a> pour les parties web.
    * <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a> pour les parties données.
    
    ## Installation
    
    <div class="termy">
    
    ```console
    $ pip install fastapi
    
    ---> 100%
    ```
    
    </div>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 22K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/dwarf.go

    	// GDB will assign a line number of zero the last row in the line
    	// table, which we don't want.
    	lastlen := uint64(s.Size - (lastpc - s.Func().Text.Pc))
    	dctxt.AddUint8(lines, dwarf.DW_LNS_advance_pc)
    	dwarf.Uleb128put(dctxt, lines, int64(lastlen))
    	dctxt.AddUint8(lines, 0) // start extended opcode
    	dwarf.Uleb128put(dctxt, lines, 1)
    	dctxt.AddUint8(lines, dwarf.DW_LNE_end_sequence)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:40:28 UTC 2023
    - 22K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/check.go

    		}
    
    		for _, v := range b.Values {
    			// Check to make sure argument count makes sense (argLen of -1 indicates
    			// variable length args)
    			nArgs := opcodeTable[v.Op].argLen
    			if nArgs != -1 && int32(len(v.Args)) != nArgs {
    				f.Fatalf("value %s has %d args, expected %d", v.LongString(),
    					len(v.Args), nArgs)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/body-nested-models.md

    Aber mit all den Vorzügen:
    
    * Editor-Unterstützung (Codevervollständigung überall)
    * Datenkonvertierung (auch bekannt als Parsen, Serialisierung)
    * Datenvalidierung
    * Schema-Dokumentation
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. pkg/serviceaccount/jwt.go

    		iss:    iss,
    		signer: signer,
    	}, nil
    }
    
    // keyIDFromPublicKey derives a key ID non-reversibly from a public key.
    //
    // The Key ID is field on a given on JWTs and JWKs that help relying parties
    // pick the correct key for verification when the identity party advertises
    // multiple keys.
    //
    // Making the derivation non-reversible makes it impossible for someone to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. SECURITY.md

        This will help us evaluate your report quickly, especially if the issue is
        complex.
      - Whether this vulnerability is public or known to third parties. If it is,
        please provide details.
    
    We will try to fix the problems as soon as possible. Vulnerabilities will, in
    general, be batched to be fixed at the same time as a quarterly release. We
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 01 06:06:35 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. src/index/suffixarray/sais.go

    func assignID_8_32(text []byte, sa []int32, numLMS int) int {
    	id := 0
    	lastLen := int32(-1) // impossible
    	lastPos := int32(0)
    	for _, j := range sa[len(sa)-numLMS:] {
    		// Is the LMS-substring at index j new, or is it the same as the last one we saw?
    		n := sa[j/2]
    		if n != lastLen {
    			goto New
    		}
    		if uint32(n) >= uint32(len(text)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
Back to top