Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 143 for nlist (0.08 sec)

  1. src/runtime/netpoll_fake.go

    	return 0
    }
    
    func netpollclose(fd uintptr) int32 {
    	return 0
    }
    
    func netpollarm(pd *pollDesc, mode int) {
    }
    
    func netpollBreak() {
    }
    
    func netpoll(delay int64) (gList, int32) {
    	return gList{}, 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 15:45:57 UTC 2023
    - 664 bytes
    - Viewed (0)
  2. pkg/kube/inject/testdata/inject/list-frontend.yaml

    apiVersion: v1
    kind: List
    items:
      - kind: Service
        apiVersion: v1
        metadata:
          name: frontend
        spec:
          selector:
            app: hello
            tier: frontend
          ports:
            - protocol: "TCP"
              port: 80
              targetPort: 80
          type: LoadBalancer
      - apiVersion: apps/v1
        kind: Deployment
        metadata:
          name: frontend
        spec:
          replicas: 1
          selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 16 01:43:48 UTC 2019
    - 893 bytes
    - Viewed (0)
  3. src/runtime/netpoll_stub.go

    	broken := netpollBroken
    	netpollBroken = true
    	if !broken {
    		notewakeup(&netpollNote)
    	}
    	unlock(&netpollBrokenLock)
    }
    
    // Polls for ready network connections.
    // Returns list of goroutines that become runnable.
    func netpoll(delay int64) (gList, int32) {
    	// Implementation for platforms that do not support
    	// integrated network poller.
    	if delay != 0 {
    		// This lock ensures that only one goroutine tries to use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. platforms/ide/ide-native/build.gradle.kts

            errorprone.enabled = false
        }
    }
    
    dependencies {
        api(libs.groovy)
        api(libs.guava)
        api(libs.inject)
        api(libs.jsr305)
        api(libs.plist)
        api(project(":base-ide-plugins"))
        api(project(":base-services"))
        api(project(":core"))
        api(project(":core-api"))
        api(project(":file-collections"))
        api(project(":ide"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. src/runtime/netpoll_kqueue.go

    	}
    
    	wakeNetpoll(kq)
    }
    
    // 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 kq == -1 {
    		return gList{}, 0
    	}
    	var tp *timespec
    	var ts timespec
    	if delay < 0 {
    		tp = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/convert_attr.cc

          return ConvertTensorProto(value.tensor(), builder);
        case AttrValue::kList: {
          absl::InlinedVector<mlir::Attribute, 8> attrs;
          for (const auto& item : value.list().i())
            attrs.push_back(builder->getI64IntegerAttr(item));
          for (const auto& item : value.list().s())
            attrs.push_back(builder->getStringAttr(item));
          for (const auto& item : value.list().f())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. src/go/doc/example.go

    				Order:       len(flist),
    			})
    		}
    		if !hasTests && numDecl > 1 && len(flist) == 1 {
    			// If this file only has one example function, some
    			// other top-level declarations, and no tests or
    			// benchmarks, use the whole file as the example.
    			flist[0].Code = file
    			flist[0].Play = playExampleFile(file)
    		}
    		list = append(list, flist...)
    	}
    	// sort by name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  8. test/typeparam/listimp.dir/a.go

    	~int | ~int8 | ~int16 | ~int32 | ~int64 |
    		~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr |
    		~float32 | ~float64 |
    		~string
    }
    
    // List is a linked list of ordered values of type T.
    type List[T Ordered] struct {
    	Next *List[T]
    	Val  T
    }
    
    func (l *List[T]) Largest() T {
    	var max T
    	for p := l; p != nil; p = p.Next {
    		if p.Val > max {
    			max = p.Val
    		}
    	}
    	return max
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Dec 03 17:08:51 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  9. cni/pkg/install/testdata/list.conflist.golden

    Ben Leggett <******@****.***> 1716316321 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 867 bytes
    - Viewed (0)
  10. src/runtime/netpoll_wasip1.go

    			throw("poll_oneoff failed")
    		}
    		// If a timed sleep was interrupted, just return to
    		// recalculate how long we should sleep now.
    		if delay > 0 {
    			unlock(&mtx)
    			return gList{}, 0
    		}
    		goto retry
    	}
    
    	var toRun gList
    	delta := int32(0)
    	for i := 0; i < int(nevents); i++ {
    		e := &evts[i]
    		if e.typ == eventtypeClock {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top