Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,363 for aloop (0.11 sec)

  1. 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)
  2. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // Fourth, add all the inputs to sc_forward(). These all come from the
      // while loop operands or the non_tpu() call that's in the loop body. The
      // loop operands need to be pulled from the "i" (or "2") version of the
      // inputs. The inputs coming from non_tpu() are from the same loop iteration
      // (non_tpu_res_i).
      std::vector<Value> f_operands;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  3. 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)
  4. src/math/big/arith_amd64.s

    	MOVQ x+24(FP), R8
    	MOVQ y+48(FP), R9
    	MOVQ z+0(FP), R10
    
    	MOVQ $0, CX		// c = 0
    	MOVQ $0, SI		// i = 0
    
    	// s/JL/JMP/ below to disable the unrolled loop
    	SUBQ $4, DI		// n -= 4
    	JL V1			// if n < 0 goto V1
    
    U1:	// n >= 0
    	// regular loop body unrolled 4x
    	ADDQ CX, CX		// restore CF
    	MOVQ 0(R8)(SI*8), R11
    	MOVQ 8(R8)(SI*8), R12
    	MOVQ 16(R8)(SI*8), R13
    	MOVQ 24(R8)(SI*8), R14
    	ADCQ 0(R9)(SI*8), R11
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 9.1K 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. 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)
  7. 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)
  8. 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)
  9. 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)
  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