Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 170 for regUsed (0.54 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/doc.go

    limitations under the License.
    */
    
    // package options is the public flags and options used by a generic api
    // server. It takes a minimal set of dependencies and does not reference
    // implementations, in order to ensure it may be reused by multiple components
    // (such as CLI commands that wish to generate or validate config).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 01 20:18:33 UTC 2017
    - 928 bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/operations/execution/ExecuteWorkBuildOperationType.java

             * </ul>
             */
            @Nullable
            String getSkipMessage();
    
            /**
             * If work was UP_TO_DATE or FROM_CACHE, this will convey the ID of the build that produced the outputs being reused.
             * Value will be null for any other outcome.
             *
             * This value may also be null for an UP_TO_DATE outcome where the work executed, but then decided it was UP_TO_DATE.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:13:49 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. internal/grid/grid.go

    const (
    	// minBufferSize is the minimum buffer size.
    	// Buffers below this is not reused.
    	minBufferSize = 1 << 10
    
    	// defaultBufferSize is the default buffer allocation size.
    	defaultBufferSize = 4 << 10
    
    	// maxBufferSize is the maximum buffer size.
    	// Buffers larger than this is not reused.
    	maxBufferSize = 96 << 10
    
    	// This is the assumed size of bigger buffers and allocation size.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 02 15:56:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testsanitizers/testdata/tsan14.go

    // to update gp.stack.lo with the stack bounds. If the G itself is passed to
    // _cgo_getstackbound, then writes to the same G can be seen on multiple
    // threads (when the G is reused after thread exit). This would trigger TSAN.
    
    /*
    #include <pthread.h>
    
    void go_callback();
    
    static void *thr(void *arg) {
        go_callback();
        return 0;
    }
    
    static void foo() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1/types_test.go

    // for removed fields are not re-used. DO NOT remove this test for any reason, this ensures that tombstoned
    // protobuf field numbers are not accidentally reused by other fields.
    func Test_NetworkPolicyRemovedFieldProtobufNumberReservation(t *testing.T) {
    	obj := reflect.ValueOf(NetworkPolicy{}).Type()
    	for i := 0; i < obj.NumField(); i++ {
    		f := obj.Field(i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/api/internal/ReusableAction.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal;
    
    /**
     * A marker interface for rules which can be safely reused because they are either
     * stateless, or effectively immutable. Ideally this should be inferred, which is
     * why the interface is internal.
     */
    public interface ReusableAction {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 893 bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/cache.go

    	blocks [200]Block
    	locs   [2000]Location
    
    	// Reusable stackAllocState.
    	// See stackalloc.go's {new,put}StackAllocState.
    	stackAllocState *stackAllocState
    
    	scrPoset []*poset // scratch poset to be reused
    
    	// Reusable regalloc state.
    	regallocValues []valState
    
    	ValueToProgAfter []*obj.Prog
    	debugState       debugState
    
    	Liveness interface{} // *gc.livenessFuncCache
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 23:00:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. src/runtime/defs_solaris_amd64.go

    //go:build ignore
    
    /*
    Input to cgo.
    
    GOARCH=amd64 go tool cgo -cdefs defs_solaris.go defs_solaris_amd64.go >defs_solaris_amd64.h
    */
    
    package runtime
    
    /*
    #include <sys/types.h>
    #include <sys/regset.h>
    */
    import "C"
    
    const (
    	REG_RDI    = C.REG_RDI
    	REG_RSI    = C.REG_RSI
    	REG_RDX    = C.REG_RDX
    	REG_RCX    = C.REG_RCX
    	REG_R8     = C.REG_R8
    	REG_R9     = C.REG_R9
    	REG_R10    = C.REG_R10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1004 bytes
    - Viewed (0)
  9. src/runtime/metrics/sample.go

    // manipulated while a Read with that value is outstanding; that is a data race.
    // This property includes pointer-typed Values (for example, [Float64Histogram])
    // whose underlying storage will be reused by Read when possible. To safely use
    // such values in a concurrent setting, all data must be deep-copied.
    //
    // It is safe to execute multiple Read calls concurrently, but their arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/extensions/v1beta1/types_test.go

    // for removed fields are not re-used. DO NOT remove this test for any reason, this ensures that tombstoned
    // protobuf field numbers are not accidentally reused by other fields.
    func Test_NetworkPolicyRemovedFieldProtobufNumberReservation(t *testing.T) {
    	obj := reflect.ValueOf(NetworkPolicy{}).Type()
    	for i := 0; i < obj.NumField(); i++ {
    		f := obj.Field(i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top