Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for worst (0.14 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue_test.go

    						//   never gets executed.
    						// - in worst case, make both ends (of the intersection) a big number,i.e.,
    						//   M intersected with N instead of M with 1 (or 1 with N)
    						// - in random case, each pod failed by a random plugin, and also the moveEvent
    						//   is randomized.
    						if tt.name == "baseline" {
    							podInfo = q.newQueuedPodInfo(p)
    						} else if tt.name == "worst" {
    							// Each pod failed by all plugins.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/crypto/x509/verify_test.go

    	if testing.Short() {
    		t.Skip("skipping generation of a long chain of certificates in short mode")
    	}
    
    	// Build a chain where all intermediates share the same subject, to hit the
    	// path building worst behavior.
    	roots, intermediates := NewCertPool(), NewCertPool()
    
    	parent, parentKey, err := generateCert("Root CA", true, nil, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    	roots.AddCert(parent)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    		}
    
    		if va-sect.Vaddr+funcsize+maxSizeTrampolines(ctxt, ldr, s, isTramp) > textSizelimit {
    			sectAlign := int32(thearch.Funcalign)
    			if ctxt.IsPPC64() {
    				// Align the next text section to the worst case function alignment likely
    				// to be encountered when processing function symbols. The start address
    				// is rounded against the final alignment of the text section later on in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    	// But if OmitDebug is set, don't rewrite the binary, because we set OmitDebug
    	// on binaries that we are going to run and then delete.
    	// There's no point in doing work on such a binary.
    	// Worse, opening the binary for write here makes it
    	// essentially impossible to safely fork+exec due to a fundamental
    	// incompatibility between ETXTBSY and threads on modern Unix systems.
    	// See golang.org/issue/22220.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top