Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 566 for END (0.01 sec)

  1. guava/src/com/google/common/primitives/Floats.java

        final float[] array;
        final int start;
        final int end;
    
        FloatArrayAsList(float[] array) {
          this(array, 0, array.length);
        }
    
        FloatArrayAsList(float[] array, int start, int end) {
          this.array = array;
          this.start = start;
          this.end = end;
        }
    
        @Override
        public int size() {
          return end - start;
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.7K bytes
    - Viewed (0)
  2. guava/src/com/google/common/primitives/Doubles.java

        final double[] array;
        final int start;
        final int end;
    
        DoubleArrayAsList(double[] array) {
          this(array, 0, array.length);
        }
    
        DoubleArrayAsList(double[] array, int start, int end) {
          this.array = array;
          this.start = start;
          this.end = end;
        }
    
        @Override
        public int size() {
          return end - start;
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27.7K bytes
    - Viewed (0)
  3. docs/es/docs/project-generation.md

        - 馃帹 [Chakra UI](https://chakra-ui.com) para los componentes del frontend.
        - 馃 Un cliente de frontend generado autom谩ticamente.
        - 馃И [Playwright](https://playwright.dev) para pruebas End-to-End.
        - 馃 Soporte para modo oscuro.
    - 馃悑 [Docker Compose](https://www.docker.com) para desarrollo y producci贸n.
    - 馃敀 Hashing seguro de contrase帽as por defecto.
    - 馃攽 Autenticaci贸n con tokens JWT.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 17:46:44 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. docs/en/docs/project-generation.md

        - 馃帹 [Chakra UI](https://chakra-ui.com) for the frontend components.
        - 馃 An automatically generated frontend client.
        - 馃И [Playwright](https://playwright.dev) for End-to-End testing.
        - 馃 Dark mode support.
    - 馃悑 [Docker Compose](https://www.docker.com) for development and production.
    - 馃敀 Secure password hashing by default.
    - 馃攽 JWT token authentication.
    - 馃摣 Email based password recovery.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 2K bytes
    - Viewed (0)
  5. okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt

         * AiAyHHg1N6YDDQiY920+cnI5XSZwEGhAtb9PYWO8bLmkcQIhAI2CfEZf3V/obmdT
         * yyaoEufLKVXhrTQhRfodTeigi4RX
         * -----END CERTIFICATE-----
         * -----BEGIN PRIVATE KEY-----
         * MEECAQAwEwYHKoZIzj0CAQYIKoZIzj0DAQcEJzAlAgEBBCA7ODT0xhGSNn4ESj6J
         * lu/GJQZoU9lDrCPeUcQ28tzOWw==
         * -----END PRIVATE KEY-----
         * ```
         *
         * The string should contain exactly one certificate and one private key in [PKCS #8][rfc_5208]
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  6. docs/de/docs/advanced/settings.md

        end
    
        rect rgba(0, 255, 0, .1)
            code ->> function: say_hi(name="Rick", salutation="Mr.")
            function ->> execute: f眉hre Code der Funktion aus
            execute ->> code: gib das Resultat zur眉ck
        end
    
        rect rgba(0, 255, 255, .1)
            code ->> function: say_hi(name="Rick")
            function ->> code: gib das gespeicherte Resultat zur眉ck
        end
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  7. docs/es/docs/tutorial/dependencies/dependencies-with-yield.md

        end
        dep ->> operation: Ejecutar dependencia, por ejemplo, sesi贸n de BD
        opt raise
            operation -->> dep: Lanzar Exception (por ejemplo, HTTPException)
            opt handle
                dep -->> dep: Puede capturar excepci贸n, lanzar una nueva HTTPException, lanzar otra excepci贸n
            end
            handler -->> client: Response HTTP de error
        end
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Dec 30 18:26:57 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/ioctl/QueryNetworkInterfaceInfoResponse.java

         */
        @Override
        public int decode(byte[] buffer, int bufferIndex, int len) {
            int start = bufferIndex;
            int end = start + len;
            interfaces.clear();
    
            while (bufferIndex < end && (bufferIndex + 152) <= end) {
                // Read Next field to determine if there are more entries
                int next = SMBUtil.readInt4(buffer, bufferIndex);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 21 11:13:46 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  9. api/maven-api-core/src/main/java/org/apache/maven/api/services/MessageBuilder.java

         * @param start the starting index of the subsequence to be appended
         * @param end the end index of the subsequence to be appended
         * @return the current builder
         */
        @Nonnull
        default MessageBuilder a(CharSequence value, int start, int end) {
            return append(value, start, end);
        }
    
        /**
         * Append content to the message buffer.
         *
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Nov 02 09:29:52 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. cmd/copy-part-range.go

    	if err != nil {
    		return nil, err
    	}
    	if hrange.IsSuffixLength || hrange.Start < 0 || hrange.End < 0 {
    		return nil, errInvalidRange
    	}
    	return hrange, nil
    }
    
    // checkCopyPartRangeWithSize adds more check to the range string in case of
    // copy object part. This API requires having specific start and end  range values
    // e.g. 'bytes=3-10'. Other use cases will be rejected.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Jun 18 03:27:04 UTC 2021
    - 2.5K bytes
    - Viewed (0)
Back to top