Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for 1p512 (0.12 sec)

  1. security/pkg/pki/util/crypto_test.go

    			isErr:         false,
    			expectedCurve: elliptic.P256(),
    		},
    		"ECDSA-P384": {
    			key:           ecdsaPrivKeyP384,
    			isErr:         false,
    			expectedCurve: elliptic.P384(),
    		},
    		"ECDSA-P512": {
    			key:           ecdsaPrivKeyP521,
    			isErr:         false,
    			expectedCurve: elliptic.P256(),
    		},
    		"ED25519": {
    			key:           ed25519PrivKey,
    			isErr:         true,
    			expectedCurve: nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 13:00:07 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/arm64/asm7.go

    	return 0x6B<<25 | 0<<23 | x<<21 | 0x1F<<16 | 0<<10
    }
    
    func SYSOP(l uint32, op0 uint32, op1 uint32, crn uint32, crm uint32, op2 uint32, rt uint32) uint32 {
    	return 0x354<<22 | l<<21 | op0<<19 | op1<<16 | crn&15<<12 | crm&15<<8 | op2<<5 | rt
    }
    
    func SYSHINT(x uint32) uint32 {
    	return SYSOP(0, 0, 3, 2, 0, x, 0x1F)
    }
    
    func LDSTR(sz uint32, v uint32, opc uint32) uint32 {
    	return sz<<30 | 7<<27 | v<<26 | opc<<22
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    	//      ios/arm64         33         4MB           1  2048  (8KB)
    	//       */32-bit         32         4MB           1  1024  (4KB)
    	//     */mips(le)         31         4MB           1   512  (2KB)
    
    	// heapArenaBytes is the size of a heap arena. The heap
    	// consists of mappings of size heapArenaBytes, aligned to
    	// heapArenaBytes. The initial heap mapping is one arena.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. docs/en/docs/release-notes.md

    * 🌐 Update Chinese translation for `/docs/advanced/security/http-basic-auth.md`. PR [#11512](https://github.com/tiangolo/fastapi/pull/11512) by [@nick-cjyx9](https://github.com/nick-cjyx9).
    
    ### Internal
    
    * 👥 Update FastAPI People. PR [#11669](https://github.com/tiangolo/fastapi/pull/11669) by [@tiangolo](https://github.com/tiangolo).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    def LstmCifgInputConstraint : PredOpTrait<
      "the cifg inputs should all be specified or none",
       // If LSTM has combined input/forget gate, input 1, 5, 9, 12, 20 are all none
       // or 1, 5, 12 should not be none. Inputs 9 and 20 depend on LSTM's variants.
       Or<[
         And<[TypeIsPred<"input_to_input_weights", NoneType>,
              TypeIsPred<"recurrent_to_input_weights", NoneType>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

      )
      @test_util.run_in_graph_and_eager_modes
      def test_matmul_model(
          self,
          target_opset: quant_opts_pb2.OpSet,
          enable_per_channel_quantization: bool,
      ):
        input_shape = (1, 512)
    
        self._create_matmul_model(
            input_shape=input_shape,
            weight_shape=(512, 2),
            saved_model_path=self._input_saved_model_path,
        )
    
        tags = {tag_constants.SERVING}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
Back to top