Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 112 for releasem (0.28 sec)

  1. src/runtime/mgc.go

    		work.tMark = now
    
    		// Release the CPU limiter.
    		gcCPULimiter.finishGCTransition(now)
    	})
    
    	// Release the world sema before Gosched() in STW mode
    	// because we will need to reacquire it later but before
    	// this goroutine becomes runnable again, and we could
    	// self-deadlock otherwise.
    	semrelease(&worldsema)
    	releasem(mp)
    
    	// Make sure we block instead of returning to user code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. src/runtime/mheap.go

    	p := handle.Load()
    	if p == 0 {
    		releasem(mp)
    		return nil
    	}
    	// Be careful. p may or may not refer to valid memory anymore, as it could've been
    	// swept and released already. It's always safe to ensure a span is swept, though,
    	// even if it's just some random span.
    	span := spanOfHeap(p)
    	if span == nil {
    		// The span probably got swept and released.
    		releasem(mp)
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  3. src/runtime/malloc.go

    	switch {
    	case p == 0:
    		return nil, 0
    	case p&(align-1) == 0:
    		return unsafe.Pointer(p), size + align
    	case GOOS == "windows":
    		// On Windows we can't release pieces of a
    		// reservation, so we release the whole thing and
    		// re-reserve the aligned sub-region. This may race,
    		// so we may have to try again.
    		sysFreeOS(unsafe.Pointer(p), size+align)
    		p = alignUp(p, align)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    		} else {
    			mp.profStack[1] = gp.m.curg.sched.pc
    			nstk += 1 + fpTracebackPCs(unsafe.Pointer(gp.m.curg.sched.bp), mp.profStack[2:])
    		}
    	}
    
    	saveBlockEventStack(cycles, rate, mp.profStack[:nstk], which)
    	releasem(mp)
    }
    
    // lockTimer assists with profiling contention on runtime-internal locks.
    //
    // There are several steps between the time that an M experiences contention and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. index.yaml

        - email: ******@****.***
          name: MinIO, Inc
        name: minio
        sources:
        - https://github.com/minio/minio
        urls:
        - https://charts.min.io/helm-releases/minio-5.2.0.tgz
        version: 5.2.0
      - apiVersion: v1
        appVersion: RELEASE.2024-03-03T17-50-39Z
        created: "2024-04-28T03:14:12.226017252-07:00"
        description: High Performance Object Storage
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.3.md

    [kubernetes-client-linux-arm64.tar.gz](https://storage.googleapis.com/kubernetes-release/release/v1.3.10/kubernetes-client-linux-arm64.tar.gz) | `176b52d35150ca9f08a7e90e33e2839b7574afe350edf4fafa46745d77bb5aa4`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  7. docs/changelogs/changelog_3x.md

        `MockWebServer`.
     *  Fix: Honor the `MockResponse` header delay in MockWebServer.
     *  Fix: Don't release HTTP/2 connections that have multiple canceled calls. We had a bug where
        canceling calls would cause the shared HTTP/2 connection to be unnecessarily released. This
        harmed connection reuse.
     *  Fix: Ensure canceled and discarded HTTP/2 data is not permanently counted against the limited
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  8. staging/publishing/rules.yaml

        - repository: client-go
          branch: release-1.29
        - repository: apiserver
          branch: release-1.29
        - repository: component-base
          branch: release-1.29
        - repository: kms
          branch: release-1.29
        - repository: code-generator
          branch: release-1.29
        source:
          branch: release-1.29
          dirs:
          - staging/src/k8s.io/kube-aggregator
      - name: release-1.30
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:33:40 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. src/runtime/mgcscavenge.go

    	released := uintptr(0)
    	for released < nbytes {
    		ci, pageIdx := p.scav.index.find(force)
    		if ci == 0 {
    			break
    		}
    		systemstack(func() {
    			released += p.scavengeOne(ci, pageIdx, nbytes-released)
    		})
    		if shouldStop != nil && shouldStop() {
    			break
    		}
    	}
    	return released
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    The embedded Kotlin has been updated from 1.8.20 to link:https://github.com/JetBrains/kotlin/releases/tag/v1.9.0[Kotlin 1.9.0].
    The Kotlin language and API levels for the Kotlin DSL are still set to 1.8 for backwards compatibility.
    See the release notes for link:https://github.com/JetBrains/kotlin/releases/tag/v1.8.22[Kotlin 1.8.22] and link:https://github.com/JetBrains/kotlin/releases/tag/v1.8.21[Kotlin 1.8.21].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top