Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Profile (0.12 sec)

  1. pkg/scheduler/schedule_one_test.go

    			numAllNodes:  1000,
    			wantNumNodes: 420,
    		},
    		{
    			name:              "set profile percentageOfNodesToScore and nodes number more than 50",
    			profilePercentage: ptr.To[int32](40),
    			numAllNodes:       1000,
    			wantNumNodes:      400,
    		},
    		{
    			name:              "set global and profile percentageOfNodesToScore and nodes number more than 50",
    			globalPercentage:  100,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    //
    //	-coverprofile cover.out
    //	    Write a coverage profile to the file after all tests have passed.
    //	    Sets -cover.
    //
    //	-cpuprofile cpu.out
    //	    Write a CPU profile to the specified file before exiting.
    //	    Writes test binary as -c would.
    //
    //	-memprofile mem.out
    //	    Write an allocation profile to the file after all tests have passed.
    //	    Writes test binary as -c would.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	}
    
    	cxxflags := str.StringList(cgoCPPFLAGS, cgoCXXFLAGS)
    	for _, file := range gxxfiles {
    		ofile := nextOfile()
    		if err := b.gxx(a, a.Objdir, ofile, cxxflags, file); err != nil {
    			return nil, nil, err
    		}
    		outObj = append(outObj, ofile)
    	}
    
    	for _, file := range mfiles {
    		ofile := nextOfile()
    		if err := b.gcc(a, a.Objdir, ofile, cflags, file); err != nil {
    			return nil, nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

    }
    
    function override-kubectl {
        echo "overriding kubectl"
        echo "export PATH=${KUBE_HOME}/bin:\$PATH" > /etc/profile.d/kube_env.sh
    
        # source the file explicitly otherwise we have
        # issues on a ubuntu OS image finding the kubectl
        # shellcheck disable=SC1091
        source /etc/profile.d/kube_env.sh
    
        # Add ${KUBE_HOME}/bin into sudoer secure path.
        local sudo_path
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. 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