Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,693 for RUNTIME (0.33 sec)

  1. pilot/pkg/leaderelection/k8sleaderelection/leaderelection_test.go

    					verb: "get",
    					reaction: func(action fakeclient.Action) (handled bool, ret runtime.Object, err error) {
    						return true, nil, errors.NewNotFound(action.(fakeclient.GetAction).GetResource().GroupResource(), action.(fakeclient.GetAction).GetName())
    					},
    				},
    				{
    					verb: "create",
    					reaction: func(action fakeclient.Action) (handled bool, ret runtime.Object, err error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 23 16:39:43 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/PublishedCapabilitiesIntegrationTest.groovy

       Cannot select module with conflict on capability 'cglib:cglib:3.2.5' also provided by [cglib:cglib:3.2.5(runtime)]""")
            failure.assertHasCause("""Module 'cglib:cglib' has been rejected:
       Cannot select module with conflict on capability 'cglib:cglib:3.2.5' also provided by [cglib:cglib-nodep:3.2.5(runtime)]""")
        }
    
        def "can detect conflict with capability in different versions and upgrade to latest version (#rule)"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  3. src/internal/trace/trace_test.go

    			}
    		}
    	})
    }
    
    func TestTraceStress(t *testing.T) {
    	switch runtime.GOOS {
    	case "js", "wasip1":
    		t.Skip("no os.Pipe on " + runtime.GOOS)
    	}
    	testTraceProg(t, "stress.go", nil)
    }
    
    func TestTraceStressStartStop(t *testing.T) {
    	switch runtime.GOOS {
    	case "js", "wasip1":
    		t.Skip("no os.Pipe on " + runtime.GOOS)
    	}
    	testTraceProg(t, "stress-start-stop.go", nil)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. 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)
  5. .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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top