Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,075 for satconv (0.12 sec)

  1. 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)
  2. src/cmd/internal/obj/mips/anames0.go

    	"FREG",
    	"FCREG",
    	"MREG",
    	"WREG",
    	"HI",
    	"LO",
    	"ZCON",
    	"SCON",
    	"UCON",
    	"ADD0CON",
    	"AND0CON",
    	"ADDCON",
    	"ANDCON",
    	"LCON",
    	"DCON",
    	"SACON",
    	"SECON",
    	"LACON",
    	"LECON",
    	"DACON",
    	"STCON",
    	"SBRA",
    	"LBRA",
    	"SAUTO",
    	"LAUTO",
    	"SEXT",
    	"LEXT",
    	"ZOREG",
    	"SOREG",
    	"LOREG",
    	"GOK",
    	"ADDR",
    	"TLS",
    	"TEXTSIZE",
    	"NCLASS",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 04 19:06:44 UTC 2020
    - 554 bytes
    - Viewed (0)
  3. src/cmd/internal/obj/loong64/cnames.go

    	"NONE",
    	"REG",
    	"FREG",
    	"FCSRREG",
    	"FCCREG",
    	"ZCON",
    	"SCON",
    	"UCON",
    	"ADD0CON",
    	"AND0CON",
    	"ADDCON",
    	"ANDCON",
    	"LCON",
    	"DCON",
    	"SACON",
    	"SECON",
    	"LACON",
    	"LECON",
    	"DACON",
    	"STCON",
    	"SBRA",
    	"LBRA",
    	"SAUTO",
    	"LAUTO",
    	"SEXT",
    	"LEXT",
    	"ZOREG",
    	"SOREG",
    	"LOREG",
    	"GOK",
    	"ADDR",
    	"TLS_LE",
    	"TLS_IE",
    	"GOTADDR",
    	"TEXTSIZE",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:21 UTC 2023
    - 629 bytes
    - Viewed (0)
  4. 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)
  5. src/strconv/example_test.go

    	// Output:
    	// true
    	// false
    }
    
    func ExampleFormatBool() {
    	v := true
    	s := strconv.FormatBool(v)
    	fmt.Printf("%T, %v\n", s, s)
    
    	// Output:
    	// string, true
    }
    
    func ExampleFormatFloat() {
    	v := 3.1415926535
    
    	s32 := strconv.FormatFloat(v, 'E', -1, 32)
    	fmt.Printf("%T, %v\n", s32, s32)
    
    	s64 := strconv.FormatFloat(v, 'E', -1, 64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 22:57:37 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  6. src/strconv/doc.go

    //	i64, err := strconv.ParseInt(s, 10, 32)
    //	...
    //	i := int32(i64)
    //
    // [FormatBool], [FormatFloat], [FormatInt], and [FormatUint] convert values to strings:
    //
    //	s := strconv.FormatBool(true)
    //	s := strconv.FormatFloat(3.1415, 'E', -1, 64)
    //	s := strconv.FormatInt(-42, 16)
    //	s := strconv.FormatUint(42, 16)
    //
    // [AppendBool], [AppendFloat], [AppendInt], and [AppendUint] are similar but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. utils/utils.go

    		return v
    	case int:
    		return strconv.FormatInt(int64(v), 10)
    	case int8:
    		return strconv.FormatInt(int64(v), 10)
    	case int16:
    		return strconv.FormatInt(int64(v), 10)
    	case int32:
    		return strconv.FormatInt(int64(v), 10)
    	case int64:
    		return strconv.FormatInt(v, 10)
    	case uint:
    		return strconv.FormatUint(uint64(v), 10)
    	case uint8:
    		return strconv.FormatUint(uint64(v), 10)
    	case uint16:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 22 06:43:02 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. test/fixedbugs/bug260.go

    package main
    
    import (
    	"fmt"
    	"os"
    	"strconv"
    )
    
    type T1 struct {
    	x uint8
    }
    type T2 struct {
    	x uint16
    }
    type T4 struct {
    	x uint32
    }
    
    func main() {
    	report := len(os.Args) > 1
    	status := 0
    	var b1 [10]T1
    	a0, _ := strconv.ParseUint(fmt.Sprintf("%p", &b1[0])[2:], 16, 64)
    	a1, _ := strconv.ParseUint(fmt.Sprintf("%p", &b1[1])[2:], 16, 64)
    	if a1 != a0+1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 1.3K bytes
    - Viewed (0)
  9. src/strconv/fp_test.go

    		}
    		return v * pow2(e), true
    	}
    	f1, err := strconv.ParseFloat(s, 64)
    	if err != nil {
    		return 0, false
    	}
    	return f1, true
    }
    
    // Wrapper around strconv.ParseFloat(x, 32).  Handles dddddp+ddd (binary exponent)
    // itself, passes the rest on to strconv.ParseFloat.
    func myatof32(s string) (f float32, ok bool) {
    	if mant, exp, ok := strings.Cut(s, "p"); ok {
    		n, err := strconv.Atoi(mant)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 06 15:53:04 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller_debug.go

    	return row(
    		plName,
    		strconv.Itoa(activeQueues),
    		strconv.FormatBool(isIdle),
    		strconv.FormatBool(isQuiescing),
    		strconv.Itoa(waitingRequests),
    		strconv.Itoa(executingRequests),
    		strconv.Itoa(dispatchedReqeusts),
    		strconv.Itoa(rejectedRequests),
    		strconv.Itoa(timedoutRequests),
    		strconv.Itoa(cancelledRequests),
    	)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 17:38:43 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top