Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 361 for sing (0.13 sec)

  1. docs/de/docs/how-to/graphql.md

        Es hat **Vorteile** und **Nachteile** im Vergleich zu gängigen **Web-APIs**.
    
        Wiegen Sie ab, ob die **Vorteile** für Ihren Anwendungsfall die **Nachteile** ausgleichen. 🤓
    
    ## GraphQL-Bibliotheken
    
    Hier sind einige der **GraphQL**-Bibliotheken, welche **ASGI** unterstützen. Diese könnten Sie mit **FastAPI** verwenden:
    
    * <a href="https://strawberry.rocks/" class="external-link" target="_blank">Strawberry</a> 🍓
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:18:31 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. src/crypto/x509/parser.go

    			!paramsDer.ReadASN1Integer(pub.Parameters.Q) ||
    			!paramsDer.ReadASN1Integer(pub.Parameters.G) {
    			return nil, errors.New("x509: invalid DSA parameters")
    		}
    		if pub.Y.Sign() <= 0 || pub.Parameters.P.Sign() <= 0 ||
    			pub.Parameters.Q.Sign() <= 0 || pub.Parameters.G.Sign() <= 0 {
    			return nil, errors.New("x509: zero or negative DSA parameter")
    		}
    		return pub, nil
    	default:
    		return nil, errors.New("x509: unknown public key algorithm")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/expr.go

    		n := n.(*ir.BinaryExpr)
    		if !sign && ir.IsSmallIntConst(n.Y) {
    			v := ir.Int64Val(n.Y)
    			for bits > 0 && v >= 2 {
    				bits--
    				v >>= 1
    			}
    		}
    
    	case ir.ORSH:
    		n := n.(*ir.BinaryExpr)
    		if !sign && ir.IsSmallIntConst(n.Y) {
    			v := ir.Int64Val(n.Y)
    			if v > int64(bits) {
    				return true
    			}
    			bits -= int32(v)
    		}
    	}
    
    	if !sign && bits <= 62 && 1<<uint(bits) <= max {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/math/LongMath.java

        // Note: guess is always <= FLOOR_SQRT_MAX_LONG.
        long guessSquared = guess * guess;
        // Note (2013-2-26): benchmarks indicate that, inscrutably enough, using if statements is
        // faster here than using lessThanBranchFree.
        switch (mode) {
          case UNNECESSARY:
            checkRoundingUnnecessary(guessSquared == x);
            return guess;
          case FLOOR:
          case DOWN:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  5. src/crypto/tls/key_agreement.go

    		return errServerKeyExchange
    	}
    
    	sigLen := int(sig[0])<<8 | int(sig[1])
    	if sigLen+2 != len(sig) {
    		return errServerKeyExchange
    	}
    	sig = sig[2:]
    
    	signed := hashForServerKeyExchange(sigType, sigHash, ka.version, clientHello.random, serverHello.random, serverECDHEParams)
    	if err := verifyHandshakeSignature(sigType, cert.PublicKey, sigHash, signed, sig); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. cmd/signature-v4.go

    // are equal. The signatures are expected to be HEX encoded strings
    // according to the AWS S3 signature V4 spec.
    func compareSignatureV4(sig1, sig2 string) bool {
    	// The CTC using []byte(str) works because the hex encoding
    	// is unique for a sequence of bytes. See also compareSignatureV2.
    	return subtle.ConstantTimeCompare([]byte(sig1), []byte(sig2)) == 1
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  7. pkg/dns/client/dns_test.go

    				a("www.google.com.", []netip.Addr{netip.MustParseAddr("1.1.1.1")})...),
    		},
    		{
    			name:                     "success: non k8s host not in local cache",
    			host:                     "www.bing.com.",
    			expectExternalResolution: true,
    		},
    		{
    			name:     "success: k8s host - fqdn",
    			host:     "productpage.ns1.svc.cluster.local.",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    // Merge logical operations
    (AND x (NOR y y)) => (ANDN x y)
    (OR x (NOR y y)) => (ORN x y)
    
    // Lowering comparisons
    (EqB x y)  => (ANDconst [1] (EQV x y))
    // Sign extension dependence on operand sign sets up for sign/zero-extension elision later
    (Eq(8|16) x y) && x.Type.IsSigned() && y.Type.IsSigned() => (Equal (CMPW (SignExt(8|16)to32 x) (SignExt(8|16)to32 y)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  9. src/sync/poolqueue.go

    	// producer.
    	//
    	// The head index is stored in the most-significant bits so
    	// that we can atomically add to it and the overflow is
    	// harmless.
    	headTail atomic.Uint64
    
    	// vals is a ring buffer of interface{} values stored in this
    	// dequeue. The size of this must be a power of 2.
    	//
    	// vals[i].typ is nil if the slot is empty and non-nil
    	// otherwise. A slot is still in use until *both* the tail
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 18:12:29 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        display(xscale, pos, neg, displayList);
      }
    
      // renderStacks creates boxes with top-left at x,y with children drawn as
      // nested stacks (below or above based on the sign of direction).
      // Returns the largest y coordinate filled.
      function renderStacks(depth, xscale, x, y, places, direction) {
        // Example: suppose we are drawing the following stacks:
        //   a->b->c
        //   a->b->d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top