Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 94 for partlen (0.26 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/idn/Punycode.kt

     *
     * This class contains a Kotlin implementation of the pseudocode specified by RFC 3492. It includes
     * direct translation of the pseudocode presented there.
     *
     * Partner this class with [UTS #46] to implement IDNA2008 [RFC 5890] like most browsers do.
     *
     * [RFC 3492]: https://datatracker.ietf.org/doc/html/rfc3492
     * [RFC 5890]: https://datatracker.ietf.org/doc/html/rfc5890
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 03 03:04:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/rulegen.go

    			f := f.(*Func)
    			fmt.Fprintf(w, "func rewrite%s%s%s%s(", f.Kind, n.Arch.name, n.Suffix, f.Suffix)
    			fmt.Fprintf(w, "%c *%s) bool {\n", strings.ToLower(f.Kind)[0], f.Kind)
    			if f.Kind == "Value" && f.ArgLen > 0 {
    				for i := f.ArgLen - 1; i >= 0; i-- {
    					fmt.Fprintf(w, "v_%d := v.Args[%d]\n", i, i)
    				}
    			}
    			for _, n := range f.List {
    				fprint(w, n)
    
    				if rr, ok := n.(*RuleRewrite); ok {
    					k := [3]string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top