Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 129 for naked (0.27 sec)

  1. src/testing/testing.go

    	blockProfileRate = flag.Int("test.blockprofilerate", 1, "set blocking profile `rate` (see runtime.SetBlockProfileRate)")
    	mutexProfile = flag.String("test.mutexprofile", "", "write a mutex contention profile to the named file after execution")
    	mutexProfileFraction = flag.Int("test.mutexprofilefraction", 1, "if >= 0, calls runtime.SetMutexProfileFraction()")
    	panicOnExit0 = flag.Bool("test.paniconexit0", false, "panic on call to os.Exit(0)")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  2. src/go/types/expr.go

    // Otherwise it leaves x alone.
    func (check *Checker) nonGeneric(T *target, x *operand) {
    	if x.mode == invalid || x.mode == novalue {
    		return
    	}
    	var what string
    	switch t := x.typ.(type) {
    	case *Alias, *Named:
    		if isGeneric(t) {
    			what = "type"
    		}
    	case *Signature:
    		if t.tparams != nil {
    			if enableReverseTypeInference && T != nil {
    				check.funcInst(T, x.Pos(), x, nil, true)
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. tests/query_test.go

    		t.Fatalf("Build Select with func, but got %v", r.Statement.SQL.String())
    	}
    
    	// named arguments
    	r = dryDB.Table("users").Select("COALESCE(age, @default)", sql.Named("default", 42)).Find(&User{})
    	if !regexp.MustCompile(`SELECT COALESCE\(age,.*\) FROM .*users.*`).MatchString(r.Statement.SQL.String()) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  4. cmd/api-errors.go

    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrBucketAlreadyOwnedByYou: {
    		Code:           "BucketAlreadyOwnedByYou",
    		Description:    "Your previous request to create the named bucket succeeded and you already own it.",
    		HTTPStatusCode: http.StatusConflict,
    	},
    	ErrInvalidDuration: {
    		Code:           "InvalidDuration",
    		Description:    "Duration provided in the request is invalid.",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    The following example comes from a project named `archive-naming`, hence the `myZip` task creates an archive named `archive-naming-1.0.zip`:
    
    ====
    include::sample[dir="snippets/files/archiveNaming/kotlin",files="build.gradle.kts[tags=zip-task]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/expr.go

    // Otherwise it leaves x alone.
    func (check *Checker) nonGeneric(T *target, x *operand) {
    	if x.mode == invalid || x.mode == novalue {
    		return
    	}
    	var what string
    	switch t := x.typ.(type) {
    	case *Alias, *Named:
    		if isGeneric(t) {
    			what = "type"
    		}
    	case *Signature:
    		if t.tparams != nil {
    			if enableReverseTypeInference && T != nil {
    				check.funcInst(T, x.Pos(), x, nil, true)
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	waitForTotalAttachCallCount(t, 2 /* expectedAttachCallCount */, fakePlugin)
    }
    
    // Creates a volume with accessMode ReadWriteOnce
    // First create a pod which will try to attach the volume to the a node named "uncertain-node". The attach call for this node will
    // fail for timeout, but the volume will be actually attached to the node after the call.
    // Secondly, delete this pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  8. src/encoding/json/decode_test.go

    )
    
    // Test data structures for anonymous fields.
    
    type Point struct {
    	Z int
    }
    
    type Top struct {
    	Level0 int
    	Embed0
    	*Embed0a
    	*Embed0b `json:"e,omitempty"` // treated as named
    	Embed0c  `json:"-"`           // ignored
    	Loop
    	Embed0p // has Point with X, Y, used
    	Embed0q // has Point with Z, used
    	embed   // contains exported field
    }
    
    type Embed0 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug.go

    			return v.ID, cloRegStore
    		}
    	}
    	// nothing found
    	return ID(-1), cloRegStore
    }
    
    // isNamedRegParam returns true if the param corresponding to "p"
    // is a named, non-blank input parameter assigned to one or more
    // registers.
    func isNamedRegParam(p abi.ABIParamAssignment) bool {
    	if p.Name == nil {
    		return false
    	}
    	n := p.Name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// +optional
    	Protocol *v1.Protocol `json:"protocol,omitempty" protobuf:"bytes,1,opt,name=protocol,casttype=k8s.io/api/core/v1.Protocol"`
    
    	// The port on the given protocol. This can either be a numerical or named
    	// port on a pod. If this field is not provided, this matches all port names and
    	// numbers.
    	// If present, only traffic on the specified protocol AND port will be matched.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
Back to top