Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 889 for Amount (0.49 sec)

  1. src/runtime/mpagecache.go

    }
    
    // alloc allocates npages from the page cache and is the main entry
    // point for allocation.
    //
    // Returns a base address and the amount of scavenged memory in the
    // allocated region in bytes.
    //
    // Returns a base address of zero on failure, in which case the
    // amount of scavenged memory should be ignored.
    func (c *pageCache) alloc(npages uintptr) (uintptr, uintptr) {
    	if c.cache == 0 {
    		return 0, 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 14:30:00 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. platforms/core-runtime/wrapper-shared/src/main/java/org/gradle/wrapper/DownloadProgressListener.java

         *
         * @param address       distribution url
         * @param contentLength the content length of the distribution, or -1 if the content length is not known.
         * @param downloaded    the total amount of currently downloaded bytes
         */
        void downloadStatusChanged(URI address, long contentLength, long downloaded);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:12:34 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. src/net/hook.go

    		return fn(ctx, network, host)
    	}
    	testPreHookSetKeepAlive = func(*netFD) {}
    	testHookSetKeepAlive    = func(KeepAliveConfig) {}
    
    	// testHookStepTime sleeps until time has moved forward by a nonzero amount.
    	// This helps to avoid flakes in timeout tests by ensuring that an implausibly
    	// short deadline (such as 1ns in the future) is always expired by the time
    	// a relevant system call occurs.
    	testHookStepTime = func() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 934 bytes
    - Viewed (0)
  4. src/runtime/mgcpacer.go

    func (c *gcControllerState) addScannableStack(pp *p, amount int64) {
    	if pp == nil {
    		c.maxStackScan.Add(amount)
    		return
    	}
    	pp.maxStackScanDelta += amount
    	if pp.maxStackScanDelta >= maxStackScanSlack || pp.maxStackScanDelta <= -maxStackScanSlack {
    		c.maxStackScan.Add(pp.maxStackScanDelta)
    		pp.maxStackScanDelta = 0
    	}
    }
    
    func (c *gcControllerState) addGlobals(amount int64) {
    	c.globalsScan.Add(amount)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. src/internal/coverage/slicewriter/slw_test.go

    		}
    		if nw != len(p) {
    			t.Fatalf("wrong amount written want %d got %d", len(p), nw)
    		}
    	}
    
    	rf := func(t *testing.T, ws *WriteSeeker, p []byte) {
    		t.Helper()
    		b := make([]byte, len(p))
    		nr, rerr := ws.Read(b)
    		if rerr != nil {
    			t.Fatalf("unexpected read error: %v", rerr)
    		}
    		if nr != len(p) {
    			t.Fatalf("wrong amount read want %d got %d", len(p), nr)
    		}
    		sleq(t, b, p)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 26 12:44:26 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. releasenotes/notes/bug-report-perf.yaml

    # - documentation
    area: istioctl
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 20:26:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise-plugin-performance/src/performanceTest/groovy/org/gradle/performance/BuildScanPluginPerformanceTest.groovy

                warmUpCount WARMUPS
                invocationCount INVOCATIONS
                displayName(WITHOUT_PLUGIN_LABEL)
                invocation {
                    // Increase client VM heap memory because of a huge amount of output events
                    clientJvmArgs("-Xmx256m", "-Xms256m")
                    args(*jobArgs)
                    tasksToRun(*tasks)
                    if (withFailure) {
                        expectFailure()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 09:04:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/FileHasherStatistics.java

    import java.util.concurrent.atomic.AtomicLong;
    
    public interface FileHasherStatistics {
        /**
         * Number of files hashed.
         */
        long getHashedFileCount();
    
        /**
         * Amount of bytes hashed.
         */
        long getHashedContentLength();
    
        @ServiceScope(Scope.Global.class)
        class Collector {
            private final AtomicLong hashedFileCount = new AtomicLong();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/io/CopyUtil.java

                final byte[] buf = buffer.array();
                int len;
                int amount = 0;
                while ((len = ChannelUtil.read(channel, buffer, amount)) != -1) {
                    out.write(buf, 0, len);
                    buffer.clear();
                    amount += len;
                }
                out.flush();
                return amount;
            } catch (final IOException e) {
                throw new IORuntimeException(e);
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/api/Describable.java

     * It is strongly encouraged to compute this display name lazily: computing a display name,
     * even if it's only a string concatenation, can take a significant amount of time during
     * configuration for something that would only be used, typically, in error messages.
     *
     * @since 3.4
     */
    public interface Describable {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top