Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for mkbuiltin (0.28 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	resources resources
    
    	// mutex must be locked while accessing any of the fields below.
    	mutex sync.Mutex
    
    	// The indices of all claims that:
    	// - are allocated
    	// - use delayed allocation or the builtin controller
    	// - were not available on at least one node
    	//
    	// Set in parallel during Filter, so write access there must be
    	// protected by the mutex. Used by PostFilter.
    	unavailableClaims sets.Set[int]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    	data   []byte
    	auxs   []goobj.Aux
    }
    
    const (
    	// Loader.flags
    	FlagStrictDups = 1 << iota
    	FlagCheckLinkname
    )
    
    func NewLoader(flags uint32, reporter *ErrorReporter) *Loader {
    	nbuiltin := goobj.NBuiltin()
    	extReader := &oReader{objidx: extObj}
    	ldr := &Loader{
    		objs:                 []*oReader{nil, extReader}, // reserve index 0 for nil symbol, 1 for external symbols
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewritedec64.go

    	// result: (Int64Make (Arg <typ.Int32> {n} [off+4]) (Arg <typ.UInt32> {n} [off]))
    	for {
    		off := auxIntToInt32(v.AuxInt)
    		n := auxToSym(v.Aux)
    		if !(is64BitInt(v.Type) && !config.BigEndian && v.Type.IsSigned() && !(b.Func.pass.name == "decompose builtin")) {
    			break
    		}
    		v.reset(OpInt64Make)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 22:42:34 UTC 2023
    - 65.3K bytes
    - Viewed (0)
  4. src/go/types/expr.go

    	check.rawExpr(T, x, e, nil, false)
    	check.exclude(x, 1<<novalue|1<<builtin|1<<typexpr)
    	check.singleValue(x)
    }
    
    // genericExpr is like expr but the result may also be generic.
    func (check *Checker) genericExpr(x *operand, e ast.Expr) {
    	check.rawExpr(nil, x, e, nil, true)
    	check.exclude(x, 1<<novalue|1<<builtin|1<<typexpr)
    	check.singleValue(x)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/expr.go

    	check.rawExpr(T, x, e, nil, false)
    	check.exclude(x, 1<<novalue|1<<builtin|1<<typexpr)
    	check.singleValue(x)
    }
    
    // genericExpr is like expr but the result may also be generic.
    func (check *Checker) genericExpr(x *operand, e syntax.Expr) {
    	check.rawExpr(nil, x, e, nil, true)
    	check.exclude(x, 1<<novalue|1<<builtin|1<<typexpr)
    	check.singleValue(x)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  6. src/cmd/cgo/out.go

    		return "malloc"
    	}
    	return name
    }
    
    var isBuiltin = map[string]bool{
    	"_Cfunc_CString":   true,
    	"_Cfunc_CBytes":    true,
    	"_Cfunc_GoString":  true,
    	"_Cfunc_GoStringN": true,
    	"_Cfunc_GoBytes":   true,
    	"_Cfunc__CMalloc":  true,
    }
    
    func (p *Package) writeOutputFunc(fgcc *os.File, n *Name) {
    	name := n.Mangle
    	if isBuiltin[name] || p.Written[name] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  7. src/cmd/cgo/gcc.go

    			"-Qunused-arguments",
    			// Clang embeds prototypes for some builtin functions,
    			// like malloc and calloc, but all size_t parameters are
    			// incorrectly typed unsigned long. We work around that
    			// by disabling the builtin functions (this is safe as
    			// it won't affect the actual compilation of the C code).
    			// See: https://golang.org/issue/6506.
    			"-fno-builtin",
    		)
    	}
    
    	c = append(c, p.GccOptions...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    				}
    				return pkg, nil
    			}
    
    			mainModulePrefix := MainModules.PathPrefix(mainModule)
    			if mainModulePrefix == "" {
    				pkg := suffix
    				if pkg == "builtin" {
    					// "builtin" is a pseudo-package with a real source file.
    					// It's not included in "std", so it shouldn't resolve from "."
    					// within module "std" either.
    					return "", errPkgIsBuiltin
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. pilot/pkg/model/telemetry_logging_test.go

    			},
    			expected: &accesslog.AccessLog{
    				Name:       TCPEnvoyALSName,
    				ConfigType: &accesslog.AccessLog_TypedConfig{TypedConfig: protoconv.MessageToAny(grpcTCPOut)},
    			},
    		},
    		{
    			name: "builtin-fallback",
    			ctx:  ctx,
    			meshConfig: &meshconfig.MeshConfig{
    				AccessLogEncoding: meshconfig.MeshConfig_JSON,
    				AccessLogFormat:   defaultFormatJSON,
    			},
    			fp: defaultEnvoyProvider,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 54K bytes
    - Viewed (0)
  10. cmd/admin-handlers-users.go

    //
    // PUT /minio/admin/v3/set-policy?policy=xxx&user-or-group=?[&is-group]
    //
    // Deprecated: This API is replaced by attach/detach policy APIs for specific
    // type of users (builtin or LDAP).
    func (a adminAPIHandlers) SetPolicyForUserOrGroup(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	objectAPI, _ := validateAdminReq(ctx, w, r, policy.AttachPolicyAdminAction)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top