Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 458 for satconv (0.14 sec)

  1. src/cmd/compile/internal/wasm/ssa.go

    			break
    		}
    		s.Prog(wasm.AI64DivS)
    
    	case ssa.OpWasmI64TruncSatF32S, ssa.OpWasmI64TruncSatF64S:
    		getValue64(s, v.Args[0])
    		if buildcfg.GOWASM.SatConv {
    			s.Prog(v.Op.Asm())
    		} else {
    			if v.Op == ssa.OpWasmI64TruncSatF32S {
    				s.Prog(wasm.AF64PromoteF32)
    			}
    			p := s.Prog(wasm.ACall)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/help/helpdoc.go

    	  feature build tags.
    	- For GOARCH=riscv64,
    	  GORISCV64=rva20u64 and rva22u64 correspond to the riscv64.rva20u64
    	  and riscv64.rva22u64 build tags.
    	- For GOARCH=wasm, GOWASM=satconv and signext
    	  correspond to the wasm.satconv and wasm.signext feature build tags.
    
    For GOARCH=amd64, arm, ppc64, ppc64le, and riscv64, a particular feature level
    sets the feature build tags for all previous levels as well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. src/math/big/ratconv.go

    // license that can be found in the LICENSE file.
    
    // This file implements rat-to-string conversion functions.
    
    package big
    
    import (
    	"errors"
    	"fmt"
    	"io"
    	"strconv"
    	"strings"
    )
    
    func ratTok(ch rune) bool {
    	return strings.ContainsRune("+-/0123456789.eE", ch)
    }
    
    var ratZero Rat
    var _ fmt.Scanner = &ratZero // *Rat must implement fmt.Scanner
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  4. src/math/big/natconv.go

    cui fliter <******@****.***> 1668165755 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 14.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types/fmt.go

    		if verb == 'v' && f.Flag('+') {
    			mode = fmtDebug
    		}
    		fmt.Fprint(f, sconv(s, verb, mode))
    
    	default:
    		fmt.Fprintf(f, "%%!%c(*types.Sym=%p)", verb, s)
    	}
    }
    
    func (s *Sym) String() string {
    	return sconv(s, 0, fmtGo)
    }
    
    // See #16897 for details about performance implications
    // before changing the implementation of sconv.
    func sconv(s *Sym, verb rune, mode fmtMode) string {
    	if verb == 'L' {
    		panic("linksymfmt")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 15:41:17 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  6. security/pkg/nodeagent/sds/sdsservice.go

    						},
    						Fallback: crypto.GetFallback().GetValue(),
    					},
    				},
    			}
    		case *mesh.PrivateKeyProvider_Qat:
    			qatConf := pkpConf.GetQat()
    			msg := protoconv.MessageToAny(&qat.QatPrivateKeyMethodConfig{
    				PollDelay: durationpb.New(time.Duration(qatConf.GetPollDelay().Nanos)),
    				PrivateKey: &core.DataSource{
    					Specifier: &core.DataSource_InlineBytes{
    						InlineBytes: s.PrivateKey,
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. pilot/pkg/xds/sds.go

    						},
    						Fallback: crypto.GetFallback().GetValue(),
    					},
    				},
    			},
    		})
    	case *mesh.PrivateKeyProvider_Qat:
    		qatConf := pkpConf.GetQat()
    		msg := protoconv.MessageToAny(&qat.QatPrivateKeyMethodConfig{
    			PollDelay: durationpb.New(time.Duration(qatConf.GetPollDelay().Nanos)),
    			PrivateKey: &core.DataSource{
    				Specifier: &core.DataSource_InlineBytes{
    					InlineBytes: certInfo.Key,
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. src/internal/fuzz/encoding.go

    		i, err := strconv.ParseInt(val, 0, 64)
    		return int(i), err
    	case "int8":
    		i, err := strconv.ParseInt(val, 0, 8)
    		return int8(i), err
    	case "int16":
    		i, err := strconv.ParseInt(val, 0, 16)
    		return int16(i), err
    	case "int32", "rune":
    		i, err := strconv.ParseInt(val, 0, 32)
    		return int32(i), err
    	case "int64":
    		return strconv.ParseInt(val, 0, 64)
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 16:39:12 UTC 2022
    - 11K bytes
    - Viewed (0)
  9. internal/s3select/sql/value_test.go

    			// Seems to be what strconv.ParseInt returns
    			want:   math.Inf(1),
    			wantOK: false,
    		},
    		{
    			name: "min-underflow",
    			fields: fields{
    				value: []byte("-1.797693134862315708145274237317043567981e+309"),
    			},
    			// Seems to be what strconv.ParseInt returns
    			want:   math.Inf(-1),
    			wantOK: false,
    		},
    		{
    			name: "smallest-pos",
    			fields: fields{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. internal/config/notify/legacy.go

    		},
    		config.KV{
    			Key:   target.KafkaQueueLimit,
    			Value: strconv.Itoa(int(cfg.QueueLimit)),
    		},
    		config.KV{
    			Key:   target.KafkaTLS,
    			Value: config.FormatBool(cfg.TLS.Enable),
    		},
    		config.KV{
    			Key:   target.KafkaTLSSkipVerify,
    			Value: config.FormatBool(cfg.TLS.SkipVerify),
    		},
    		config.KV{
    			Key:   target.KafkaTLSClientAuth,
    			Value: strconv.Itoa(int(cfg.TLS.ClientAuth)),
    		},
    		config.KV{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 19 04:37:54 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top