Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 49 for Mi (0.02 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestResultProcessorAdapter.java

                resultProcessor.started(testInternal, new TestStartEvent(clock.getCurrentTime(), parentId));
            }
        }
    
        @Override
        public void onBeforeClass(ITestClass testClass, IMethodInstance mi) {
        }
    
        @Override
        public void onAfterClass(ITestClass testClass) {
            Object id = null;
            synchronized (lock) {
                TestClassInfo info = testClassInfo.get(testClass);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  2. src/encoding/gob/encode.go

    	state := enc.newEncoderState(b)
    	state.fieldnum = -1
    	state.sendZero = true
    	state.encodeUint(uint64(mv.Len()))
    	mi := mv.MapRange()
    	for mi.Next() {
    		encodeReflectValue(state, mi.Key(), keyOp, keyIndir)
    		encodeReflectValue(state, mi.Value(), elemOp, elemIndir)
    	}
    	enc.freeEncoderState(state)
    }
    
    // encodeInterface encodes the interface value iv.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. docs/tr/docs/async.md

    # Concurrency ve async / await
    
    *path operasyon fonksiyonu* için `async def `sözdizimi,  asenkron kod, eşzamanlılık ve paralellik hakkında bazı ayrıntılar.
    
    ## Aceleniz mi var?
    
    <abbr title="too long; didn't read"><strong>TL;DR:</strong></abbr>
    
    Eğer `await` ile çağrılması gerektiğini belirten üçüncü taraf kütüphaneleri kullanıyorsanız, örneğin:
    
    ```Python
    results = await some_library()
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. test/live.go

    var m map[string]int
    var mi map[interface{}]int
    
    // str and iface are used to ensure that a temp is required for runtime calls below.
    func str() string
    func iface() interface{}
    
    func f16() {
    	if b {
    		delete(mi, iface()) // ERROR "stack object .autotmp_[0-9]+ interface \{\}$"
    	}
    	delete(mi, iface())
    	delete(mi, iface())
    }
    
    var m2s map[string]*byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18K bytes
    - Viewed (0)
  5. test/live_regabi.go

    var m map[string]int
    var mi map[interface{}]int
    
    // str and iface are used to ensure that a temp is required for runtime calls below.
    func str() string
    func iface() interface{}
    
    func f16() {
    	if b {
    		delete(mi, iface()) // ERROR "stack object .autotmp_[0-9]+ interface \{\}$"
    	}
    	delete(mi, iface())
    	delete(mi, iface())
    }
    
    var m2s map[string]*byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/library/quantity.go

    //
    //	quantity(<string>) <Quantity>
    //
    // Examples:
    //
    //	quantity('1.5G') // returns a Quantity
    //	quantity('200k') // returns a Quantity
    //	quantity('200K') // error
    //	quantity('Three') // error
    //	quantity('Mi') // error
    //
    // isQuantity
    //
    // Returns true if a string is a valid Quantity. isQuantity returns true if and
    // only if quantity does not result in error.
    //
    //	isQuantity( <string>) <bool>
    //
    // Examples:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  7. docs/tr/docs/features.md

    Artık key isimlerini yanlış yazma, dokümantasyona dönüp deliler gibi yukarı aşağı sayfada gezmek ve en sonunda `username` mi yoksa `user_name` mi kullandım gibi sorular yok.
    
    ### Kısa
    
    Her şey için mantıklı bir **varsayılanı** var. Parametrelerini opsiyonel olarak tanımlayıp API'nı istediğin gibi modifiye edebilirsin.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. src/internal/reflectlite/all_test.go

    	Nil(si, t)
    	si.x = make([]int, 10)
    	NotNil(si, t)
    
    	var ci struct {
    		x chan int
    	}
    	Nil(ci, t)
    	ci.x = make(chan int)
    	NotNil(ci, t)
    
    	var mi struct {
    		x map[int]int
    	}
    	Nil(mi, t)
    	mi.x = make(map[int]int)
    	NotNil(mi, t)
    
    	var ii struct {
    		x any
    	}
    	Nil(ii, t)
    	ii.x = 2
    	NotNil(ii, t)
    
    	var fi struct {
    		x func(t *testing.T)
    	}
    	Nil(fi, t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:26:08 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  9. src/math/big/nat_test.go

    		}
    
    		// t.Logf("#%d: len=%d\n", i, len(m))
    
    		// check output in table
    		xi := &Int{abs: x}
    		yi := &Int{abs: y}
    		mi := &Int{abs: m}
    		p := new(Int).Mod(new(Int).Mul(xi, new(Int).Mul(yi, new(Int).ModInverse(new(Int).Lsh(one, uint(len(m))*_W), mi))), mi)
    		if out.cmp(p.abs.norm()) != 0 {
    			t.Errorf("#%d: out in table=0x%s, computed=0x%s", i, out.utoa(16), p.abs.norm().utoa(16))
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/module/module.go

    // like in "v0.0.1/go.mod".
    func Sort(list []Version) {
    	sort.Slice(list, func(i, j int) bool {
    		mi := list[i]
    		mj := list[j]
    		if mi.Path != mj.Path {
    			return mi.Path < mj.Path
    		}
    		// To help go.sum formatting, allow version/file.
    		// Compare semver prefix by semver rules,
    		// file by string order.
    		vi := mi.Version
    		vj := mj.Version
    		var fi, fj string
    		if k := strings.Index(vi, "/"); k >= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top