Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 835 for runtime (0.18 sec)

  1. doc/next/4-runtime.md

    ## Runtime {#runtime}...
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Jan 24 16:44:53 GMT 2024
    - 22 bytes
    - Viewed (0)
  2. doc/initial/4-runtime.md

    ## Runtime {#runtime}...
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Jan 22 18:07:49 GMT 2024
    - 22 bytes
    - Viewed (0)
  3. maven-compat/src/test/resources/projects/scope/transitive-runtime-dep.xml

          <scope>test</scope>
        </dependency>
    
        <dependency>
          <groupId>maven-test-runtime</groupId>
          <artifactId>scope-runtime</artifactId>
          <version>1.0</version>
          <scope>runtime</scope>
        </dependency>
    
        <dependency>
          <groupId>maven-test-runtime</groupId>
          <artifactId>scope-compile</artifactId>
          <version>1.0</version>
          <scope>compile</scope>
        </dependency>
    
      </dependencies>
    XML
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Oct 26 20:16:00 GMT 2009
    - 1.7K bytes
    - Viewed (0)
  4. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.kotlin-shared-runtime.gradle.kts

    Paul Merlin <******@****.***> 1696347120 +0200
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Oct 03 15:32:00 GMT 2023
    - 652 bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/scopes/Maven3ScopeManagerConfiguration.java

        public static final String RS_MAIN_RUNTIME_PLUS_SYSTEM = "main-runtimePlusSystem";
        public static final String RS_TEST_COMPILE = "test-compile";
        public static final String RS_TEST_RUNTIME = "test-runtime";
    
        private Maven3ScopeManagerConfiguration() {}
    
        @Override
        public String getId() {
            return "Maven3";
        }
    
        @Override
        public boolean isStrictDependencyScopes() {
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  6. common-protos/k8s.io/apimachinery/pkg/runtime/generated.proto

    //
    // // Internal package:
    //
    // 	type MyAPIObject struct {
    // 		runtime.TypeMeta `json:",inline"`
    // 		MyPlugin runtime.Object `json:"myPlugin"`
    // 	}
    //
    // 	type PluginA struct {
    // 		AOption string `json:"aOption"`
    // 	}
    //
    // // External package:
    //
    // 	type MyAPIObject struct {
    // 		runtime.TypeMeta `json:",inline"`
    // 		MyPlugin runtime.RawExtension `json:"myPlugin"`
    // 	}
    //
    // 	type PluginA struct {
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/scopes/Maven4ScopeManagerConfiguration.java

        public static final String RS_MAIN_COMPILE_PLUS_RUNTIME = "main-compilePlusRuntime";
        public static final String RS_MAIN_RUNTIME = "main-runtime";
        public static final String RS_MAIN_RUNTIME_PLUS_SYSTEM = "main-runtimePlusSystem";
        public static final String RS_TEST_COMPILE = "test-compile";
        public static final String RS_TEST_RUNTIME = "test-runtime";
    
        private Maven4ScopeManagerConfiguration() {}
    
        @Override
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  8. src/arena/arena.go

    func Clone[T any](s T) T {
    	return runtime_arena_heapify(s).(T)
    }
    
    //go:linkname reflect_arena_New reflect.arena_New
    func reflect_arena_New(a *Arena, typ any) any {
    	return runtime_arena_arena_New(a.a, typ)
    }
    
    //go:linkname runtime_arena_newArena
    func runtime_arena_newArena() unsafe.Pointer
    
    //go:linkname runtime_arena_arena_New
    func runtime_arena_arena_New(arena unsafe.Pointer, typ any) any
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Oct 12 20:23:36 GMT 2022
    - 4.3K bytes
    - Viewed (0)
  9. api/go1.17.txt

    pkg runtime/cgo (freebsd-arm64-cgo), method (Handle) Delete()
    pkg runtime/cgo (freebsd-arm64-cgo), method (Handle) Value() interface{}
    pkg runtime/cgo (freebsd-arm64-cgo), type Handle uintptr
    pkg runtime/cgo (linux-386-cgo), func NewHandle(interface{}) Handle
    pkg runtime/cgo (linux-386-cgo), method (Handle) Delete()
    pkg runtime/cgo (linux-386-cgo), method (Handle) Value() interface{}
    pkg runtime/cgo (linux-386-cgo), type Handle uintptr
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Feb 17 20:31:46 GMT 2023
    - 18K bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/project/ProjectClasspathTestType.java

            // check all transitive deps of a runtime dependency are runtime scope, except for test
            checkGroupIdScope(project, "runtime", "maven-test-runtime");
            artifact = getArtifact(project, "maven-test-runtime", "scope-runtime");
            assertEquals("runtime", artifact.getScope(), "Check scope");
    
            // check all transitive deps of a compile dependency are compile scope, except for runtime and test
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6.4K bytes
    - Viewed (0)
Back to top