Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 808 for heal (3.7 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/DaemonHealthStats.java

                message.append(format(", heap usage: %s%% of %s", heapStats.getUsedPercent(), NumberUtil.formatBytes(heapStats.getMaxSizeInBytes())));
            }
    
            GarbageCollectionStats nonHeapStats = gcMonitor.getNonHeapStats();
            if (nonHeapStats.isValid()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/runtime/traceregion.go

    // Copyright 2023 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Simple not-in-heap bump-pointer traceRegion allocator.
    
    package runtime
    
    import (
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // traceRegionAlloc is a thread-safe region allocator.
    // It holds a linked list of traceRegionAllocBlock.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. src/runtime/arena_test.go

    		t.Fatal("finalizer queue was never emptied")
    	}
    	if !finalized.Load() {
    		t.Fatal("heap allocation kept alive through non-pointer reference")
    	}
    
    	// Clean up the arena.
    	a.Free()
    	GC()
    	GC()
    }
    
    func TestUserArenaCloneString(t *testing.T) {
    	a := NewUserArena()
    
    	// A static string (not on heap or arena)
    	var s = "abcdefghij"
    
    	// Create a byte slice in the arena, initialize it with s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. LICENSES/vendor/github.com/go-task/slim-sprig/v3/LICENSE

    Copyright (C) 2013-2020 Masterminds
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. testing/performance/docs/performance-bisect.md

    # check revision
    ./check_rev.sh RealWorldNativePluginPerformanceTest mediumNativeMonolithic
    ```
    
    Now you can use the script automatically with `git bisect`.
    
    ```bash
    git bisect start HEAD REL_2.14 --  # HEAD=bad REL_2.14=good
    git bisect run check_rev.sh RealWorldNativePluginPerformanceTest mediumNativeMonolithic
    ```
    
    This will take some time, depending on the number of commits. After each step, the test results will
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. src/net/http/transfer.go

    		// Only probe the Request.Body for GET/HEAD/DELETE/etc
    		// requests, because it's only those types of requests
    		// that confuse servers.
    		t.probeRequestBody() // adjusts t.Body, t.ContentLength
    		return t.Body != nil
    	}
    	// For all other request types (PUT, POST, PATCH, or anything
    	// made-up we've never heard of), assume it's normal and the server
    	// can deal with a chunked request body. Maybe we'll adjust this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. src/encoding/gob/encgen.go

    			state.encodeUint(0)
    		}`,
    	},
    	{
    		"complex64",
    		"Complex64",
    		"0+0i",
    		`rpart := floatBits(float64(real(x)))
    		ipart := floatBits(float64(imag(x)))
    		state.encodeUint(rpart)
    		state.encodeUint(ipart)`,
    	},
    	{
    		"complex128",
    		"Complex128",
    		"0+0i",
    		`rpart := floatBits(real(x))
    		ipart := floatBits(imag(x))
    		state.encodeUint(rpart)
    		state.encodeUint(ipart)`,
    	},
    	{
    		"float32",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:39:09 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. apache-maven/src/main/appended-resources/licenses/MIT.txt

     Copyright <YEAR> <COPYRIGHT HOLDER>
    
     Permission is hereby granted, free  of charge, to any person obtaining
     a  copy  of this  software  and  associated  documentation files  (the
     "Software"), to  deal in  the Software without  restriction, including
     without limitation  the rights to  use, copy, modify,  merge, publish,
     distribute,  sublicense, and/or sell  copies of  the Software,  and to
     permit persons to whom the Software  is furnished to do so, subject to
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/test/groovy/org/gradle/workers/internal/WorkerDaemonExpirationTest.groovy

            1 * client2.stop()
            1 * client3.stop()
    
            and:
            reserveIdleClient(twoGbOptions) == null
        }
    
        def "expires idle worker daemons workers that have not provided usage but max heap is specified"() {
            given:
            reportsMemoryUsage = false
            def client1 = reserveNewClient(threeGbOptions)
            def client2 = reserveNewClient(twoGbOptions)
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:56:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. src/net/http/client_test.go

    		4: {method: "POST", serverStatus: 308, wantMethod: "POST"},
    
    		5: {method: "HEAD", serverStatus: 301, wantMethod: "HEAD"},
    		6: {method: "HEAD", serverStatus: 302, wantMethod: "HEAD"},
    		7: {method: "HEAD", serverStatus: 303, wantMethod: "HEAD"},
    		8: {method: "HEAD", serverStatus: 307, wantMethod: "HEAD"},
    		9: {method: "HEAD", serverStatus: 308, wantMethod: "HEAD"},
    
    		10: {method: "GET", serverStatus: 301, wantMethod: "GET"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top