Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 6,541 for RUNTIME (0.1 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

            'c2'                        | 'c2'                      | 'c2'                      | 'runtime'             | 'runtime'                  | 'runtime'                  | 'runtime'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/MemoryUtil.java

    public final class MemoryUtil {
        private MemoryUtil() {
        }
    
        public static String getMemoryUsageLog() {
            final Runtime runtime = Runtime.getRuntime();
            final long freeBytes = runtime.freeMemory();
            final long maxBytes = runtime.maxMemory();
            final long totalBytes = runtime.totalMemory();
            final long usedBytes = totalBytes - freeBytes;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/groovy/repo/org.example/project3/1.0/ivy-1.0.xml

        <conf name="archives" visibility="public" description="Configuration for archive artifacts."/>
        <conf name="compile" visibility="private" description="Compile classpath for source set 'main'."/>
        <conf name="testRuntime" visibility="private" description="Runtime classpath for source set 'test'." extends="runtime,testCompile"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-conditionalSubstitutionRule/kotlin/repo/org.example/project3/1.0/ivy-1.0.xml

        <conf name="archives" visibility="public" description="Configuration for archive artifacts."/>
        <conf name="compile" visibility="private" description="Compile classpath for source set 'main'."/>
        <conf name="testRuntime" visibility="private" description="Runtime classpath for source set 'test'." extends="runtime,testCompile"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. pkg/registry/core/namespace/storage/storage.go

    }
    
    func (r *REST) New() runtime.Object {
    	return r.store.New()
    }
    
    // Destroy cleans up resources on shutdown.
    func (r *REST) Destroy() {
    	r.store.Destroy()
    }
    
    func (r *REST) NewList() runtime.Object {
    	return r.store.NewList()
    }
    
    func (r *REST) List(ctx context.Context, options *metainternalversion.ListOptions) (runtime.Object, error) {
    	return r.store.List(ctx, options)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprog/lockosthread.go

    	// Ensure enough Ps to actually run everything in parallel. Though on
    	// <4 core machines, we are still at the whim of the kernel scheduler.
    	runtime.GOMAXPROCS(4)
    
    	go func() {
    		// Stop the world; race with LockOSThread below.
    		var m runtime.MemStats
    		for {
    			runtime.ReadMemStats(&m)
    		}
    	}()
    
    	// Try to synchronize both LockOSThreads.
    	start := time.Now().Add(10 * time.Millisecond)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:00:09 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. pkg/registry/scheduling/priorityclass/strategy.go

    	pc := obj.(*scheduling.PriorityClass)
    	return validation.ValidatePriorityClass(pc)
    }
    
    // WarningsOnCreate returns warnings for the creation of the given object.
    func (priorityClassStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    
    // Canonicalize normalizes the object after validation.
    func (priorityClassStrategy) Canonicalize(obj runtime.Object) {}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 08 10:11:23 UTC 2022
    - 3K bytes
    - Viewed (0)
  8. pkg/registry/storage/storageclass/strategy.go

    }
    
    // ResetBeforeCreate clears the Status field which is not allowed to be set by end users on creation.
    func (storageClassStrategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
    }
    
    func (storageClassStrategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList {
    	storageClass := obj.(*storage.StorageClass)
    	return validation.ValidateStorageClass(storageClass)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 25 07:15:34 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/test/issue9400_linux.go

    package cgotest
    
    /*
    #include <sys/types.h>
    #include <unistd.h>
    */
    import "C"
    
    import (
    	"runtime"
    	"runtime/debug"
    	"sync/atomic"
    	"testing"
    
    	"cmd/cgo/internal/test/issue9400"
    )
    
    func test9400(t *testing.T) {
    	// We synchronize through a shared variable, so we need two procs
    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(2))
    
    	// Start signaller
    	atomic.StoreInt32(&issue9400.Baton, 0)
    	go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_trimpath.txt

    go 1.17
    
    -- pkg.go --
    package pkg
    
    import "runtime"
    
    func PrintFile() {
    	_, file, _, _ := runtime.Caller(0)
    	println(file)
    }
    
    -- pkg_test.go --
    package pkg
    
    import "runtime"
    
    func PrintFileForTest() {
    	_, file, _, _ := runtime.Caller(0)
    	println(file)
    }
    
    -- pkg_x_test.go --
    package pkg_test
    
    import (
    	"runtime"
    	"testing"
    
    	"example.com/pkg"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 12 15:17:33 UTC 2021
    - 657 bytes
    - Viewed (0)
Back to top