Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 104 for Dtype (0.04 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/eventlog.go

    //sys	DeregisterEventSource(handle Handle) (err error) = advapi32.DeregisterEventSource
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 825 bytes
    - Viewed (0)
  2. src/runtime/mfinal.go

    var allfin *finblock // list of all blocks
    
    // NOTE: Layout known to queuefinalizer.
    type finalizer struct {
    	fn   *funcval       // function to call (may be a heap pointer)
    	arg  unsafe.Pointer // ptr to object (may be a heap pointer)
    	nret uintptr        // bytes of return values from fn
    	fint *_type         // type of first argument of fn
    	ot   *ptrtype       // type of ptr to object (may be a heap pointer)
    }
    
    var finalizer1 = [...]byte{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. cmd/generic-handlers.go

    // guessIsMetricsReq - returns true if incoming request looks
    // like metrics request
    func guessIsMetricsReq(req *http.Request) bool {
    	if req == nil {
    		return false
    	}
    	aType := getRequestAuthType(req)
    	return (aType == authTypeAnonymous || aType == authTypeJWT) &&
    		req.URL.Path == minioReservedBucketPath+prometheusMetricsPathLegacy ||
    		req.URL.Path == minioReservedBucketPath+prometheusMetricsV2ClusterPath ||
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/tokens.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package syntax
    
    type Token uint
    
    type token = Token
    
    //go:generate stringer -type token -linecomment tokens.go
    
    const (
    	_    token = iota
    	_EOF       // EOF
    
    	// names and literals
    	_Name    // name
    	_Literal // literal
    
    	// operators and operations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. src/runtime/runtime2.go

    type note struct {
    	// Futex-based impl treats it as uint32 key,
    	// while sema-based impl as M* waitm.
    	// Used to be a union, but unions break precise GC.
    	key uintptr
    }
    
    type funcval struct {
    	fn uintptr
    	// variable-size, fn-specific data here
    }
    
    type iface struct {
    	tab  *itab
    	data unsafe.Pointer
    }
    
    type eface struct {
    	_type *_type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/printer.go

    		p.print(blank)
    		if len(list) == 1 && list[0].Name == nil {
    			p.printNode(list[0].Type)
    		} else {
    			p.printParameterList(list, 0)
    		}
    	}
    }
    
    // If tok != 0 print a type parameter list: tok == _Type means
    // a type parameter list for a type, tok == _Func means a type
    // parameter list for a func.
    func (p *printer) printParameterList(list []*Field, tok token) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation.go

    		aType := string(a.Type)
    		if aType == "" {
    			allErrs = append(allErrs, field.Required(fldPath.Child("type"), ""))
    			continue
    		}
    		if !knownTypes.Has(aType) {
    			allErrs = append(allErrs, field.NotSupported(fldPath.Child("type"), aType, knownTypes.List()))
    			continue
    		}
    		if seenAuthorizerTypes.Has(aType) && !repeatableTypes.Has(aType) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  8. src/internal/abi/switch.go

    		return true
    	default:
    		return false
    	}
    }
    
    type TypeAssert struct {
    	Cache   *TypeAssertCache
    	Inter   *InterfaceType
    	CanFail bool
    }
    type TypeAssertCache struct {
    	Mask    uintptr
    	Entries [1]TypeAssertCacheEntry
    }
    type TypeAssertCacheEntry struct {
    	// type of source value (a *runtime._type)
    	Typ uintptr
    	// itab to use for result (a *runtime.itab)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 17:02:53 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. pkg/apis/core/validation/validation_test.go

    				t.Errorf("wrong names result: %v", names)
    			}
    			for i, err := range errs {
    				expErr := tc.errs[i]
    				if err.Type != expErr.etype {
    					t.Errorf("unexpected error type:\n\twant: %q\n\t got: %q", expErr.etype, err.Type)
    				}
    				if !strings.HasSuffix(err.Field, "."+expErr.field) {
    					t.Errorf("unexpected error field:\n\twant: %q\n\t got: %q", expErr.field, err.Field)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/typecheck/typecheck.go

    		n := n.(*ir.LogicalExpr)
    		n.X, n.Y = Expr(n.X), Expr(n.Y)
    		if n.X.Type() == nil || n.Y.Type() == nil {
    			n.SetType(nil)
    			return n
    		}
    		// For "x == x && len(s)", it's better to report that "len(s)" (type int)
    		// can't be used with "&&" than to report that "x == x" (type untyped bool)
    		// can't be converted to int (see issue #41500).
    		if !n.X.Type().IsBoolean() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top