Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 6,565 for runtime2 (0.15 sec)

  1. architecture/README.md

    While a lot of Gradle source code runs only in the Gradle daemon, not all of it does and so, when working on some source code it is important to be aware of the runtimes in which it will run.
    
    See [Gradle runtimes](runtimes.md) for a list of these runtimes and more details.
    
    ## Build state model
    
    As Gradle executes, it acts on various pieces of the build definition, such as each project in the build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. test/fixedbugs/issue54343.go

    package main
    
    import "runtime"
    
    func main() {
    	if wait() {
    		panic("GC'd early")
    	}
    	m = nil
    	if !wait() {
    		panic("never GC'd")
    	}
    }
    
    var m = New[int]().M
    
    func New[X any]() *T[X] {
    	p := new(T[X])
    	runtime.SetFinalizer(p, func(*T[X]) { close(done) })
    	return p
    }
    
    type T[X any] [4]int // N.B., [4]int avoids runtime's tiny object allocator
    
    func (*T[X]) M() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 11 20:13:07 UTC 2022
    - 695 bytes
    - Viewed (0)
  3. test/fixedbugs/issue46725.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "runtime"
    
    type T [4]int // N.B., [4]int avoids runtime's tiny object allocator
    
    //go:noinline
    func g(x []*T) ([]*T, []*T) { return x, x }
    
    func main() {
    	const Jenny = 8675309
    	s := [10]*T{{Jenny}}
    
    	done := make(chan struct{})
    	runtime.SetFinalizer(s[0], func(p *T) { close(done) })
    
    	var h, _ interface{} = g(s[:])
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 11 20:13:07 UTC 2022
    - 818 bytes
    - Viewed (0)
  4. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JvmVendorSpec.java

        /**
         * A constant for using <a href="https://developer.ibm.com/languages/java/semeru-runtimes/">IBM Semeru Runtimes</a> as the JVM vendor.
         *
         * @since 7.4
         * @deprecated We are grouping all IBM runtimes under the '{@code IBM}' vendor, won't keep a separate constant for Semeru ones. Just use '{@code IBM}' instead.
         */
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/v1/defaults.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1
    
    import kruntime "k8s.io/apimachinery/pkg/runtime"
    
    func addDefaultingFuncs(scheme *kruntime.Scheme) error {
    	return RegisterDefaults(scheme)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 781 bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/v1alpha1/defaults.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1alpha1
    
    import kruntime "k8s.io/apimachinery/pkg/runtime"
    
    func addDefaultingFuncs(scheme *kruntime.Scheme) error {
    	return RegisterDefaults(scheme)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 787 bytes
    - Viewed (0)
  7. architecture/platforms.md

    This platform does not provide special support for a particular kind of automation. This is the responsibility of other platforms.
    
    It is made up of 3 architecture modules:
    
    - **core-runtime**: Provides the runtimes or "containers" in which code runs. These runtimes include the Gradle client, the daemon and the worker processes. This is the base module on which all other architecture modules depend.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  8. plugin/pkg/admission/eventratelimit/apis/eventratelimit/v1alpha1/defaults.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1alpha1
    
    import kruntime "k8s.io/apimachinery/pkg/runtime"
    
    func addDefaultingFuncs(scheme *kruntime.Scheme) error {
    	return RegisterDefaults(scheme)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 17:38:03 UTC 2017
    - 787 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/apis/resourcequota/v1beta1/defaults.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1beta1
    
    import kruntime "k8s.io/apimachinery/pkg/runtime"
    
    func addDefaultingFuncs(scheme *kruntime.Scheme) error {
    	return RegisterDefaults(scheme)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 04 12:53:52 UTC 2020
    - 786 bytes
    - Viewed (0)
  10. cmd/genswaggertypedocs/swagger_type_docs.go

    		}
    		defer file.Close()
    		funcOut = file
    	}
    
    	docsForTypes := kruntime.ParseDocumentationFrom(*typeSrc)
    
    	if *verify {
    		rc, err := kruntime.VerifySwaggerDocsExist(docsForTypes, funcOut)
    		if err != nil {
    			fmt.Fprintf(os.Stderr, "Error in verification process: %s\n", err)
    		}
    		os.Exit(rc)
    	}
    
    	if len(docsForTypes) > 0 {
    		if err := kruntime.WriteSwaggerDocFunc(docsForTypes, funcOut); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 1.8K bytes
    - Viewed (0)
Back to top