Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,814 for RUNTIME (0.34 sec)

  1. 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. .teamcity/subprojects.json

        "path": "platforms/core-runtime/build-process-services",
        "unitTests": true,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "build-profile",
        "path": "platforms/core-runtime/build-profile",
        "unitTests": true,
        "functionalTests": true,
        "crossVersionTests": false
      },
      {
        "name": "build-state",
        "path": "platforms/core-runtime/build-state",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  3. src/runtime/debug/garbage.go

    // C code, and memory mapped by syscall.Mmap (because it is not
    // managed by the Go runtime).
    //
    // More specifically, the following expression accurately reflects
    // the value the runtime attempts to maintain as the limit:
    //
    //	runtime.MemStats.Sys - runtime.MemStats.HeapReleased
    //
    // or in terms of the runtime/metrics package:
    //
    //	/memory/classes/total:bytes - /memory/classes/heap/released:bytes
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/versioning/versioning_unstructured_test.go

    	v2UnstructuredDecodable := buildUnstructuredDecodable(v2GVK)
    
    	testCases := []struct {
    		name          string
    		convertor     runtime.ObjectConvertor
    		targetVersion runtime.GroupVersioner
    		outObj        runtime.Object
    		typer         runtime.ObjectTyper
    
    		errFunc     func(error) bool
    		expectedObj runtime.Object
    	}{
    		{
    			name: "encode v1 unstructured with v2 encode version",
    			typer: &mockTyper{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 08 14:55:24 UTC 2018
    - 10.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/pcln.go

    	//    runtime.pclntab
    	//      Carrier symbol for the entire pclntab section.
    	//
    	//      runtime.pcheader  (see: runtime/symtab.go:pcHeader)
    	//        8-byte magic
    	//        nfunc [thearch.ptrsize bytes]
    	//        offset to runtime.funcnametab from the beginning of runtime.pcheader
    	//        offset to runtime.pclntab_old from beginning of runtime.pcheader
    	//
    	//      runtime.funcnametab
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  6. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformResolveIntegrationTest.groovy

                            constraint("org:foo:1.0")
                            noArtifacts()
                        }
                    } else if (platform == "'org:other-platform:1.0'") {
                        module('org:other-platform:1.0') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof.go

    	show := allFrames
    	frames := runtime.CallersFrames(stk)
    	for {
    		frame, more := frames.Next()
    		name := frame.Function
    		if name == "" {
    			show = true
    			fmt.Fprintf(w, "#\t%#x\n", frame.PC)
    		} else if name != "runtime.goexit" && (show || !strings.HasPrefix(name, "runtime.")) {
    			// Hide runtime.goexit and any runtime functions at the beginning.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. pkg/controller/serviceaccount/tokens_controller_test.go

    import (
    	"reflect"
    	"testing"
    	"time"
    
    	"gopkg.in/square/go-jose.v2/jwt"
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/dump"
    	utilrand "k8s.io/apimachinery/pkg/util/rand"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes/fake"
    	core "k8s.io/client-go/testing"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  9. pkg/registry/certificates/certificates/strategy.go

    func (csrStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string { return nil }
    
    // Canonicalize normalizes the object after validation (which includes a signature check).
    func (csrStrategy) Canonicalize(obj runtime.Object) {}
    
    // ValidateUpdate is the default update validation for an end user.
    func (csrStrategy) ValidateUpdate(ctx context.Context, obj, old runtime.Object) field.ErrorList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 21:41:43 UTC 2022
    - 11.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradleModuleMetadataParserTest.groovy

                },
                {
                    "attributes": { "usage": "runtime", "packaging": "zip" },
                    "name": "runtime"
                }
            ]
        }
    '''), metadata)
    
            then:
            1 * metadata.addVariant("api", attributes(usage: "compile")) >> variant1
            1 * metadata.addVariant("runtime", attributes(usage: "runtime", packaging: "zip")) >> variant2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 38K bytes
    - Viewed (0)
Back to top