Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 402 for thelong (0.58 sec)

  1. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

          .isEqualTo(Settings.DEFAULT_INITIAL_WINDOW_SIZE.toLong())
        assertThat(connection.writeBytesMaximum)
          .isEqualTo(Settings.DEFAULT_INITIAL_WINDOW_SIZE.toLong())
        assertThat(stream1.writeBytesTotal)
          .isEqualTo(Settings.DEFAULT_INITIAL_WINDOW_SIZE.toLong())
        assertThat(stream1.writeBytesMaximum)
          .isEqualTo(Settings.DEFAULT_INITIAL_WINDOW_SIZE.toLong())
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/convert/NumberConversionUtil.java

            } else if (type == Double.class) {
                return DoubleConversionUtil.toDouble(o);
            } else if (type == Long.class) {
                return LongConversionUtil.toLong(o);
            } else if (type == Float.class) {
                return FloatConversionUtil.toFloat(o);
            } else if (type == Short.class) {
                return ShortConversionUtil.toShort(o);
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsbhv/BsWebConfigBhv.java

                result.setConfigParameter(DfTypeUtil.toString(source.get("configParameter")));
                result.setCreatedBy(DfTypeUtil.toString(source.get("createdBy")));
                result.setCreatedTime(DfTypeUtil.toLong(source.get("createdTime")));
                result.setDepth(DfTypeUtil.toInteger(source.get("depth")));
                result.setDescription(DfTypeUtil.toString(source.get("description")));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java-library/quickstart/groovy/src/main/java/org/gradle/HttpClientWrapper.java

            } finally {
                request.releaseConnection();
            }
            return null;
        }
    
        // HttpGet and HttpEntity are used in a private method, so they don't belong to the API
        private HttpEntity doGet(HttpGet get) throws Exception {
            HttpResponse response = client.execute(get);
            if (response.getStatusLine().getStatusCode() != HttpStatus.SC_OK) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/MutableVariantFilesMetadata.java

     * limitations under the License.
     */
    
    package org.gradle.api.artifacts;
    
    import org.gradle.api.Action;
    
    /**
     * Mutable information about the files that belong to a variant.
     *
     * @since 6.0
     */
    public interface MutableVariantFilesMetadata {
    
        /**
         * Remove all files already defined for the variant.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 26 14:03:13 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  6. cluster/addons/calico-policy-controller/globalnetworksets-crd.yaml

                description: GlobalNetworkSetSpec contains the specification for a NetworkSet
                  resource.
                properties:
                  nets:
                    description: The list of IP networks that belong to this set.
                    items:
                      type: string
                    type: array
                type: object
            type: object
        served: true
        storage: true
    status:
      acceptedNames:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/IvyArtifactName.java

     */
    
    package org.gradle.internal.component.model;
    
    import javax.annotation.Nullable;
    
    /**
     * Represents the 'name' part of an Ivy artifact, independent of which module version the artifact might belong to.
     */
    public interface IvyArtifactName {
        String getName();
    
        String getType();
    
        @Nullable
        String getExtension();
    
        @Nullable
        String getClassifier();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 1019 bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/primitives/UnsignedIntsTest.java

      };
    
      private static final int LEAST = (int) 0L;
      private static final int GREATEST = (int) 0xffffffffL;
    
      public void testCheckedCast() {
        for (long value : UNSIGNED_INTS) {
          assertThat(UnsignedInts.toLong(UnsignedInts.checkedCast(value))).isEqualTo(value);
        }
        assertCastFails(1L << 32);
        assertCastFails(-1L);
        assertCastFails(Long.MAX_VALUE);
        assertCastFails(Long.MIN_VALUE);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 06 16:10:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ComponentArtifactsResult.java

     *
     * @since 2.0
     */
    public interface ComponentArtifactsResult extends ComponentResult {
        /**
         * <p>Returns the artifacts of the specified type that belong to this component. Includes resolved and unresolved artifacts (if any).
         *
         * <p>The elements of the returned collection are declared as {@link ArtifactResult}, however the artifact instances will also implement one of the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 10 09:42:35 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/http2/HuffmanTest.kt

        random.nextBytes(buf)
        assertRoundTrip(buf.toByteString())
      }
    
      private fun assertRoundTrip(data: ByteString) {
        val encodeBuffer = Buffer()
        encode(data, encodeBuffer)
        assertThat(encodedLength(data).toLong()).isEqualTo(encodeBuffer.size)
        val decodeBuffer = Buffer()
        decode(encodeBuffer, encodeBuffer.size, decodeBuffer)
        assertEquals(data, decodeBuffer.readByteString())
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Jan 04 05:32:07 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top