Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 336 for aloop (0.05 sec)

  1. cmd/object-lambda-handlers.go

    	"HTTP Version Not Supported":      http.StatusHTTPVersionNotSupported,
    	"Variant Also Negotiates":         http.StatusVariantAlsoNegotiates,
    	"Insufficient Storage":            http.StatusInsufficientStorage,
    	"Loop Detected":                   http.StatusLoopDetected,
    	"Not Extended":                    http.StatusNotExtended,
    	"Network Authentication Required": http.StatusNetworkAuthenticationRequired,
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. src/crypto/sha512/sha512block_ppc64x.s

    	// unpack the input values into vector registers
    	VSLDOI	$8, V0, V0, V1
    	LXVD2X	(CTX)(R_x030), VS38	// v6 = vs38
    	VSLDOI	$8, V2, V2, V3
    	VSLDOI	$8, V4, V4, V5
    	VSLDOI	$8, V6, V6, V7
    
    loop:
    	MOVD	TBL_STRT, TBL
    	LVX	(TBL)(R_x000), KI
    
    	LXVD2X	(INP)(R0), VS40	// load v8 (=vs40) in advance
    	ADD	$16, INP
    
    	// Copy V0-V7 to VS24-VS31
    
    	XXLOR	V0, V0, VS24
    	XXLOR	V1, V1, VS25
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/concurrent/TaskRunner.kt

              readyTask != null -> {
                multipleReadyTasks = true
                break@eachQueue
              }
    
              // We have a task to execute when we complete the loop.
              else -> {
                readyTask = candidate
              }
            }
          }
    
          // Implement the decision.
          when {
            // We have a task ready to go. Get ready.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  4. src/go/types/named.go

    loop:
    	for {
    		seen[n] = len(seen)
    		path = append(path, n.obj)
    		n = n1
    		if i, ok := seen[n]; ok {
    			// cycle
    			check.cycleError(path[i:], firstInSrc(path[i:]))
    			u = Typ[Invalid]
    			break
    		}
    		u = n.Underlying()
    		switch u1 := u.(type) {
    		case nil:
    			u = Typ[Invalid]
    			break loop
    		default:
    			break loop
    		case *Named:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. src/runtime/crash_test.go

    	}
    	var seen, seenSync bool
    	i := 1
    loop:
    	for ; ; i++ {
    		ev, err := r.ReadEvent()
    		if err != nil {
    			// We may have a broken tail to the trace -- that's OK.
    			// We'll make sure we saw at least one complete generation.
    			if err != io.EOF {
    				t.Logf("error at event %d: %v", i, err)
    			}
    			break loop
    		}
    		switch ev.Kind() {
    		case traceparse.EventSync:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  6. src/database/sql/convert.go

    	if c.cci == nil {
    		return driver.ErrSkip
    	}
    	// The column converter shouldn't be called on any index
    	// it isn't expecting. The final error will be thrown
    	// in the argument converter loop.
    	index := nv.Ordinal - 1
    	if c.want <= index {
    		return nil
    	}
    
    	// First, see if the value itself knows how to convert
    	// itself to a driver type. For example, a NullString
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. src/runtime/trace.go

    				*prev = mp.trace.link
    				mp.trace.link = nil
    				mp = *prev
    			}
    			// Yield only if we're going to be going around the loop again.
    			if mToFlush != nil {
    				osyield()
    			}
    
    			if debugDeadlock {
    				// Try to detect a deadlock. We probably shouldn't loop here
    				// this many times.
    				if i > 100000 && !detectedDeadlock {
    					detectedDeadlock = true
    					println("runtime: failing to flush")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/test.go

    		// Do initial scan for metadata needed for writing _testmain.go
    		// Use that metadata to update the list of imports for package main.
    		// The list of imports is used by recompileForTest and by the loop
    		// afterward that gathers t.Cover information.
    		t, err := loadTestFuncs(p)
    		if err != nil && pmain.Error == nil {
    			pmain.setLoadPackageDataError(err, p.ImportPath, &stk, nil)
    		}
    		t.Cover = cover
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/httproute.go

    	out := make([]config.Config, 0)
    	// As a performance optimization, find out wildcard service hosts first, so that
    	// if non wildcard vs hosts can't be looked up directly in the service map, only need to
    	// loop through wildcard service hosts instead of all.
    	wcSvcHosts := []host.Name{}
    	for svcHost := range servicesByName {
    		if svcHost.IsWildCarded() {
    			wcSvcHosts = append(wcSvcHosts, svcHost)
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  10. src/image/gif/reader.go

    			return fmt.Errorf("gif: reading extension: %v", err)
    		}
    	}
    
    	// Application Extension with "NETSCAPE2.0" as string and 1 in data means
    	// this extension defines a loop count.
    	if extension == eApplication && string(d.tmp[:size]) == "NETSCAPE2.0" {
    		n, err := d.readBlock()
    		if err != nil {
    			return fmt.Errorf("gif: reading extension: %v", err)
    		}
    		if n == 0 {
    			return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top