Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 676 for aloop (0.06 sec)

  1. src/html/template/escape.go

    	textNodeEdits     map[*parse.TextNode][]byte
    	// rangeContext holds context about the current range loop.
    	rangeContext *rangeContext
    }
    
    // rangeContext holds information about the current range loop.
    type rangeContext struct {
    	outer     *rangeContext // outer loop
    	breaks    []context     // context at each break action
    	continues []context     // context at each continue action
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  2. src/syscall/zerrors_windows.go

    	EINVAL
    	EIO
    	EISCONN
    	EISDIR
    	EISNAM
    	EKEYEXPIRED
    	EKEYREJECTED
    	EKEYREVOKED
    	EL2HLT
    	EL2NSYNC
    	EL3HLT
    	EL3RST
    	ELIBACC
    	ELIBBAD
    	ELIBEXEC
    	ELIBMAX
    	ELIBSCN
    	ELNRNG
    	ELOOP
    	EMEDIUMTYPE
    	EMFILE
    	EMLINK
    	EMSGSIZE
    	EMULTIHOP
    	ENAMETOOLONG
    	ENAVAIL
    	ENETDOWN
    	ENETRESET
    	ENETUNREACH
    	ENFILE
    	ENOANO
    	ENOBUFS
    	ENOCSI
    	ENODATA
    	ENODEV
    	ENOEXEC
    	ENOKEY
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 10K bytes
    - Viewed (0)
  3. pkg/probe/http/http_test.go

    		switch r.URL.Path {
    		case "/redirect":
    			loc, _ := url.QueryUnescape(r.URL.Query().Get("loc"))
    			http.Redirect(w, r, loc, http.StatusFound)
    		case "/loop":
    			http.Redirect(w, r, "/loop", http.StatusFound)
    		case "/success":
    			w.WriteHeader(http.StatusOK)
    		default:
    			http.Error(w, "", http.StatusInternalServerError)
    		}
    	})
    	server := httptest.NewServer(handler)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 18 01:40:08 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  4. src/image/gif/reader_test.go

    			}
    			img1, err := DecodeAll(w)
    			if err != nil {
    				t.Fatal("DecodeAll:", err)
    			}
    			if img.LoopCount != tc.loopCount {
    				t.Errorf("loop count mismatch: %d vs %d", img.LoopCount, tc.loopCount)
    			}
    			if img.LoopCount != img1.LoopCount {
    				t.Errorf("loop count failed round-trip: %d vs %d", img.LoopCount, img1.LoopCount)
    			}
    		})
    	}
    }
    
    func TestUnexpectedEOF(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/base/Utf8Test.java

      private static void testBytes(int numBytes, long expectedCount) {
        testBytes(numBytes, expectedCount, 0, -1);
      }
    
      /**
       * Helper to run the loop to test all the permutations for the number of bytes specified. This
       * overload is useful for debugging to get the loop to start at a certain character.
       *
       * @param numBytes the number of bytes in the byte array
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/check.go

    						f.Fatalf("block %s not in loop branches to non-header block %s in loop", b.String(), bb.String())
    					}
    					if ln.b2l[b.ID] != nil && ln.b2l[bb.ID] != nil && bb != ln.b2l[bb.ID].header && !ln.b2l[b.ID].isWithinOrEq(ln.b2l[bb.ID]) {
    						f.Fatalf("block %s in loop branches to non-header block %s in non-containing loop", b.String(), bb.String())
    					}
    				}
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. src/net/dnsclient_unix.go

    							Server: result.server,
    						}
    						break loop
    					}
    					if cname.Length == 0 && c.CNAME.Length > 0 {
    						cname = c.CNAME
    					}
    
    				default:
    					if err := result.p.SkipAnswer(); err != nil {
    						lastErr = &DNSError{
    							Err:    errCannotUnmarshalDNSMessage.Error(),
    							Name:   name,
    							Server: result.server,
    						}
    						break loop
    					}
    					continue
    				}
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/reconciler/reconciler_common.go

    	"k8s.io/kubernetes/pkg/volume/util/hostutil"
    	"k8s.io/kubernetes/pkg/volume/util/nestedpendingoperations"
    	"k8s.io/kubernetes/pkg/volume/util/operationexecutor"
    	"k8s.io/mount-utils"
    )
    
    // Reconciler runs a periodic loop to reconcile the desired state of the world
    // with the actual state of the world by triggering attach, detach, mount, and
    // unmount operations.
    // Note: This is distinct from the Reconciler implemented by the attach/detach
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:23:12 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/functional_control_flow_to_cfg.cc

      op_inst->erase();
      return success();
    }
    
    // Given a functional WhileOp, transforms the enclosing code to eliminate it
    // completely from the IR, breaking it into operations to execute the loop body
    // repeatedly while the loop condition is true.
    static LogicalResult LowerWhileOp(WhileOp op) {
      Operation* op_inst = op.getOperation();
      Location loc = op_inst->getLoc();
    
      OpBuilder builder(op_inst);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 13 11:42:59 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  10. src/runtime/preempt.go

    				// where preemptM is actually
    				// synchronous and the spin loop here
    				// can lead to live-lock.
    				now := nanotime()
    				if now >= nextPreemptM {
    					nextPreemptM = now + yieldDelay/2
    					preemptM(asyncM)
    				}
    			}
    		}
    
    		// TODO: Don't busy wait. This loop should really only
    		// be a simple read/decide/CAS loop that only fails if
    		// there's an active race. Once the CAS succeeds, we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top