Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for Builtin (0.32 sec)

  1. cmd/iam.go

    	if err == errNoSuchUser && !loadUserCalled {
    		sys.store.LoadUser(ctx, name)
    		userInfo, err = sys.store.GetUserInfo(name)
    	}
    	return userInfo, err
    }
    
    // QueryPolicyEntities - queries policy associations for builtin users/groups/policies.
    func (sys *IAMSys) QueryPolicyEntities(ctx context.Context, q madmin.PolicyEntitiesQuery) (*madmin.PolicyEntitiesResult, error) {
    	if !sys.Initialized() {
    		return nil, errServerNotInitialized
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. src/text/template/exec_test.go

    	{"method on nil value from slice", "-{{range .}}{{.Method1 1234}}{{end}}-", "-1234-", tSliceOfNil, true},
    	{"method on typed nil interface value", "{{.NonEmptyInterfaceTypedNil.Method0}}", "M0", tVal, true},
    
    	// Function call builtin.
    	{".BinaryFunc", "{{call .BinaryFunc `1` `2`}}", "[1=2]", tVal, true},
    	{".VariadicFunc0", "{{call .VariadicFunc}}", "<>", tVal, true},
    	{".VariadicFunc2", "{{call .VariadicFunc `he` `llo`}}", "<he+llo>", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  3. src/go/build/build.go

    			// mode.
    			p.PkgTargetRoot = ctxt.joinPath(p.Root, pkgtargetroot)
    
    			// Set the install target if applicable.
    			if !p.Goroot || (installgoroot.Value() == "all" && p.ImportPath != "unsafe" && p.ImportPath != "builtin") {
    				if p.Goroot {
    					installgoroot.IncNonDefault()
    				}
    				p.PkgObj = ctxt.joinPath(p.Root, pkga)
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    		}
    		// clear min(avail, lump) bytes
    		n := vsize - voff
    		if n > chunkBytes {
    			n = chunkBytes
    		}
    		memclrNoHeapPointers(unsafe.Pointer(voff), n)
    	}
    }
    
    // implementation of new builtin
    // compiler (both frontend and SSA backend) knows the signature
    // of this function.
    func newobject(typ *_type) unsafe.Pointer {
    	return mallocgc(typ.Size_, typ, true)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  5. src/runtime/map.go

    	// Make sure this stays in sync with the compiler's definition.
    	count     int // # live cells == size of map.  Must be first (used by len() builtin)
    	flags     uint8
    	B         uint8  // log_2 of # of buckets (can hold up to loadFactor * 2^B items)
    	noverflow uint16 // approximate number of overflow buckets; see incrnoverflow for details
    	hash0     uint32 // hash seed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/dwarf.go

    				Exitf("%v", err)
    			}
    			return res
    		default:
    			return false
    		}
    	}
    
    	return true
    }
    
    // mkBuiltinType populates the dwctxt2 sym lookup maps for the
    // newly created builtin type DIE 'typeDie'.
    func (d *dwctxt) mkBuiltinType(ctxt *Link, abrv int, tname string) *dwarf.DWDie {
    	// create type DIE
    	die := d.newdie(&dwtypes, abrv, tname)
    
    	// Look up type symbol.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/conversion.go

    // Response is ClassName -> Controller type
    func getGatewayClasses(r GatewayResources, supportedFeatures []k8s.SupportedFeature) map[string]k8s.GatewayController {
    	res := map[string]k8s.GatewayController{}
    	// Setup builtin ones - these can be overridden possibly
    	for name, controller := range builtinClasses {
    		res[string(name)] = controller
    	}
    	for _, obj := range r.GatewayClass {
    		gwc := obj.Spec.(*k8s.GatewayClassSpec)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    [[sec:copying_single_file_example]]
    === Using the `Copy` task
    
    You can copy a file by creating an instance of Gradle's builtin link:{groovyDslPath}/org.gradle.api.tasks.Copy.html[Copy] task and configuring it with the location of the file and where you want to put it.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. src/go/parser/parser.go

    	lparen := p.expect(token.LPAREN)
    	p.exprLev++
    	var list []ast.Expr
    	var ellipsis token.Pos
    	for p.tok != token.RPAREN && p.tok != token.EOF && !ellipsis.IsValid() {
    		list = append(list, p.parseRhs()) // builtins may expect a type: make(some type, ...)
    		if p.tok == token.ELLIPSIS {
    			ellipsis = p.pos
    			p.next()
    		}
    		if !p.atComma("argument list", token.RPAREN) {
    			break
    		}
    		p.next()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
Back to top