Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for Builtin (0.18 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/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)
  3. 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)
  4. 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)
  5. src/cmd/link/internal/loader/loader.go

    // reportMissingBuiltin issues an error in the case where we have a
    // relocation against a runtime builtin whose definition is not found
    // when the runtime package is built. The canonical example is
    // "runtime.racefuncenter" -- currently if you do something like
    //
    //	go build -gcflags=-race myprogram.go
    //
    // the compiler will insert calls to the builtin runtime.racefuncenter,
    // but the version of the runtime used for linkage won't actually contain
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. docs/metrics/prometheus/grafana/replication/minio-replication-node.json

    {
      "annotations": {
        "list": [
          {
            "builtIn": 1,
            "datasource": {
              "type": "datasource",
              "uid": "grafana"
            },
            "enable": true,
            "hide": true,
            "iconColor": "rgba(0, 211, 255, 1)",
            "name": "Annotations & Alerts",
            "type": "dashboard"
          }
        ]
      },
     "__inputs": [
        { 
          "name": "DS_PROMETHEUS",
          "label": "Prometheus",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 57.4K bytes
    - Viewed (0)
Back to top