Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for jprofiler (0.15 sec)

  1. cmd/admin-handlers.go

    	}
    
    	// Stop profiler of all types if already running
    	for k, v := range globalProfiler {
    		v.Stop()
    		delete(globalProfiler, k)
    	}
    
    	// Start profiling on remote servers.
    	for _, profiler := range profiles {
    		globalNotificationSys.StartProfiling(profiler)
    
    		// Start profiling locally as well.
    		prof, err := startProfiler(profiler)
    		if err == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/runtime/framework_test.go

    	if _, ok := r[queueSortPlugin]; !ok {
    		r[queueSortPlugin] = newQueueSortPlugin
    	}
    	if _, ok := r[bindPlugin]; !ok {
    		r[bindPlugin] = newBindPlugin
    	}
    
    	if len(profile.Plugins.QueueSort.Enabled) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  3. pkg/scheduler/schedule_one_test.go

    					return &framework.QueuedPodInfo{PodInfo: mustNewPodInfo(t, item.sendPod)}, nil
    				},
    				SchedulingQueue: internalqueue.NewTestQueue(ctx, nil),
    				Profiles:        profile.Map{testSchedulerName: fwk},
    			}
    
    			sched.SchedulePod = func(ctx context.Context, fwk framework.Framework, state *framework.CycleState, pod *v1.Pod) (ScheduleResult, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    			newg.labels = mp.curg.labels
    		}
    		if goroutineProfile.active {
    			// A concurrent goroutine profile is running. It should include
    			// exactly the set of goroutines that were alive when the goroutine
    			// profiler first stopped the world. That does not include newg, so
    			// mark it as not needing a profile before transitioning it from
    			// _Gdead.
    			newg.goroutineProfiled.Store(goroutineProfileSatisfied)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    			return fmt.Errorf("marshal embedcfg: %v", err)
    		}
    		embedcfg = js
    	}
    
    	// Find PGO profile if needed.
    	var pgoProfile string
    	for _, a1 := range a.Deps {
    		if a1.Mode != "preprocess PGO profile" {
    			continue
    		}
    		if pgoProfile != "" {
    			return fmt.Errorf("action contains multiple PGO profile dependencies")
    		}
    		pgoProfile = a1.built
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. pkg/api/pod/util_test.go

    					AppArmorProfile: &api.AppArmorProfile{
    						Type: api.AppArmorProfileTypeRuntimeDefault,
    					},
    				},
    			},
    		},
    	}, {
    		description: "with pod AppArmor profile",
    		hasFields:   true,
    		pod: api.Pod{
    			ObjectMeta: metav1.ObjectMeta{Annotations: map[string]string{"a": "1"}},
    			Spec: api.PodSpec{
    				SecurityContext: &api.PodSecurityContext{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. src/cmd/go/alldocs.go

    //		Valid values are power8 (default), power9, power10.
    //	GORISCV64
    //		For GOARCH=riscv64, the RISC-V user-mode application profile for which
    //		to compile. Valid values are rva20u64 (default), rva22u64.
    //		See https://github.com/riscv/riscv-profiles/blob/main/src/profiles.adoc
    //	GOWASM
    //		For GOARCH=wasm, comma-separated list of experimental WebAssembly features to use.
    //		Valid values are satconv, signext.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  8. fastapi/routing.py

    ) -> Any:
        # Only called by get_request_handler. Has been split into its own function to
        # facilitate profiling endpoints, since inner functions are harder to profile.
        assert dependant.call is not None, "dependant.call must be a function"
    
        if is_coroutine:
            return await dependant.call(**values)
        else:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  9. src/internal/trace/traceviewer/static/webcomponents.min.js

    MLElement),r)}function f(e,t){var n=e[t];e[t]=function(){var e=n.apply(this,arguments);return v(e),e}}var m,w=(e.isIE,e.upgradeDocumentTree),v=e.upgradeAll,g=e.upgradeWithDefinition,b=e.implementPrototype,y=e.useNative,E=["annotation-xml","color-profile","font-face","font-face-src","font-face-uri","font-face-format","font-face-name","missing-glyph"],_={},S="http://www.w3.org/1999/xhtml",T=document.createElement.bind(document),M=document.createElementNS.bind(document);m=Object.__proto__||y?function(e,t){return...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
Back to top