Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 130 for npidle (0.1 sec)

  1. src/cmd/go/internal/par/queue.go

    			if len(st.backlog) == 0 {
    				if st.active--; st.active == 0 && st.idle != nil {
    					close(st.idle)
    				}
    				q.st <- st
    				return
    			}
    			f, st.backlog = st.backlog[0], st.backlog[1:]
    			q.st <- st
    		}
    	}()
    }
    
    // Idle returns a channel that will be closed when q has no (active or enqueued)
    // work outstanding.
    func (q *Queue) Idle() <-chan struct{} {
    	st := <-q.st
    	defer func() { q.st <- st }()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 24 21:08:46 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/context.go

    	offset := 2 + e[0]&lengthMask // size of header + fold string
    
    	nFirst := (e[1] >> lengthBits) & lengthMask
    	if nTitle := e[1] & lengthMask; nTitle != noChange {
    		if nFirst != noChange {
    			e = e[nFirst:]
    		}
    		return c.writeString(e[offset : offset+nTitle])
    	}
    	if ct == cLower && nFirst != noChange {
    		// Use the uppercase version instead.
    		return c.writeString(e[offset : offset+nFirst])
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. src/strings/strings_test.go

    	{"", "a", false},
    
    	// cases to cover code in runtime/asm_amd64.s:indexShortStr
    	// 2-byte needle
    	{"xxxxxx", "01", false},
    	{"01xxxx", "01", true},
    	{"xx01xx", "01", true},
    	{"xxxx01", "01", true},
    	{"01xxxxx"[1:], "01", false},
    	{"xxxxx01"[:6], "01", false},
    	// 3-byte needle
    	{"xxxxxxx", "012", false},
    	{"012xxxx", "012", true},
    	{"xx012xx", "012", true},
    	{"xxxx012", "012", true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

        const char* needle_expr, const char* haystack_expr,
        const char* needle, const char* haystack);
    GTEST_API_ AssertionResult IsSubstring(
        const char* needle_expr, const char* haystack_expr,
        const wchar_t* needle, const wchar_t* haystack);
    GTEST_API_ AssertionResult IsNotSubstring(
        const char* needle_expr, const char* haystack_expr,
        const char* needle, const char* haystack);
    GTEST_API_ AssertionResult IsNotSubstring(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/v1beta4/defaults_windows.go

    	DefaultCACertPath = "C:/etc/kubernetes/pki/ca.crt"
    	// DefaultContainerRuntimeURLScheme defines default socket url prefix
    	DefaultContainerRuntimeURLScheme = "npipe"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 11:33:30 UTC 2023
    - 879 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

        const char* needle_expr, const char* haystack_expr,
        const char* needle, const char* haystack);
    GTEST_API_ AssertionResult IsSubstring(
        const char* needle_expr, const char* haystack_expr,
        const wchar_t* needle, const wchar_t* haystack);
    GTEST_API_ AssertionResult IsNotSubstring(
        const char* needle_expr, const char* haystack_expr,
        const char* needle, const char* haystack);
    GTEST_API_ AssertionResult IsNotSubstring(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        set("b", "b", "b")
        while (taskFaker.isIdle()) {
          assertValue("a", "a", "a")
          assertValue("b", "b", "b")
        }
      }
    
      @ParameterizedTest
      @ArgumentsSource(FileSystemParamProvider::class)
      fun rebuildJournalOnRepeatedEdits(parameters: Pair<FileSystem, Boolean>) {
        setUp(parameters.first, parameters.second)
        while (taskFaker.isIdle()) {
          set("a", "a", "a")
          set("b", "b", "b")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/runtime/runtime_windows.go

    func isExistingSocket(path string) bool {
    	u, err := url.Parse(path)
    	if err != nil {
    		// should not happen, since we are trying to access known / hardcoded sockets
    		return false
    	}
    
    	// the dial path must be without "npipe://"
    	_, err = winio.DialPipe(u.Path, nil)
    	if err != nil {
    		return false
    	}
    
    	return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 12 15:15:45 UTC 2022
    - 1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/ast/inspector/typeof.go

    	nBranchStmt
    	nCallExpr
    	nCaseClause
    	nChanType
    	nCommClause
    	nComment
    	nCommentGroup
    	nCompositeLit
    	nDeclStmt
    	nDeferStmt
    	nEllipsis
    	nEmptyStmt
    	nExprStmt
    	nField
    	nFieldList
    	nFile
    	nForStmt
    	nFuncDecl
    	nFuncLit
    	nFuncType
    	nGenDecl
    	nGoStmt
    	nIdent
    	nIfStmt
    	nImportSpec
    	nIncDecStmt
    	nIndexExpr
    	nIndexListExpr
    	nInterfaceType
    	nKeyValueExpr
    	nLabeledStmt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/fess/cs/stopwords.txt

    před
    pta
    jejich
    byl
    ještě
    až
    bez
    také
    pouze
    první
    vaše
    která
    nás
    nový
    tipy
    pokud
    může
    strana
    jeho
    své
    jiné
    zprávy
    nové
    není
    vás
    jen
    podle
    zde
    už
    být
    více
    bude
    již
    než
    který
    by
    které
    co
    nebo
    ten
    tak
    má
    při
    od
    po
    jsou
    jak
    další
    ale
    si
    se
    ve
    to
    jako
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 992 bytes
    - Viewed (0)
Back to top