Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 143 for nlist (0.18 sec)

  1. platforms/ide/ide-native/src/testFixtures/groovy/org/gradle/ide/xcode/fixtures/WorkspaceSettingsFile.groovy

    import com.dd.plist.NSDictionary
    import com.dd.plist.NSNumber
    import com.dd.plist.PropertyListParser
    import org.gradle.test.fixtures.file.TestFile
    
    class WorkspaceSettingsFile {
        private static final String AUTO_CREATE_CONTEXTS_IF_NEEDED_KEY = "IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded"
        final String name
        final File file
        final NSDictionary plist
    
        WorkspaceSettingsFile(TestFile file) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/runtime/netpoll_epoll.go

    	}
    }
    
    // netpoll checks for ready network connections.
    // Returns list of goroutines that become runnable.
    // delay < 0: blocks indefinitely
    // delay == 0: does not block, just polls
    // delay > 0: block for up to that many nanoseconds
    func netpoll(delay int64) (gList, int32) {
    	if epfd == -1 {
    		return gList{}, 0
    	}
    	var waitms int32
    	if delay < 0 {
    		waitms = -1
    	} else if delay == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/audit/format.go

    }
    
    func auditStringSlice(inList []string) string {
    	quotedElements := make([]string, len(inList))
    	for i, in := range inList {
    		quotedElements[i] = fmt.Sprintf("%q", in)
    	}
    	return strings.Join(quotedElements, ",")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 25 12:23:51 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  4. android/guava/javadoc-link/jsr305/package-list

    cpovirk <******@****.***> 1510351134 -0800
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 10 22:31:30 UTC 2017
    - 67 bytes
    - Viewed (0)
  5. src/cmd/internal/obj/loong64/list.go

    Xiaodong Liu <******@****.***> 1629014491 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 11 20:11:34 UTC 2022
    - 931 bytes
    - Viewed (0)
  6. src/container/list/list.go

    }
    
    // Prev returns the previous list element or nil.
    func (e *Element) Prev() *Element {
    	if p := e.prev; e.list != nil && p != &e.list.root {
    		return p
    	}
    	return nil
    }
    
    // List represents a doubly linked list.
    // The zero value for List is an empty list ready to use.
    type List struct {
    	root Element // sentinel list element, only &root, root.prev, and root.next are used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  7. src/crypto/ecdh/nist.go

    	// invalid points and the point at infinity, and NewPrivateKey rejects
    	// invalid scalars and the zero value. BytesX returns an error for the point
    	// at infinity, but in a prime order group such as the NIST curves that can
    	// only be the result of a scalar multiplication if one of the inputs is the
    	// zero scalar or the point at infinity.
    
    	if boring.Enabled {
    		return boring.ECDH(local.boring, remote.boring)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. cni/pkg/install/testdata/list.conflist

    Pengyuan Bian <******@****.***> 1625172474 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 01 20:47:54 UTC 2021
    - 494 bytes
    - Viewed (0)
  9. android/guava/javadoc-link/j2objc-annotations/package-list

    cpovirk <******@****.***> 1510351134 -0800
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 10 22:31:30 UTC 2017
    - 30 bytes
    - Viewed (0)
  10. guava/javadoc-link/checker-framework/package-list

    cpovirk <******@****.***> 1512668275 -0800
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Dec 07 19:00:31 UTC 2017
    - 3.8K bytes
    - Viewed (0)
Back to top