Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for numaux (0.17 sec)

  1. pkg/kubelet/cm/memorymanager/policy_static_test.go

    			pod:           getPod("pod2", "container2", requirementsGuaranteed),
    			expectedError: fmt.Errorf("[memorymanager] failed to get the default NUMA affinity, no NUMA nodes with enough memory is available"),
    			topologyHint:  &topologymanager.TopologyHint{},
    		},
    		{
    			description: "should fail when no NUMA affinity was provided under the topology manager preferred hint and default hint has preferred false",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  2. src/reflect/value.go

    			}
    		}
    		in = append(in, v)
    	}
    
    	// Call underlying function.
    	out := f(in)
    	numOut := ftyp.NumOut()
    	if len(out) != numOut {
    		panic("reflect: wrong return count from function created by MakeFunc")
    	}
    
    	// Copy results back into argument frame and register space.
    	if numOut > 0 {
    		for i, typ := range ftyp.OutSlice() {
    			v := out[i]
    			if v.typ() == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    katashina.gunma.jp
    kawaba.gunma.jp
    kiryu.gunma.jp
    kusatsu.gunma.jp
    maebashi.gunma.jp
    meiwa.gunma.jp
    midori.gunma.jp
    minakami.gunma.jp
    naganohara.gunma.jp
    nakanojo.gunma.jp
    nanmoku.gunma.jp
    numata.gunma.jp
    oizumi.gunma.jp
    ora.gunma.jp
    ota.gunma.jp
    shibukawa.gunma.jp
    shimonita.gunma.jp
    shinto.gunma.jp
    showa.gunma.jp
    takasaki.gunma.jp
    takayama.gunma.jp
    tamamura.gunma.jp
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    		t.Errorf("ReadAll error = %v; want io.ErrUnexpectedEOF", err)
    	}
    }
    
    // Wait until number of goroutines is no greater than nmax, or time out.
    func waitNumGoroutine(nmax int) int {
    	nfinal := runtime.NumGoroutine()
    	for ntries := 10; ntries > 0 && nfinal > nmax; ntries-- {
    		time.Sleep(50 * time.Millisecond)
    		runtime.GC()
    		nfinal = runtime.NumGoroutine()
    	}
    	return nfinal
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. src/reflect/all_test.go

    func (i NonExportedFirst) nonexported() int { panic("wrong") }
    
    func TestIssue22073(t *testing.T) {
    	m := ValueOf(NonExportedFirst(0)).Method(0)
    
    	if got := m.Type().NumOut(); got != 0 {
    		t.Errorf("NumOut: got %v, want 0", got)
    	}
    
    	// Shouldn't panic.
    	m.Call(nil)
    }
    
    func TestMapIterNonEmptyMap(t *testing.T) {
    	m := map[string]int{"one": 1, "two": 2, "three": 3}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top