Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 332 for sing (0.38 sec)

  1. docs/de/docs/tutorial/dependencies/classes-as-dependencies.md

    Darum können Sie in **FastAPI** auch eine Python-Klasse als Abhängigkeit verwenden.
    
    Was FastAPI tatsächlich prüft, ist, ob es sich um ein „Callable“ (Funktion, Klasse oder irgendetwas anderes) handelt und ob die Parameter definiert sind.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:01:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    	return fcb.encode()
    }
    
    // logicFlags64 returns flags set to the sign/zeroness of x.
    // C and V are set to false.
    func logicFlags64(x int64) flagConstant {
    	var fcb flagConstantBuilder
    	fcb.Z = x == 0
    	fcb.N = x < 0
    	return fcb.encode()
    }
    
    // logicFlags32 returns flags set to the sign/zeroness of x.
    // C and V are set to false.
    func logicFlags32(x int32) flagConstant {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

        // CHECK-DAG: %[[PROX:.*]] = "tf.Sub"(%[[VAR]], %[[DELTA]]) : (tensor<4xf32>, tensor<4xf32>) -> tensor<4xf32>
        // CHECK-DAG: %[[SIGN:.*]] = "tf.Sign"(%[[PROX]]) : (tensor<4xf32>) -> tensor<4xf32>
        // CHECK-DAG: %[[ABS:.*]] = "tf.Abs"(%[[PROX]]) : (tensor<4xf32>) -> tensor<4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_server_tls13.go

    	signOpts := crypto.SignerOpts(sigHash)
    	if sigType == signatureRSAPSS {
    		signOpts = &rsa.PSSOptions{SaltLength: rsa.PSSSaltLengthEqualsHash, Hash: sigHash}
    	}
    	sig, err := hs.cert.PrivateKey.(crypto.Signer).Sign(c.config.rand(), signed, signOpts)
    	if err != nil {
    		public := hs.cert.PrivateKey.(crypto.Signer).Public()
    		if rsaKey, ok := public.(*rsa.PublicKey); ok && sigType == signatureRSAPSS &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. src/main/config/openapi/openapi-user.yaml

              required: false
              schema:
                type: string
                example: abc
            - name: callback
              in: query
              description: Callback name for using JSONP
              required: false
              schema:
                type: string
          responses:
            '200':
              description: Successful operation
              content:
                application/json:
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  6. src/crypto/rsa/pss.go

    // SignPSS calculates the signature of digest using PSS.
    //
    // digest must be the result of hashing the input message using the given hash
    // function. The opts argument may be nil, in which case sensible defaults are
    // used. If opts.Hash is set, it overrides hash.
    //
    // The signature is randomized depending on the message, key, and salt size,
    // using bytes from rand. Most applications should use [crypto/rand.Reader] as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. pilot/pkg/features/pilot.go

    	PilotCertProvider = env.Register("PILOT_CERT_PROVIDER", constants.CertProviderIstiod,
    		"The provider of Pilot DNS certificate. K8S RA will be used for k8s.io/NAME. 'istiod' value will sign"+
    			" using Istio build in CA. Other values will not not generate TLS certs, but still "+
    			" distribute ./etc/certs/root-cert.pem. Only used if custom certificates are not mounted.").Get()
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/crypto/internal/nistec/p256_asm_arm64.s

    #define u1(off) (32*10 + 8 + off)(RSP)
    #define u2(off) (32*11 + 8 + off)(RSP)
    
    // func p256PointAddAffineAsm(res, in1 *P256Point, in2 *p256AffinePoint, sign, sel, zero int)
    TEXT ·p256PointAddAffineAsm(SB),0,$264-48
    	MOVD	in1+8(FP), a_ptr
    	MOVD	in2+16(FP), b_ptr
    	MOVD	sign+24(FP), hlp0
    	MOVD	sel+32(FP), hlp1
    	MOVD	zero+40(FP), t2
    
    	MOVD	$1, t0
    	CMP	$0, t2
    	CSEL	EQ, ZR, t0, t2
    	CMP	$0, hlp1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  9. pkg/kubelet/nodestatus/setters.go

    				return fmt.Errorf("failed to validate nodeIP: %v", err)
    			}
    			klog.V(4).InfoS("Using node IP", "IP", nodeIP.String())
    		}
    		if secondaryNodeIPSpecified {
    			if err := validateNodeIPFunc(secondaryNodeIP); err != nil {
    				return fmt.Errorf("failed to validate secondaryNodeIP: %v", err)
    			}
    			klog.V(4).InfoS("Using secondary node IP", "IP", secondaryNodeIP.String())
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 12:12:04 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    	}
    
    	cert, err := NewSignedCert(config, key, parentCert, parentKey, true)
    	if err != nil {
    		return nil, nil, errors.Wrap(err, "unable to sign intermediate CA certificate")
    	}
    
    	return cert, key, nil
    }
    
    // NewCertAndKey creates new certificate and key by passing the certificate authority certificate and key
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
Back to top