Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for stringVar (0.31 sec)

  1. src/cmd/dist/test.go

    	flag.BoolVar(&t.race, "race", false, "run in race builder mode (different set of tests)")
    	flag.BoolVar(&t.compileOnly, "compile-only", false, "compile tests, but don't run them")
    	flag.StringVar(&t.banner, "banner", "##### ", "banner prefix; blank means no section banners")
    	flag.StringVar(&t.runRxStr, "run", "",
    		"run only those tests matching the regular expression; empty means to run all. "+
    			"Special exception: if the string begins with '!', the match is inverted.")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. src/reflect/type.go

    	}
    
    	// Look in known types.
    	var s string
    	switch dir {
    	default:
    		panic("reflect.ChanOf: invalid dir")
    	case SendDir:
    		s = "chan<- " + stringFor(typ)
    	case RecvDir:
    		s = "<-chan " + stringFor(typ)
    	case BothDir:
    		typeStr := stringFor(typ)
    		if typeStr[0] == '<' {
    			// typ is recv chan, need parentheses as "<-" associates with leftmost
    			// chan possible, see:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. pkg/controller/endpointslice/endpointslice_controller_test.go

    				{
    					Name:     pointer.StringPtr("sctp-example"),
    					Protocol: protoPtr(v1.ProtocolSCTP),
    					Port:     pointer.Int32Ptr(int32(3456)),
    				},
    				{
    					Name:     pointer.StringPtr("udp-example"),
    					Protocol: protoPtr(v1.ProtocolUDP),
    					Port:     pointer.Int32Ptr(int32(161)),
    				},
    				{
    					Name:     pointer.StringPtr("tcp-example"),
    					Protocol: protoPtr(v1.ProtocolTCP),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  4. src/text/template/exec_test.go

    	Empty1 any
    	Empty2 any
    	Empty3 any
    	Empty4 any
    	// Non-empty interfaces.
    	NonEmptyInterface         I
    	NonEmptyInterfacePtS      *I
    	NonEmptyInterfaceNil      I
    	NonEmptyInterfaceTypedNil I
    	// Stringer.
    	Str fmt.Stringer
    	Err error
    	// Pointers
    	PI  *int
    	PS  *string
    	PSI *[]int
    	NIL *int
    	// Function (not method)
    	BinaryFunc             func(string, string) string
    	VariadicFunc           func(...string) string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

    #include <vector>
    
    #include "absl/algorithm/container.h"
    #include "absl/strings/str_format.h"
    #include "absl/strings/str_join.h"
    #include "absl/strings/string_view.h"
    #include "llvm/ADT/Sequence.h"
    #include "llvm/ADT/StringMap.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/ADT/Twine.h"
    #include "llvm/Support/Casting.h"
    #include "llvm/Support/CommandLine.h"
    #include "llvm/Support/raw_ostream.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		if err != nil {
    			return err
    		}
    	}
    
    	ctx, span := tracing.Start(ctx, "cacher list",
    		attribute.String("audit-id", audit.GetAuditIDTruncated(ctx)),
    		attribute.Stringer("type", c.groupResource))
    	defer span.End(500 * time.Millisecond)
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.ResilientWatchCacheInitialization) {
    		if !c.ready.check() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. cmd/batch-handlers.go

    	return nil
    }
    
    //msgp:ignore batchJobMetrics
    type batchJobMetrics struct {
    	sync.RWMutex
    	metrics map[string]*batchJobInfo
    }
    
    //msgp:ignore batchJobMetric
    //go:generate stringer -type=batchJobMetric -trimprefix=batchJobMetric $GOFILE
    type batchJobMetric uint8
    
    const (
    	batchJobMetricReplication batchJobMetric = iota
    	batchJobMetricKeyRotation
    	batchJobMetricExpire
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  8. src/go/types/expr.go

    		fallthrough
    	case constant.Int:
    		if v, ok := constant.Int64Val(x); ok {
    			return v
    		}
    		if v, ok := constant.Uint64Val(x); ok {
    			return v
    		}
    	case constant.String:
    		return constant.StringVal(x)
    	case constant.Bool:
    		return constant.BoolVal(x)
    	}
    	return x
    }
    
    // typeAssertion checks x.(T). The type of x must be an interface.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types/type.go

    // values of type Object to ir.Node or a more specific type.
    type Object interface {
    	Pos() src.XPos
    	Sym() *Sym
    	Type() *Type
    }
    
    //go:generate stringer -type Kind -trimprefix T type.go
    
    // Kind describes a kind of type.
    type Kind uint8
    
    const (
    	Txxx Kind = iota
    
    	TINT8
    	TUINT8
    	TINT16
    	TUINT16
    	TINT32
    	TUINT32
    	TINT64
    	TUINT64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  10. src/crypto/tls/common.go

    	// more than one session ticket. If called with a nil *ClientSessionState,
    	// it should remove the cache entry.
    	Put(sessionKey string, cs *ClientSessionState)
    }
    
    //go:generate stringer -linecomment -type=SignatureScheme,CurveID,ClientAuthType -output=common_string.go
    
    // SignatureScheme identifies a signature algorithm supported by TLS. See
    // RFC 8446, Section 4.2.3.
    type SignatureScheme uint16
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
Back to top