Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for sotav (0.05 sec)

  1. src/net/internal/socktest/switch_windows.go

    	sw.smu.RLock()
    	defer sw.smu.RUnlock()
    	so, ok := sw.sotab[s]
    	if !ok {
    		return nil
    	}
    	return &so
    }
    
    // addLocked returns a new Status without locking.
    // sw.smu must be held before call.
    func (sw *Switch) addLocked(s syscall.Handle, family, sotype, proto int) *Status {
    	sw.once.Do(sw.init)
    	so := Status{Cookie: cookie(family, sotype, proto)}
    	sw.sotab[s] = so
    	return &so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 13 21:38:34 UTC 2015
    - 730 bytes
    - Viewed (0)
  2. src/net/internal/socktest/switch_unix.go

    	sw.smu.RLock()
    	defer sw.smu.RUnlock()
    	so, ok := sw.sotab[s]
    	if !ok {
    		return nil
    	}
    	return &so
    }
    
    // addLocked returns a new Status without locking.
    // sw.smu must be held before call.
    func (sw *Switch) addLocked(s, family, sotype, proto int) *Status {
    	sw.once.Do(sw.init)
    	so := Status{Cookie: cookie(family, sotype, proto)}
    	sw.sotab[s] = so
    	return &so
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:54:10 UTC 2023
    - 718 bytes
    - Viewed (0)
  3. src/net/internal/socktest/switch.go

    // calls.
    type Switch struct {
    	once sync.Once
    
    	fmu   sync.RWMutex
    	fltab map[FilterType]Filter
    
    	smu   sync.RWMutex
    	sotab Sockets
    	stats stats
    }
    
    func (sw *Switch) init() {
    	sw.fltab = make(map[FilterType]Filter)
    	sw.sotab = make(Sockets)
    	sw.stats = make(stats)
    }
    
    // Stats returns a list of per-cookie socket statistics.
    func (sw *Switch) Stats() []Stat {
    	var st []Stat
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskErrorExecutionIntegrationTest.groovy

                allprojects { task someTaskAll }
                project(':a') { task someTaskA }
                project(':b') { task someTaskB }
            """
    
            when:
            fails "soTa"
            then:
            failure.assertHasDescription("Task 'soTa' is ambiguous in root project 'test' and its subprojects. Candidates are: 'someTaskA', 'someTaskAll', 'someTaskB'.")
            failure.assertHasResolutions(
                GET_TASKS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess/ca/stopwords.txt

    quina
    quines
    quins
    s'ha
    s'han
    sa
    semblant
    semblants
    ses
    seu 
    seus
    seva
    seva
    seves
    si
    sobre
    sobretot
    sóc
    solament
    sols
    son 
    són
    sons 
    sota
    sou
    t'ha
    t'han
    t'he
    ta
    tal
    també
    tampoc
    tan
    tant
    tanta
    tantes
    teu
    teus
    teva
    teves
    ton
    tons
    tot
    tota
    totes
    tots
    un
    una
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	"provenc":  0x47,
    	"puter":    0x48,
    	"rigik":    0x49,
    	"rozaj":    0x4a,
    	"rumgr":    0x4b,
    	"scotland": 0x4c,
    	"scouse":   0x4d,
    	"simple":   0x6f,
    	"solba":    0x66,
    	"sotav":    0x4e,
    	"spanglis": 0x4f,
    	"surmiran": 0x50,
    	"sursilv":  0x51,
    	"sutsilv":  0x52,
    	"synnejyl": 0x53,
    	"tarask":   0x54,
    	"tongyong": 0x55,
    	"tunumiit": 0x56,
    	"uccor":    0x57,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  7. src/net/internal/socktest/sys_unix.go

    	if err = af.apply(so); err != nil {
    		return err
    	}
    
    	sw.smu.Lock()
    	defer sw.smu.Unlock()
    	if so.Err != nil {
    		sw.stats.getLocked(so.Cookie).CloseFailed++
    		return so.Err
    	}
    	delete(sw.sotab, s)
    	sw.stats.getLocked(so.Cookie).Closed++
    	return nil
    }
    
    // Connect wraps syscall.Connect.
    func (sw *Switch) Connect(s int, sa syscall.Sockaddr) (err error) {
    	so := sw.sockso(s)
    	if so == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. src/net/internal/socktest/sys_windows.go

    	if err = af.apply(so); err != nil {
    		return err
    	}
    
    	sw.smu.Lock()
    	defer sw.smu.Unlock()
    	if so.Err != nil {
    		sw.stats.getLocked(so.Cookie).CloseFailed++
    		return so.Err
    	}
    	delete(sw.sotab, s)
    	sw.stats.getLocked(so.Cookie).Closed++
    	return nil
    }
    
    // Connect wraps [syscall.Connect].
    func (sw *Switch) Connect(s syscall.Handle, sa syscall.Sockaddr) (err error) {
    	so := sw.sockso(s)
    	if so == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/_aws/fess.json

    "quant ", "que", "què", "quelcom", "qui", "quin", "quina", "quines", "quins", "s'ha", "s'han", "sa", "semblant", "semblants", "ses", "seu ", "seus", "seva", "seva", "seves", "si", "sobre", "sobretot", "sóc", "solament", "sols", "son ", "són", "sons ", "sota", "sou", "t'ha", "t'han", "t'he", "ta", "tal", "també", "tampoc", "tan", "tant", "tanta", "tantes", "teu", "teus", "teva", "teves", "ton", "tons", "tot", "tota", "totes", "tots", "un", "una", "unes", "uns", "us", "va", "vaig", "vam", "van", "vas",...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Mar 23 12:38:28 UTC 2021
    - 117.3K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/_cloud/fess.json

    "quant ", "que", "què", "quelcom", "qui", "quin", "quina", "quines", "quins", "s'ha", "s'han", "sa", "semblant", "semblants", "ses", "seu ", "seus", "seva", "seva", "seves", "si", "sobre", "sobretot", "sóc", "solament", "sols", "son ", "són", "sons ", "sota", "sou", "t'ha", "t'han", "t'he", "ta", "tal", "també", "tampoc", "tan", "tant", "tanta", "tantes", "teu", "teus", "teva", "teves", "ton", "tons", "tot", "tota", "totes", "tots", "un", "una", "unes", "uns", "us", "va", "vaig", "vam", "van", "vas",...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Feb 27 09:26:16 UTC 2021
    - 117.3K bytes
    - Viewed (0)
Back to top