Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for fInt16 (0.11 sec)

  1. pilot/pkg/bootstrap/options.go

    	if err != nil {
    		return err
    	}
    	p.ServerOptions.TLSOptions.CipherSuits = cipherSuits
    	return nil
    }
    
    func allCiphers() map[string]uint16 {
    	acceptedCiphers := make(map[string]uint16, len(tls.CipherSuites())+len(tls.InsecureCipherSuites()))
    	for _, cipher := range tls.InsecureCipherSuites() {
    		acceptedCiphers[cipher.Name] = cipher.ID
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/ztunnel/configdump/api.go

    	DestinationIps      []string      `json:"destinationIps,omitempty"`
    	NotDestinationIps   []string      `json:"notDestinationIps,omitempty"`
    	DestinationPorts    []uint16      `json:"destinationPorts,omitempty"`
    	NotDestinationPorts []uint16      `json:"notDestinationPorts,omitempty"`
    }
    
    type StringMatch struct {
    	Exact    string `json:"Exact,omitempty"`
    	Suffix   string `json:"Suffix,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. scan.go

    			db.AddError(rows.Scan(values...))
    
    			mapValue := map[string]interface{}{}
    			scanIntoMap(mapValue, values, columns)
    			*dest = append(*dest, mapValue)
    		}
    	case *int, *int8, *int16, *int32, *int64,
    		*uint, *uint8, *uint16, *uint32, *uint64, *uintptr,
    		*float32, *float64,
    		*bool, *string, *time.Time,
    		*sql.NullInt32, *sql.NullInt64, *sql.NullFloat64,
    		*sql.NullBool, *sql.NullString, *sql.NullTime:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. tests/scan_test.go

    	}
    
    	type Result struct {
    		BoolField          bool
    		IntField           int
    		Int8Field          int8
    		Int16Field         int16
    		Int32Field         int32
    		Int64Field         int64
    		UIntField          uint
    		UInt8Field         uint8
    		UInt16Field        uint16
    		UInt32Field        uint32
    		UInt64Field        uint64
    		Float32Field       float32
    		Float64Field       float64
    		StringField        string
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    		return result, true
    	}
    	if ctxt.Arch.PtrSize != 4 {
    		panic("unexpected pointer size")
    	}
    	if ID(int16(b)) != b || ID(int16(v)) != v {
    		return 0, false
    	}
    	return uint64(b)<<16 | uint64(uint16(v)), true
    }
    
    // Unpack a value and block ID encoded by encodeValue.
    func decodeValue(ctxt *obj.Link, word uint64) (ID, ID) {
    	if ctxt.Arch.PtrSize == 8 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. pilot/pkg/bootstrap/server_test.go

    	cases := []struct {
    		name               string
    		serverCipherSuites []uint16
    		clientCipherSuites []uint16
    		expectSuccess      bool
    	}{
    		{
    			name:          "default cipher suites",
    			expectSuccess: true,
    		},
    		{
    			name:               "client and istiod cipher suites match",
    			serverCipherSuites: []uint16{tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. internal/grid/handlers_string.go

    PeerBucketMetricsStorageInfoConsoleLogListDirGetLocksBackgroundHealStatusGetLastDayTierStatsSignalServiceGetBandwidthWriteAllListBucketsRenameDataInlineRenameData2CheckParts2handlerTesthandlerTest2handlerLast"
    
    var _HandlerID_index = [...]uint16{0, 14, 22, 31, 41, 52, 63, 78, 85, 92, 100, 109, 115, 126, 136, 149, 163, 176, 186, 196, 206, 213, 225, 230, 236, 256, 274, 301, 315, 328, 345, 369, 381, 391, 408, 428, 446, 456, 464, 473, 483, 493, 503, 515, 525, 543, 553, 564, 573, 586, 596, 603,...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model.h

    // to the `output_buffer`. Both `model_buffer` and `output_buffer` should be a
    // valid FlatBuffer format for Model supported by TFLite.
    //
    // The `input_type`, `output_type` and `inference_type` can be float32 / qint8 /
    // int8 / int16.
    //
    // Returns a partially quantized model if `fully_quantize` is false. Returns a
    // non-OK status if the quantization fails.
    //
    // When `verify_numeric` is true, the model will have it's original float ops
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. src/crypto/tls/bogo_shim_test.go

    	return nil
    }
    
    func bogoShim() {
    	if *isHandshakerSupported {
    		fmt.Println("No")
    		return
    	}
    
    	cfg := &Config{
    		ServerName: "test",
    
    		MinVersion: uint16(*minVersion),
    		MaxVersion: uint16(*maxVersion),
    
    		ClientSessionCache: NewLRUClientSessionCache(0),
    	}
    	if *noTLS13 && cfg.MaxVersion == VersionTLS13 {
    		cfg.MaxVersion = VersionTLS12
    	}
    
    	if *advertiseALPN != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    	{ir.OLSH, types.TINT16, types.TUINT8}:   ssa.OpLsh16x8,
    	{ir.OLSH, types.TUINT16, types.TUINT8}:  ssa.OpLsh16x8,
    	{ir.OLSH, types.TINT16, types.TUINT16}:  ssa.OpLsh16x16,
    	{ir.OLSH, types.TUINT16, types.TUINT16}: ssa.OpLsh16x16,
    	{ir.OLSH, types.TINT16, types.TUINT32}:  ssa.OpLsh16x32,
    	{ir.OLSH, types.TUINT16, types.TUINT32}: ssa.OpLsh16x32,
    	{ir.OLSH, types.TINT16, types.TUINT64}:  ssa.OpLsh16x64,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top