Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 8,280 for booln (0.07 sec)

  1. src/cmd/go/internal/tool/tool.go

    executed but not execute it.
    
    For more about each tool command, see 'go doc cmd/<command>'.
    `,
    }
    
    var toolN bool
    
    // Return whether tool can be expected in the gccgo tool directory.
    // Other binaries could be in the same directory so don't
    // show those with the 'go tool' command.
    func isGccgoTool(tool string) bool {
    	switch tool {
    	case "cgo", "fix", "cover", "godoc", "vet":
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 18:02:11 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/flagdefs.go

    	"timeout":              true,
    	"trace":                true,
    	"v":                    true,
    }
    
    var passAnalyzersToVet = map[string]bool{
    	"appends":          true,
    	"asmdecl":          true,
    	"assign":           true,
    	"atomic":           true,
    	"bool":             true,
    	"bools":            true,
    	"buildtag":         true,
    	"buildtags":        true,
    	"cgocall":          true,
    	"composites":       true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 01:02:40 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    				// Set all flags to initially false so we can
    				// identify conflicts.
    				bools := make(map[string]*bool)
    				for _, choice := range field.choices {
    					bools[choice] = flag.Bool(choice, false, configHelp[choice])
    				}
    				setter = func() {
    					var set []string
    					for k, v := range bools {
    						if *v {
    							set = append(set, k)
    						}
    					}
    					switch len(set) {
    					case 0:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelGroovyScalarConfigurationIntegrationTest.groovy

                            println "prop theBigDecimal: $p.theBigDecimal :"
                            println "prop theBigInteger: $p.theBigInteger :"
                            println "prop bool1        : $p.bool1 :"
                            println "prop bool2        : $p.bool2 :"
                            println "prop theBoolean   : $p.theBoolean :"
                            println "prop thebyte      : $p.thebyte :"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  5. src/database/sql/convert_test.go

    		{s: int64(0), d: &scanbool, wantbool: false},
    		{s: uint16(0), d: &scanbool, wantbool: false},
    
    		// Not bools
    		{s: "yup", d: &scanbool, wanterr: `sql/driver: couldn't convert "yup" into type bool`},
    		{s: 2, d: &scanbool, wanterr: `sql/driver: couldn't convert 2 into type bool`},
    
    		// Floats
    		{s: float64(1.5), d: &scanf64, wantf64: float64(1.5)},
    		{s: int64(1), d: &scanf64, wantf64: float64(1)},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 20:23:22 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modindex/index_format.txt

    		synopsis - string offset
    		name - string offset
    		pkgName - string offset
    		ignoreFile - int32 bool // report the file in Ignored(Go|Other)Files because there was an error reading it or parsing its build constraints.
    		binaryOnly uint32 bool
    		cgoDirectives string offset // the #cgo directive lines in the comment on import "C"
    		goBuildConstraint  - string offset
    		len(plusBuildConstraints) - uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 13 00:22:50 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. src/reflect/deepequal.go

    		return v1.Int() == v2.Int()
    	case Uint, Uint8, Uint16, Uint32, Uint64, Uintptr:
    		return v1.Uint() == v2.Uint()
    	case String:
    		return v1.String() == v2.String()
    	case Bool:
    		return v1.Bool() == v2.Bool()
    	case Float32, Float64:
    		return v1.Float() == v2.Float()
    	case Complex64, Complex128:
    		return v1.Complex() == v2.Complex()
    	default:
    		// Normal equality suffices
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:30 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/internal/analysisflags/flags.go

    	}
    	panic("not reached")
    }
    
    func (ts triState) IsBoolFlag() bool {
    	return true
    }
    
    // Legacy flag support
    
    // vetLegacyFlags maps flags used by legacy vet to their corresponding
    // new names. The old names will continue to work.
    var vetLegacyFlags = map[string]string{
    	// Analyzer name changes
    	"bool":       "bools",
    	"buildtags":  "buildtag",
    	"methods":    "stdmethods",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. pkg/proxy/apis/config/types.go

    // Kubernetes proxy server.
    type KubeProxyConfiguration struct {
    	metav1.TypeMeta
    
    	// featureGates is a map of feature names to bools that enable or disable alpha/experimental features.
    	FeatureGates map[string]bool
    
    	// clientConnection specifies the kubeconfig file and client connection settings for the proxy
    	// server to use when communicating with the apiserver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. src/time/tick_test.go

    			})
    		})
    	}
    }
    
    type timer interface {
    	Stop() bool
    	Reset(Duration) bool
    }
    
    // tickerTimer is a Timer with Reset and Stop methods that return bools,
    // to have the same signatures as Timer.
    type tickerTimer struct {
    	*Ticker
    	stopped bool
    }
    
    func (t *tickerTimer) Stop() bool {
    	pending := !t.stopped
    	t.stopped = true
    	t.Ticker.Stop()
    	return pending
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top