Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 186 for gint (0.09 sec)

  1. docs/de/docs/tutorial/response-model.md

    FastAPI wird diesen Rückgabetyp verwenden, um:
    
    * Die zurückzugebenden Daten zu **validieren**.
        * Wenn die Daten ungültig sind (Sie haben z. B. ein Feld vergessen), bedeutet das, *Ihr* Anwendungscode ist fehlerhaft, er gibt nicht zurück, was er sollte, und daher wird ein <abbr title="Server-Fehler">Server-Error</abbr> ausgegeben, statt falscher Daten. So können Sie und ihre Clients sicher sein, dass diese die erwarteten Daten, in der richtigen Form erhalten.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  2. src/syscall/zsysnum_netbsd_amd64.go

    	SYS_DUP2                 = 90  // { int|sys||dup2(int from, int to); }
    	SYS_FCNTL                = 92  // { int|sys||fcntl(int fd, int cmd, ... void *arg); }
    	SYS_FSYNC                = 95  // { int|sys||fsync(int fd); }
    	SYS_SETPRIORITY          = 96  // { int|sys||setpriority(int which, id_t who, int prio); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  3. src/syscall/zsysnum_netbsd_arm.go

    	SYS_DUP2                 = 90  // { int|sys||dup2(int from, int to); }
    	SYS_FCNTL                = 92  // { int|sys||fcntl(int fd, int cmd, ... void *arg); }
    	SYS_FSYNC                = 95  // { int|sys||fsync(int fd); }
    	SYS_SETPRIORITY          = 96  // { int|sys||setpriority(int which, id_t who, int prio); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/security/oauth2-jwt.md

        {!> ../../../docs_src/security/tutorial004.py!}
        ```
    
    ### Technische Details zum JWT-„Subjekt“ `sub`
    
    Die JWT-Spezifikation besagt, dass es einen Schlüssel `sub` mit dem Subjekt des Tokens gibt.
    
    Die Verwendung ist optional, aber dort würden Sie die Identifikation des Benutzers speichern, daher verwenden wir das hier.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:06 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

        def "exit hint does not mention enter when not on windows"() {
            when:
            file("a").touch()
            buildScript "task a { inputs.file 'a'; outputs.file 'b'; doLast {} }"
    
            then:
            succeeds "a"
            output.endsWith("(ctrl-d to exit)\n")
        }
    
        @Requires(UnitTestPreconditions.Windows)
        def "exit hint mentions enter when on windows"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/x86/x86asm/intel.go

    	}
    	if prefixBits&haveLock != 0 {
    		prefix += "lock "
    	}
    	if prefixBits&haveBnd != 0 {
    		prefix += "bnd "
    	}
    	if prefixBits&haveHintTaken != 0 {
    		prefix += "hint-taken "
    	}
    	if prefixBits&haveHintNotTaken != 0 {
    		prefix += "hint-not-taken "
    	}
    	if prefixBits&haveAddr16 != 0 {
    		prefix += "addr16 "
    	}
    	if prefixBits&haveAddr32 != 0 {
    		prefix += "addr32 "
    	}
    	if prefixBits&haveData16 != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 22:23:32 UTC 2017
    - 11.7K bytes
    - Viewed (0)
  7. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Adapters.kt

      }
    
      /**
       * This decodes a value into its contents using a preceding member of the same SEQUENCE. For
       * example, extensions type IDs specify what types to use for the corresponding values.
       *
       * If the hint is unknown [chooser] should return null which will cause the value to be decoded as
       * an opaque byte string.
       *
       * This may optionally wrap the contents in a tag.
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerTest.kt

          .isEqualTo(generalNameDnsName to "example.com")
        assertThat(CertificateAdapters.generalName.toDer(generalNameDnsName to "example.com"))
          .isEqualTo(bytes)
      }
    
      @Test fun `extension with type hint for basic constraints`() {
        val extension =
          Extension(
            BASIC_CONSTRAINTS,
            false,
            BasicConstraints(true, 4),
          )
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    		} else if arg >= CR0 {
    			return fmt.Sprintf("cr%d", int(arg-CR0))
    		}
    		bit := condBit[(arg-Cond0LT)%4]
    		if arg <= Cond0SO {
    			return bit
    		}
    		return fmt.Sprintf("4*cr%d+%s", int(arg-Cond0LT)/4, bit)
    	case Imm:
    		return fmt.Sprintf("%d", arg)
    	case SpReg:
    		switch int(arg) {
    		case 1:
    			return "xer"
    		case 8:
    			return "lr"
    		case 9:
    			return "ctr"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  10. src/crypto/internal/bigmod/nat.go

    	}
    	x.maybeSubtractModulus(no, m)
    	return x, nil
    }
    
    // bigEndianUint returns the contents of buf interpreted as a
    // big-endian encoded uint value.
    func bigEndianUint(buf []byte) uint {
    	if _W == 64 {
    		return uint(byteorder.BeUint64(buf))
    	}
    	return uint(byteorder.BeUint32(buf))
    }
    
    func (x *Nat) setBytes(b []byte, m *Modulus) error {
    	x.resetFor(m)
    	i, k := len(b), 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top