Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 119 for deltaY (0.1 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/cache/CacheStrategy.kt

          }
    
          val expires = this.expires
          if (expires != null) {
            val servedMillis = servedDate?.time ?: receivedResponseMillis
            val delta = expires.time - servedMillis
            return if (delta > 0L) delta else 0L
          }
    
          if (lastModified != null && cacheResponse.request.url.query == null) {
            // As recommended by the HTTP RFC and implemented in Firefox, the max age of a document
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:24:48 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. cmd/perf-tests.go

    		time.Sleep(time.Second)
    	}
    	rx := float64(globalNetPerfRX.RXSample)
    	delta := globalNetPerfRX.firstToDisconnect.Sub(globalNetPerfRX.lastToConnect)
    	if delta < 0 {
    		rx = 0
    		errStr = "network disconnection issues detected"
    	}
    
    	globalNetPerfRX.Reset()
    	return madmin.NetperfNodeResult{Endpoint: "", TX: r.n / uint64(duration.Seconds()), RX: uint64(rx / delta.Seconds()), Error: errStr}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. pkg/istio-agent/xds_proxy.go

    	p.tapMutex.Lock()
    	defer p.tapMutex.Unlock()
    
    	// Send to Istiod
    	if connection.deltaRequestsChan != nil {
    		// Need to tap into Delta. Our Tap mechanism is not aware of whether we are tapping into SotW or Delta; we always get SotW
    		// Convert SotW to Delta.
    		connection.sendDeltaRequest(&discovery.DeltaDiscoveryRequest{
    			Node:                   req.Node,
    			TypeUrl:                req.TypeUrl,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  4. src/encoding/gob/encode.go

    type encHelper func(state *encoderState, v reflect.Value) bool
    
    // encoderState is the global execution state of an instance of the encoder.
    // Field numbers are delta encoded and always increase. The field
    // number is initialized to -1 so 0 comes out as delta(1). A delta of
    // 0 terminates the structure.
    type encoderState struct {
    	enc      *Encoder
    	b        *encBuffer
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  5. src/go/internal/gcimporter/iimport.go

    }
    
    func (r *importReader) posv0() {
    	delta := r.int64()
    	if delta != deltaNewFile {
    		r.prevLine += delta
    	} else if l := r.int64(); l == -1 {
    		r.prevLine += deltaNewFile
    	} else {
    		r.prevFile = r.string()
    		r.prevLine = l
    	}
    }
    
    func (r *importReader) posv1() {
    	delta := r.int64()
    	r.prevColumn += delta >> 1
    	if delta&1 != 0 {
    		delta = r.int64()
    		r.prevLine += delta >> 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

        }
      }
    
      companion object {
        internal const val EMIT_BUFFER_SIZE = 16384L
      }
    
      /** [delta] will be negative if a settings frame initial window is smaller than the last. */
      fun addBytesToWriteWindow(delta: Long) {
        writeBytesMaximum += delta
        if (delta > 0L) {
          condition.signalAll()
        }
      }
    
      @Throws(IOException::class)
      internal fun checkOutNotClosed() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  7. docs/it/docs/index.md

    * Successivamente, premi sul pulsante "Execute". L'interfaccia utente comunicherà con la tua API, invierà i parametri, riceverà i risultati della richiesta, e li mostrerà sullo schermo:
    
    ![Swagger UI interaction](https://fastapi.tiangolo.com/img/index/index-05-swagger-04.png)
    
    ### Aggiornamento della documentazione alternativa
    
    Ora vai su <a href="http://127.0.0.1:8000/redoc" class="external-link" target="_blank">http://127.0.0.1:8000/redoc</a>.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 23:58:47 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. src/runtime/stack.go

    // Adjust any pointers contained therein.
    func adjustpointers(scanp unsafe.Pointer, bv *bitvector, adjinfo *adjustinfo, f funcInfo) {
    	minp := adjinfo.old.lo
    	maxp := adjinfo.old.hi
    	delta := adjinfo.delta
    	num := uintptr(bv.n)
    	// If this frame might contain channel receive slots, use CAS
    	// to adjust pointers. If the slot hasn't been received into
    	// yet, it may contain stack pointers and a concurrent send
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  9. src/image/jpeg/scan.go

    // section G.1.2.
    func (d *decoder) refine(b *block, h *huffman, zigStart, zigEnd, delta int32) error {
    	// Refining a DC component is trivial.
    	if zigStart == 0 {
    		if zigEnd != 0 {
    			panic("unreachable")
    		}
    		bit, err := d.decodeBit()
    		if err != nil {
    			return err
    		}
    		if bit {
    			b[0] |= delta
    		}
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    			// Put a blank line between the current and new blocks, so that the end
    			// of a file acts as a blank line.
    			lastLine := lastBlock(doc).Pos().EndLine
    			delta := lastLine + 2 - newdoc.Blocks[0].Pos().StartLine
    			for _, b := range newdoc.Blocks {
    				addLines(b, delta)
    			}
    		}
    		// Append non-empty blocks to the result document.
    		for _, b := range newdoc.Blocks {
    			if _, ok := b.(*md.Empty); !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top