Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 53 for flts (0.09 sec)

  1. pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go

    				frameworkruntime.WithLogger(logger),
    			)
    			if err != nil {
    				t.Fatal(err)
    			}
    			pl := DefaultPreemption{fh: f, fts: test.fts}
    			if got, _ := pl.PodEligibleToPreemptOthers(test.pod, test.nominatedNodeStatus); got != test.expected {
    				t.Errorf("expected %t, got %t for pod: %s", test.expected, got, test.pod.Name)
    			}
    		})
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

          }
        }
      }
    
      // fitText sets text and font-size clipped to the specified width w.
      function fitText(t, avail, textList) {
        // Find first entry in textList that fits.
        let width = avail;
        textContext.font = FONT_SIZE + 'pt Arial';
        for (let i = 0; i < textList.length; i++) {
          let text = textList[i];
          width = textContext.measureText(text).width;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. src/slices/slices.go

    		s2 := append(s[:i], make(S, tot-i)...) // See Insert
    		copy(s2[i:], v)
    		copy(s2[i+len(v):], s[j:])
    		return s2
    	}
    
    	r := s[:tot]
    
    	if i+len(v) <= j {
    		// Easy, as v fits in the deleted portion.
    		copy(r[i:], v)
    		copy(r[i+len(v):], s[j:])
    		clear(s[tot:]) // zero/nil out the obsolete elements, for GC
    		return r
    	}
    
    	// We are expanding (v is bigger than j-i).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 14:01:59 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. src/runtime/stack.go

    above checks (without allocating a full frame), which might trigger
    a call to morestack.  This sequence needs to fit in the bottom
    section of the stack.  On amd64, morestack's frame is 40 bytes, and
    deferproc's frame is 56 bytes.  That fits well within the
    StackGuard - StackSmall bytes at the bottom.
    The linkers explore all possible call traces involving non-splitting
    functions to make sure that this limit cannot be violated.
    */
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  5. src/runtime/sys_darwin.go

    // program's lifetime, before any execs are involved, by calling any
    // notify routine that is exported, calls _notify_globals, and doesn't do
    // anything too expensive otherwise. notify_is_valid_token(0) fits the bill.
    //
    // The other common stack dies in xpc_atfork_child calling
    // _objc_msgSend_uncached which ends up in
    // WAITING_FOR_ANOTHER_THREAD_TO_FINISH_CALLING_+initialize. Of course,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/nodevolumelimits/csi_test.go

    	}{
    		{
    			newPod:       csiEBSOneVolPod,
    			existingPods: []*v1.Pod{runningPod, csiEBSTwoVolPod},
    			filterName:   "csi",
    			maxVols:      4,
    			driverNames:  []string{ebsCSIDriverName},
    			test:         "fits when node volume limit >= new pods CSI volume",
    			limitSource:  "node",
    		},
    		{
    			newPod:       csiEBSOneVolPod,
    			existingPods: []*v1.Pod{runningPod, csiEBSTwoVolPod},
    			filterName:   "csi",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 18:07:11 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  7. src/go/printer/printer_test.go

    		panic(err)
    	}
    
    	// Replace the result with call(), which is on the next line.
    	fd := file.Decls[0].(*ast.FuncDecl)
    	ret := fd.Body.List[0].(*ast.ReturnStmt)
    	ret.Results[0] = ret.Results[0].(*ast.CompositeLit).Elts[0]
    
    	var buf bytes.Buffer
    	if err := Fprint(&buf, fset, ret); err != nil {
    		t.Fatal(err)
    	}
    	want := "return call()"
    	if got := buf.String(); got != want {
    		t.Fatalf("got %q, want %q", got, want)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      // ResourceClaimSpec.
      // +optional
      optional ResourceClassParametersReference parametersRef = 3;
    
      // Only nodes matching the selector will be considered by the scheduler
      // when trying to find a Node that fits a Pod when that Pod uses
      // a ResourceClaim that has not been allocated yet.
      //
      // Setting this field is optional. If null, all nodes are candidates.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    //  0. make a copy of the quotas to act as a "running" quota so we know what we need to update and can still compare against the
    //     originals
    //  1. check each admission attribute to see if it fits within *all* the quotas.  If it didn't fit, mark the waiter as failed
    //     and the running quota doesn't change.  If it did fit, check to see if any quota was changed.  If there was no quota change
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/asm6.go

    	ft   uint8
    	f3t  uint8
    	tt   uint8
    	code uint8
    	op   [4]uint8
    }
    
    const (
    	Yxxx = iota
    	Ynone
    	Yi0 // $0
    	Yi1 // $1
    	Yu2 // $x, x fits in uint2
    	Yi8 // $x, x fits in int8
    	Yu8 // $x, x fits in uint8
    	Yu7 // $x, x in 0..127 (fits in both int8 and uint8)
    	Ys32
    	Yi32
    	Yi64
    	Yiauto
    	Yal
    	Ycl
    	Yax
    	Ycx
    	Yrb
    	Yrl
    	Yrl32 // Yrl on 32-bit system
    	Yrf
    	Yf0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top