Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. doc/next/4-runtime.md

    ## Runtime {#runtime}...
    Plain Text
    - Registered: Tue Apr 30 11:13:12 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 30 11:13:12 GMT 2024
    - Last Modified: Mon Jan 22 18:07:49 GMT 2024
    - 22 bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/callback_windows.go

    #endif
    }
    */
    import "C"
    
    import (
    	"internal/testenv"
    	"reflect"
    	"runtime"
    	"strings"
    	"testing"
    	"unsafe"
    )
    
    // Test that the stack can be unwound through a call out and call back
    // into Go.
    func testCallbackCallersSEH(t *testing.T) {
    	testenv.SkipIfOptimizationOff(t) // This test requires inlining.
    	if runtime.Compiler != "gc" {
    		// The exact function names are not going to be the same.
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Nov 29 16:01:37 GMT 2023
    - 2.6K bytes
    - Viewed (0)
  4. 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 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 7.6K bytes
    - Viewed (0)
  5. 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
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/suggest/AdminSuggestAction.java

        @Override
        protected void setupHtmlData(final ActionRuntime runtime) {
            super.setupHtmlData(runtime);
            runtime.registerData("helpLink", systemHelper.getHelpLink(fessConfig.getOnlineHelpNameSuggest()));
            runtime.registerData("totalWordsNum", suggestHelper.getAllWordsNum());
            runtime.registerData("documentWordsNum", suggestHelper.getDocumentWordsNum());
            runtime.registerData("queryWordsNum", suggestHelper.getQueryWordsNum());
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  7. 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 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  8. .teamcity/subprojects.json

        "crossVersionTests": false
      },
      {
        "name": "build-operations",
        "path": "platforms/core-runtime/build-operations",
        "unitTests": true,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "build-option",
        "path": "platforms/core-runtime/build-option",
        "unitTests": true,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
    Json
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Apr 16 15:50:57 GMT 2024
    - 26.8K bytes
    - Viewed (0)
  9. 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 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 9.1K bytes
    - Viewed (0)
  10. cmd/admin-server-info.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"context"
    	"math"
    	"net/http"
    	"os"
    	"runtime"
    	"runtime/debug"
    	"sort"
    	"strings"
    	"time"
    
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/config"
    	"github.com/minio/minio/internal/kms"
    )
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 4.8K bytes
    - Viewed (0)
Back to top