Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 569 for biases (0.13 sec)

  1. src/internal/fuzz/encoding_test.go

    math.Float32frombits(0x7fc00001)`,
    		},
    		{
    			desc: "int variations",
    			// Although we arbitrarily choose default integer bases (0 or 16), we may
    			// want to change those arbitrary choices in the future and should not
    			// break the parser. Verify that integers in the opposite bases still
    			// parse correctly.
    			in: `go test fuzz v1
    int(0x0)
    int32(0x41)
    int64(0xfffffffff)
    uint32(0xcafef00d)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 00:20:34 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. pilot/pkg/security/trustdomain/bundle_test.go

    func TestGetTrustDomainFromSpiffeIdentity(t *testing.T) {
    	cases := []struct {
    		principal string
    		out       string
    	}{
    		{principal: "spiffe://cluster.local/ns/foo/sa/bar", out: ""},
    		{principal: "sa/test-sa/ns/default", out: ""},
    		{principal: "cluster.local/ns/foo/sa/bar", out: "cluster.local"},
    		{principal: "xyz/ns/foo/sa/bar", out: "xyz"},
    	}
    
    	for _, c := range cases {
    		got, _ := getTrustDomainFromSpiffeIdentity(c.principal)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 11 16:19:15 UTC 2021
    - 7.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/internal/analysisutil/util.go

    package analysisutil
    
    import (
    	"bytes"
    	"go/ast"
    	"go/printer"
    	"go/token"
    	"go/types"
    	"os"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/internal/aliases"
    	"golang.org/x/tools/internal/analysisinternal"
    )
    
    // Format returns a string representation of the expression.
    func Format(fset *token.FileSet, x ast.Expr) string {
    	var b bytes.Buffer
    	printer.Fprint(&b, fset, x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. src/main/config/es/fess_user_user.json

    {
      "fess_user.user" : {
        "aliases" : { },
        "mappings" : {
          "user" : {
            "properties" : {
              "businessCategory" : {
                "type" : "keyword"
              },
              "carLicense" : {
                "type" : "keyword"
              },
              "city" : {
                "type" : "keyword"
              },
              "departmentNumber" : {
                "type" : "keyword"
              },
              "description" : {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/main/resources/META-INF/gradle-plugins/org.gradle.scala-base.properties

    Sterling Greene <******@****.***> 1694815755 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 66 bytes
    - Viewed (0)
  6. platforms/software/reporting/src/main/resources/META-INF/gradle-plugins/org.gradle.reporting-base.properties

    Tom Tresansky <******@****.***> 1697026569 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 64 bytes
    - Viewed (0)
  7. docs/fr/docs/alternatives.md

    des systèmes tel qu'Instagram.
    
    Il est relativement fortement couplé aux bases de données relationnelles (comme MySQL ou PostgreSQL), de sorte qu'il
    n'est pas très facile d'utiliser une base de données NoSQL (comme Couchbase, MongoDB, Cassandra, etc.) comme principal moyen de
    stockage.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/inline/inlheur/cspropbits_string.go

    // Code generated by "stringer -bitset -type CSPropBits"; DO NOT EDIT.
    
    package inlheur
    
    import "strconv"
    import "bytes"
    
    func _() {
    	// An "invalid array index" compiler error signifies that the constant values have changed.
    	// Re-run the stringer command to generate them again.
    	var x [1]struct{}
    	_ = x[CallSiteInLoop-1]
    	_ = x[CallSiteOnPanicPath-2]
    	_ = x[CallSiteInInitFunc-4]
    }
    
    var _CSPropBits_value = [...]uint64{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 23:03:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. src/math/big/natconv.go

    	// reject invalid bases
    	baseOk := base == 0 ||
    		!fracOk && 2 <= base && base <= MaxBase ||
    		fracOk && (base == 2 || base == 8 || base == 10 || base == 16)
    	if !baseOk {
    		panic(fmt.Sprintf("invalid number base %d", base))
    	}
    
    	// prev encodes the previously seen char: it is one
    	// of '_', '0' (a digit), or '.' (anything else). A
    	// valid separator '_' may only occur after a digit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 14.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/basic.go

    	Float64
    	Complex64
    	Complex128
    	String
    	UnsafePointer
    
    	// types for untyped values
    	UntypedBool
    	UntypedInt
    	UntypedRune
    	UntypedFloat
    	UntypedComplex
    	UntypedString
    	UntypedNil
    
    	// aliases
    	Byte = Uint8
    	Rune = Int32
    )
    
    // BasicInfo is a set of flags describing properties of a basic type.
    type BasicInfo int
    
    // Properties of basic types.
    const (
    	IsBoolean BasicInfo = 1 << iota
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 01 22:17:50 UTC 2021
    - 1.5K bytes
    - Viewed (0)
Back to top