Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 26 of 26 for sysUser (0.14 sec)

  1. cmd/kubeadm/app/preflight/checks.go

    // Name will return SystemVerification as name for SystemVerificationCheck
    func (SystemVerificationCheck) Name() string {
    	return "SystemVerification"
    }
    
    // Check runs all individual checks
    func (sysver SystemVerificationCheck) Check() (warnings, errorList []error) {
    	klog.V(1).Infoln("running all checks")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  2. cmd/peer-rest-server.go

    	}
    
    	temp, err := strconv.ParseBool(mss.Get(peerRESTUserTemp))
    	if err != nil {
    		return np, grid.NewRemoteErr(err)
    	}
    
    	userType := regUser
    	if temp {
    		userType = stsUser
    	}
    
    	if err = globalIAMSys.LoadUser(context.Background(), objAPI, accessKey, userType); err != nil {
    		return np, grid.NewRemoteErr(err)
    	}
    
    	return
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. src/runtime/arena.go

    	//
    	// Unlike (*mheap).grow, just map in everything that we
    	// asked for. We're likely going to use it all.
    	sysMap(unsafe.Pointer(base), userArenaChunkBytes, &gcController.heapReleased)
    	sysUsed(unsafe.Pointer(base), userArenaChunkBytes, userArenaChunkBytes)
    
    	// Model the user arena as a heap span for a large object.
    	spc := makeSpanClass(0, false)
    	h.initSpan(s, spanAllocHeap, spc, base, userArenaChunkPages)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  4. src/runtime/export_test.go

    	// Free extra data structures.
    	sysFreeOS(unsafe.Pointer(&p.scav.index.chunks[0]), uintptr(cap(p.scav.index.chunks))*unsafe.Sizeof(atomicScavChunkData{}))
    
    	// Subtract back out whatever we mapped for the summaries.
    	// sysUsed adds to p.sysStat and memstats.mappedReady no matter what
    	// (and in anger should actually be accounted for), and there's no other
    	// way to figure out how much we actually mapped.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    	//
    	// For most systems the cost of scavenging greatly outweighs the costs
    	// associated with using scavenged memory, making this constant 0. On other systems
    	// (especially ones where "sysUsed" is not just a no-op) this cost is non-trivial.
    	//
    	// This ratio is used as part of multiplicative factor to help the scavenger account
    	// for the additional costs of using scavenged memory in its pacing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. src/runtime/malloc.go

    	if pEnd := alignUp(l.next-1, physPageSize); pEnd > l.mapped {
    		if l.mapMemory {
    			// Transition from Reserved to Prepared to Ready.
    			n := pEnd - l.mapped
    			sysMap(unsafe.Pointer(l.mapped), n, sysStat)
    			sysUsed(unsafe.Pointer(l.mapped), n, n)
    		}
    		l.mapped = pEnd
    	}
    	return unsafe.Pointer(p)
    }
    
    // notInHeap is off-heap memory allocated by a lower-level allocator
    // like sysAlloc or persistentAlloc.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top