Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 629 for RUNTIME (0.03 sec)

  1. doc/next/4-runtime.md

    `GOMAXPROCS` defaults to the number of logical CPUs available at startup
    ([runtime.NumCPU]). Go 1.25 introduces two changes:
    
    1. On Linux, the runtime considers the CPU bandwidth limit of the cgroup
       containing the process, if any. If the CPU bandwidth limit is lower than the
       number of logical CPUs available, `GOMAXPROCS` will default to the lower
       limit. In container runtime systems like Kubernetes, cgroup CPU bandwidth
    Registered: 2025-05-27 11:13
    - Last Modified: 2025-05-21 17:21
    - 2.6K bytes
    - Viewed (0)
  2. doc/initial/4-runtime.md

    ## Runtime {#runtime}...
    Registered: 2025-05-27 11:13
    - Last Modified: 2024-01-22 18:07
    - 22 bytes
    - Viewed (0)
  3. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.kotlin-shared-runtime.gradle.kts

        id("gradlebuild.test-retry")
        id("gradlebuild.ci-reporting")
        id("gradlebuild.private-javadoc")
    }
    
    description = "A plugin that sets up a Kotlin DSL code that is shared between build-logic and runtime"
    
    java {
        sourceCompatibility = JavaVersion.VERSION_1_8
        targetCompatibility = JavaVersion.VERSION_1_8
    }
    
    kotlin {
        compilerOptions {
            allWarningsAsErrors = true
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-01-22 14:28
    - 869 bytes
    - Viewed (0)
  4. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.java-shared-runtime.gradle.kts

        id("gradlebuild.repositories")
        id("gradlebuild.reproducible-archives")
        id("gradlebuild.private-javadoc")
    }
    
    description = "A plugin that sets up a Java code that is shared between build-logic and runtime"
    
    java {
        sourceCompatibility = JavaVersion.VERSION_1_8
        targetCompatibility = JavaVersion.VERSION_1_8
    }
    
    testing {
        suites {
            val test by getting(JvmTestSuite::class) {
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-01-22 14:28
    - 699 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java

        }
    
        @Override
        protected void setupHtmlData(final ActionRuntime runtime) {
            super.setupHtmlData(runtime);
            systemHelper.setupSearchHtmlData(this, runtime);
    
            runtime.registerData("osddLink", osddHelper.hasOpenSearchFile());
            runtime.registerData("clipboardCopyIcon", fessConfig.isClipboardCopyIconEnabled());
    
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 10K bytes
    - Viewed (0)
  6. 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
    Registered: 2025-05-27 11:13
    - Last Modified: 2023-02-17 20:31
    - 18K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

        protected void setupHtmlData(final ActionRuntime runtime) {
            super.setupHtmlData(runtime);
            systemHelper.setupAdminHtmlData(this, runtime);
    
            final Boolean editable = getUserBean()
                    .map(user -> user.hasRoles(fessConfig.getAuthenticationAdminRolesAsArray()) || user.hasRole(getActionRole())).orElse(false);
            runtime.registerData("editable", editable);
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 5.2K bytes
    - Viewed (0)
  8. api/next/63185.txt

    pkg runtime/trace, func NewFlightRecorder(FlightRecorderConfig) *FlightRecorder #63185
    pkg runtime/trace, method (*FlightRecorder) Enabled() bool #63185
    pkg runtime/trace, method (*FlightRecorder) Start() error #63185
    pkg runtime/trace, method (*FlightRecorder) Stop() #63185
    pkg runtime/trace, method (*FlightRecorder) WriteTo(io.Writer) (int64, error) #63185
    pkg runtime/trace, type FlightRecorder struct #63185
    pkg runtime/trace, type FlightRecorderConfig struct #63185
    Registered: 2025-05-27 11:13
    - Last Modified: 2025-05-22 01:39
    - 630 bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

        public final ActionResponse godHandMonologue(final ActionRuntime runtime) {
            return viewHelper.getActionHook().godHandMonologue(runtime, super::godHandMonologue);
        }
    
        @Override
        public final void godHandEpilogue(final ActionRuntime runtime) {
            viewHelper.getActionHook().godHandEpilogue(runtime, super::godHandEpilogue);
        }
    
        // #app_customize you can customize the action hook
        @Override
    Registered: 2025-05-26 08:04
    - Last Modified: 2025-03-15 06:53
    - 9.3K bytes
    - Viewed (0)
  10. .teamcity/subprojects.json

        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "build-state",
        "path": "platforms/core-runtime/build-state",
        "unitTests": true,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "classloaders",
        "path": "platforms/core-runtime/classloaders",
        "unitTests": false,
    Registered: 2025-05-28 11:36
    - Last Modified: 2025-05-19 18:16
    - 35.9K bytes
    - Viewed (0)
Back to top