Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 83 for free1 (0.12 sec)

  1. src/runtime/mgcmark.go

    	n := uintptr(rootBlockBytes)
    	if off+n > n0 {
    		n = n0 - off
    	}
    
    	// Scan this shard.
    	scanblock(b, n, ptrmask, gcw, nil)
    	return int64(n)
    }
    
    // markrootFreeGStacks frees stacks of dead Gs.
    //
    // This does not free stacks of dead Gs cached on Ps, but having a few
    // cached stacks around isn't a problem.
    func markrootFreeGStacks() {
    	// Take list of dead Gs with stacks.
    	lock(&sched.gFree.lock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. cmd/xl-storage-format-v2.go

    		freeFound bool
    	)
    	found := false
    	for _, ver := range x.versions {
    		header := &ver.header
    		// skip listing free-version unless explicitly requested via versionID
    		if header.FreeVersion() {
    			nonFreeVersions--
    			// remember the latest free version; will return this FileInfo if no non-free version remain
    			var freeVersion xlMetaV2Version
    			if inclFreeVers && !freeFound {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p256_asm_s390x.s

    	VMALF  X1, YDIG, ADD2H, ADD4
    	VMALHF X0, YDIG, ADD1H, ADD3H // ADD1H Free
    	VMALHF X1, YDIG, ADD2H, ADD4H // ADD2H Free
    
    	VZERO ZER
    	VL    32(CPOOL), SEL1
    	VPERM ZER, ADD1, SEL1, RED3 // [d0 0 0 d0]
    
    	VSLDB $12, ADD2, ADD1, T0 // ADD1 Free
    	VSLDB $12, ZER, ADD2, T1  // ADD2 Free
    
    	VACCQ  T0, ADD3, CAR1
    	VAQ    T0, ADD3, T0       // ADD3 Free
    	VACCCQ T1, ADD4, CAR1, T2
    	VACQ   T1, ADD4, CAR1, T1 // ADD4 Free
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.h

    // be freed with a call to TF_DeleteDeviceList.
    TF_CAPI_EXPORT extern TF_DeviceList* TF_SessionListDevices(TF_Session* session,
                                                               TF_Status* status);
    
    // Lists all devices in a TF_Session.
    //
    // Caller takes ownership of the returned TF_DeviceList* which must eventually
    // be freed with a call to TF_DeleteDeviceList.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  5. pkg/apis/storage/validation/validation_test.go

    			Parameters: map[string]string{
    				"foo-parameter": "free-form-string",
    			},
    		},
    		{
    			// some parameters
    			ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    			DriverName: "kubernetes.io/foo",
    			Parameters: map[string]string{
    				"kubernetes.io/foo-parameter": "free/form/string",
    				"foo-parameter":               "free-form-string",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  6. src/runtime/mgcpacer.go

    	// we're *going* to use matters just as much as whatever we're currently using.
    	//
    	// Consider if the heap shrinks to 1/10th its size, leaving behind lots of free and
    	// unscavenged memory. mappedReady - heapAlloc will be quite large, because of that free
    	// and unscavenged memory, pushing the goal down significantly.
    	//
    	// heapFree is also safe to exclude from the memory limit because in the steady-state, it's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. cmd/xl-storage.go

    // Copyright (c) 2015-2023 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. src/cmd/cgo/out.go

    // CString converts the Go string s to a C string.
    //
    // The C string is allocated in the C heap using malloc.
    // It is the caller's responsibility to arrange for it to be
    // freed, such as by calling C.free (be sure to include stdlib.h
    // if C.free is needed).
    func _Cfunc_CString(s string) *_Ctype_char {
    	if len(s)+1 <= 0 {
    		panic("string too large")
    	}
    	p := _cgo_cmalloc(uint64(len(s)+1))
    	sliceHeader := struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. src/main/webapp/css/font-awesome.min.css

    /*!
     * Font Awesome Free 5.12.0 by @fontawesome - https://fontawesome.com
     * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
     */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  10. src/regexp/syntax/parse.go

    }
    
    func (p *parser) newRegexp(op Op) *Regexp {
    	re := p.free
    	if re != nil {
    		p.free = re.Sub0[0]
    		*re = Regexp{}
    	} else {
    		re = new(Regexp)
    		p.numRegexp++
    	}
    	re.Op = op
    	return re
    }
    
    func (p *parser) reuse(re *Regexp) {
    	if p.height != nil {
    		delete(p.height, re)
    	}
    	re.Sub0[0] = p.free
    	p.free = re
    }
    
    func (p *parser) checkLimits(re *Regexp) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top