Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for profilem (0.2 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/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)
  5. src/cmd/go/internal/load/pkg.go

    	case "off":
    		return
    
    	case "auto":
    		// Locate PGO profiles from the main packages, and
    		// attach the profile to the main package and its
    		// dependencies.
    		// If we're building multiple main packages, they may
    		// have different profiles. We may need to split (unshare)
    		// the dependency graph so they can attach different
    		// profiles.
    		for _, p := range pkgs {
    			if p.Name != "main" {
    				continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. cluster/gce/gci/configure-helper.sh

    EOF
    }
    
    function create-node-problem-detector-kubeconfig {
      local apiserver_address="${1}"
      if [[ -z "${apiserver_address}" ]]; then
        echo "Must provide API server address to create node-problem-detector kubeconfig file!"
        exit 1
      fi
      echo "Creating node-problem-detector kubeconfig file"
      mkdir -p /var/lib/node-problem-detector
      cat <<EOF >/var/lib/node-problem-detector/kubeconfig
    apiVersion: v1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  9. 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)
  10. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	pInfo := p.unschedulablePods.get(pod)
    	if pInfo != nil {
    		return pInfo.Pod
    	}
    	return nil
    }
    
    // makeEmptyQueueingHintMapPerProfile initializes an empty QueueingHintMapPerProfile for "" profile name.
    func makeEmptyQueueingHintMapPerProfile() QueueingHintMapPerProfile {
    	m := make(QueueingHintMapPerProfile)
    	m[""] = make(QueueingHintMap)
    	return m
    }
    
    func TestPriorityQueue_Add(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top