Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 283 for progression (0.18 sec)

  1. okhttp/src/main/kotlin/okhttp3/WebSocket.kt

     *
     *  * **Canceled:** the web socket connection failed. Messages that were successfully enqueued by
     *    either peer may not have been transmitted to the other.
     *
     * Note that the state progression is independent for each peer. Arriving at a gracefully-closed
     * state indicates that a peer has sent all of its outgoing messages and received all of its
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. src/image/jpeg/scan.go

    	// ah and al are the successive approximation high and low values.
    	// The spec calls these values Ss, Se, Ah and Al.
    	//
    	// For progressive JPEGs, these are the two more-or-less independent
    	// aspects of progression. Spectral selection progression is when not
    	// all of a block's 64 DCT coefficients are transmitted in one pass.
    	// For example, three passes could transmit coefficient 0 (the DC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. src/image/jpeg/reader_test.go

    		"../testdata/video-005.gray.q50.2x2",
    		"../testdata/video-001.separate.dc.progression",
    	}
    	for _, tc := range testCases {
    		m0, err := decodeFile(tc + ".jpeg")
    		if err != nil {
    			t.Errorf("%s: %v", tc+".jpeg", err)
    			continue
    		}
    		m1, err := decodeFile(tc + ".progressive.jpeg")
    		if err != nil {
    			t.Errorf("%s: %v", tc+".progressive.jpeg", err)
    			continue
    		}
    		if m0.Bounds() != m1.Bounds() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 24.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/io/ByteStreams.java

        }
        return total;
      }
    
      /** Max array length on JVM. */
      private static final int MAX_ARRAY_LEN = Integer.MAX_VALUE - 8;
    
      /** Large enough to never need to expand, given the geometric progression of buffer sizes. */
      private static final int TO_BYTE_ARRAY_DEQUE_SIZE = 20;
    
      /**
       * Returns a byte array containing the bytes from the buffers already in {@code bufs} (which have
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. src/internal/trace/gc.go

    // utilization function by resetting the current time.
    func (acc *accumulator) resetTime() {
    	// This only matters for distribution collection, since that's
    	// the only thing that depends on the progression of the
    	// windowed mutator utilization function.
    	acc.lastTime = math.MaxInt64
    }
    
    // addMU adds a point to the windowed mutator utilization function at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  6. guava/src/com/google/common/io/ByteStreams.java

        }
        return total;
      }
    
      /** Max array length on JVM. */
      private static final int MAX_ARRAY_LEN = Integer.MAX_VALUE - 8;
    
      /** Large enough to never need to expand, given the geometric progression of buffer sizes. */
      private static final int TO_BYTE_ARRAY_DEQUE_SIZE = 20;
    
      /**
       * Returns a byte array containing the bytes from the buffers already in {@code bufs} (which have
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Jan 17 18:59:58 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/jvm/building_java_projects.adoc

    Configuring the toolchain protects against problems with the project being built with different Java versions.
    The version string is important for tracking the progression of the project.
    The project version is also used in archive names by default.
    ====
    
    The Java Library Plugin also integrates the above tasks into the standard <<base_plugin.adoc#sec:base_tasks,Base Plugin lifecycle tasks>>:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.1K bytes
    - Viewed (0)
  8. src/crypto/tls/conn.go

    			payloadBytes -= c.out.mac.Size()
    		default:
    			panic("unknown cipher type")
    		}
    	}
    	if c.vers == VersionTLS13 {
    		payloadBytes-- // encrypted ContentType
    	}
    
    	// Allow packet growth in arithmetic progression up to max.
    	pkt := c.packetsSent
    	c.packetsSent++
    	if pkt > 1000 {
    		return maxPlaintext // avoid overflow in multiply below
    	}
    
    	n := payloadBytes * int(pkt+1)
    	if n > maxPlaintext {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        // the same cluster with nodes from the loop body, extra dependency is
        // created between the loop cond and body computations and it hinders the
        // progression of the loop cond computation at runtime with significant
        // overhead.  Specifically, we look for the below pattern and do not cluster
        // in this Identity to avoid the described issue.  Since Identity has low
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  10. releasenotes/notes/auto-passthrough-regression.yaml

    dwq <******@****.***> 1673281550 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 09 16:25:50 UTC 2023
    - 228 bytes
    - Viewed (0)
Back to top