Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,361 for aloop (0.1 sec)

  1. pkg/windows/service/service.go

    	h.fromsvc <- nil
    
    	s <- svc.Status{State: svc.Running, Accepts: svc.AcceptStop | svc.AcceptShutdown | svc.Accepted(windows.SERVICE_ACCEPT_PARAMCHANGE)}
    	klog.Infof("Service running")
    Loop:
    	for {
    		select {
    		case <-h.tosvc:
    			break Loop
    		case c := <-r:
    			switch c.Cmd {
    			case svc.Cmd(windows.SERVICE_CONTROL_PARAMCHANGE):
    				s <- c.CurrentStatus
    			case svc.Interrogate:
    				s <- c.CurrentStatus
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 11:25:33 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/addons/dns/dns_test.go

            max_concurrent 1000
        }
        cache 30
        loop
        reload
        loadbalance
    }
    `,
    			coreDNSVersion: "1.6.2",
    		},
    		{
    			name: "Default Corefile with rearranged plugins",
    			initialCorefileData: `.:53 {
            errors
            cache 30
            prometheus :9153
            forward . /etc/resolv.conf
            loop
            reload
            loadbalance
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/gradients.cc

      // the while loop.
      // TODO(skyewm): what if not all the exit nodes are reachable?
      if (backprops.size() < while_ctx->exit_nodes().size())
        return absl::OkStatus();
    
      // We've seen all the exit nodes for this loop and have collected all the
      // backprops. Create the gradient graph for the while loop.
      Scope while_scope =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. src/net/interface_linux.go

    	}
    	msgs, err := syscall.ParseNetlinkMessage(tab)
    	if err != nil {
    		return nil, os.NewSyscallError("parsenetlinkmessage", err)
    	}
    	var ift []Interface
    loop:
    	for _, m := range msgs {
    		switch m.Header.Type {
    		case syscall.NLMSG_DONE:
    			break loop
    		case syscall.RTM_NEWLINK:
    			ifim := (*syscall.IfInfomsg)(unsafe.Pointer(&m.Data[0]))
    			if ifindex == 0 || ifindex == int(ifim.Index) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 27 05:42:03 UTC 2022
    - 7K bytes
    - Viewed (0)
  5. src/index/suffixarray/sais2.go

    	bucketMax_8_64(text, freq, bucket)
    
    	numLMS := 0
    	lastB := int64(-1)
    	bucket = bucket[:256] // eliminate bounds check for bucket[c1] below
    
    	// The next stanza of code (until the blank line) loop backward
    	// over text, stopping to execute a code body at each position i
    	// such that text[i] is an L-character and text[i+1] is an S-character.
    	// That is, i+1 is the position of the start of an LMS-substring.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. test/fixedbugs/issue24491a.go

    	func() {
    		for {
    			defer test("defer in for loop", uintptr(setup()), uintptr(setup()), uintptr(setup()), uintptr(setup()))
    			break
    		}
    	}()
    	<-done
    
    	func() {
    		s := &S{}
    		defer s.test("method call", uintptr(setup()), uintptr(setup()), uintptr(setup()), uintptr(setup()))
    	}()
    	<-done
    
    	func() {
    		s := &S{}
    		for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 19:36:58 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/runtime/netpoll_solaris.go

    // file descriptor might have been closed and reopened already. The
    // lock allows runtime·netpollupdate to be called synchronously from
    // the loop thread while preventing other threads operating to the
    // same PollDesc, so once we unblock in the main loop, until we loop
    // again we know for sure we are always talking about the same file
    // descriptor and can safely access the data we want (the event set).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. test/inline.go

    loop: // test that labeled select can be inlined.
    	select {
    	case <-x:
    		break loop
    	case <-y:
    	}
    }
    
    func inlineSelect2(x, y chan bool) { // ERROR "can inline inlineSelect2" ERROR "x does not escape" "y does not escape"
    loop:
    	for i := 0; i < 5; i++ {
    		if i == 3 {
    			break loop
    		}
    		select2(x, y) // ERROR "inlining call to select2"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/quantization/ir/.clang-tidy

            bugprone-unused-return-value,
            misc-redundant-expression,
            misc-static-assert,
            misc-unused-parameters,
            misc-unused-using-decls,
            modernize-use-bool-literals,
            modernize-loop-convert,
            modernize-make-unique,
            modernize-raw-string-literal,
            modernize-use-equals-default,
            modernize-use-default-member-init,
            modernize-use-emplace,
            modernize-use-nullptr,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 29 18:55:28 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/build_shorten_pkg.txt

    # can be trimmed like subdirectory paths are.
    
    env GOEXPERIMENT=loopvar
    go build -gcflags=inlines/a=-d=loopvar=2 .
    stderr ^\.[\\/]b[\\/]b\.go:12:6:.*loop.inlined.into.a[\\/]a\.go
    stderr ^\.[\\/]b[\\/]b\.go:12:9:.*loop.inlined.into.a[\\/]a\.go
    
    -- go.mod --
    module inlines
    
    go 1.21
    -- a/a.go --
    // Copyright 2023 The Go Authors. All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 09:07:58 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top