Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 118 for overuse (0.2 sec)

  1. src/runtime/testdata/testprog/gc.go

    	// to other allocations that happen during this test we may still see some physical
    	// memory over-use.
    	overuse := (float64(heapBacked) - float64(stats.HeapAlloc)) / float64(stats.HeapAlloc)
    	// Check against our overuse threshold, which is what the scavenger always reserves
    	// to encourage allocation of memory that doesn't need to be faulted in.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  2. src/strings/clone.go

    // which can be important when retaining only a small substring
    // of a much larger string. Using Clone can help such programs
    // use less memory. Of course, since using Clone makes a copy,
    // overuse of Clone can make programs use more memory.
    // Clone should typically be used only rarely, and only when
    // profiling indicates that it is needed.
    // For strings of length zero the string "" will be returned
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 01:23:42 UTC 2024
    - 809 bytes
    - Viewed (0)
  3. src/runtime/extern.go

    	It has no effect on other platforms. disablethp is meant for compatibility with versions
    	of Go before 1.21, which stopped working around a Linux kernel default that can result
    	in significant memory overuse. See https://go.dev/issue/64332. This setting will be
    	removed in a future release, so operators should tweak their Linux configuration to suit
    	their needs before then. See https://go.dev/doc/gc-guide#Linux_transparent_huge_pages.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/CompiledScript.kt

     */
    
    package org.gradle.kotlin.dsl.execution
    
    import org.gradle.internal.classpath.ClassPath
    
    
    internal
    interface CompiledScript {
        val program: Class<*>
        val classPath: ClassPath
    
        fun onReuse()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 819 bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ImmutableClassLoaderScope.java

        }
    
        @Override
        public boolean defines(Class<?> clazz) {
            return localClassLoader.equals(clazz.getClassLoader());
        }
    
        @Override
        public void onReuse() {
            parent.onReuse();
            listener.childScopeCreated(parent.getId(), id, origin);
            listener.classloaderCreated(id, id.localId(), localClassLoader, classPath, classpathImplementationHash);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/CompiledScript.java

         */
        boolean getHasMethods();
    
        Class<? extends T> loadClass();
    
        D getData();
    
        /**
         * Called when this script is reused in a new build invocation.
         */
        void onReuse();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 18 23:26:14 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  7. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			jobPresentInCJActiveStatus: true,
    		},
    
    		// Controller should fail to schedule these, as there are too many missed starting times
    		// and either no deadline or a too long deadline.
    		"prev ran but done, long overdue, not past deadline, A": {
    			concurrencyPolicy:          "Allow",
    			schedule:                   onTheHour,
    			deadline:                   longDead,
    			ranPreviously:              true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/KotlinScriptClassloadingCache.kt

    ) {
    
        private
        val cache: CrossBuildInMemoryCache<ProgramId, CompiledScript> = cacheFactory.newCache()
    
        fun get(key: ProgramId): CompiledScript? =
            cache.getIfPresent(key)?.also { it.onReuse() }
    
        fun put(key: ProgramId, loadedScriptClass: CompiledScript) {
            cache.put(key, loadedScriptClass)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/initialization/RootClassLoaderScope.java

        }
    
        @Override
        public ClassLoaderScope lock() {
            return this;
        }
    
        @Override
        public boolean isLocked() {
            return true;
        }
    
        @Override
        public void onReuse() {
            // Nothing to do
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. tests/test_openapi_separate_input_output_schemas.py

        @app.get("/items/")
        def read_items() -> List[Item]:
            return [
                Item(
                    name="Portal Gun",
                    description="Device to travel through the multi-rick-verse",
                    sub=SubItem(subname="subname"),
                ),
                Item(name="Plumbus"),
            ]
    
        client = TestClient(app)
        return client
    
    
    def test_create_item():
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 18.4K bytes
    - Viewed (0)
Back to top