Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 99 for 4095 (0.03 sec)

  1. src/main/java/org/codelibs/core/io/ReaderUtil.java

    /**
     * {@link Reader}用のユーティリティクラスです。
     *
     * @author higa
     */
    public abstract class ReaderUtil {
    
        /** デフォルトのバッファサイズ */
        private static final int BUF_SIZE = 4096;
    
        /**
         * 指定のエンコーディングでファイルから入力する{@link Reader}を作成します。
         *
         * @param is
         *            入力ストリーム。{@literal null}であってはいけません
         * @param encoding
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/io/IoTestCase.java

      private static void copy(URL url, File file) throws IOException {
        InputStream in = url.openStream();
        try {
          OutputStream out = new FileOutputStream(file);
          try {
            byte[] buf = new byte[4096];
            for (int read = in.read(buf); read != -1; read = in.read(buf)) {
              out.write(buf, 0, read);
            }
          } finally {
            out.close();
          }
        } finally {
          in.close();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri May 31 12:36:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  3. compat/maven-resolver-provider/src/test/java/org/apache/maven/repository/internal/VersionTest.java

                    "a8119cf1-9694-4b24-923a-3fc729b5f809",
                    "5d29cf45-3b9c-4697-85b8-86c81c6ec0c9",
                    "e3dcb4c2-a867-40f7-a3b1-fb1058a041e5",
                    "ae240754-2ea2-409a-a92c-648fc7a7b70b",
                    "8c187383-d59b-4e49-8dfd-98aa5f01925a",
                    "9b100ee6-71ed-4746-92c2-b5fb02af7ebd",
                    "f95e94f7-2443-4b2f-a10d-059d8d224dd9",
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java

    public final class NGramSynonymTokenizer extends Tokenizer {
    
        public static final int DEFAULT_N_SIZE = 2;
    
        public static final String DEFAULT_DELIMITERS = "  \t\n\r";
    
        static final int BUFFER_SIZE = 4096;
    
        private final int n;
    
        private final String delimiters;
    
        private final boolean expand;
    
        private final boolean ignoreCase;
    
        private final SynonymLoader synonymLoader;
    
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/loong64enc1.s

    	// relocation in play so the assembled offset should be 0
    	JMP	foo(SB)			// 00000050
    
    	JMP	(R4)			// 8000004c
    	JMP	1(PC)			// 00040050
    	MOVW	$65536, R4		// 04020014
    	MOVW	$4096, R4		// 24000014
    	MOVV	$65536, R4		// 04020014
    	MOVV	$4096, R4		// 24000014
    	MOVW	R4, R5			// 85001700
    	MOVV	R4, R5			// 85001500
    	MOVBU	R4, R5			// 85fc4303
    	SUB	R4, R5, R6		// a6101100
    	SUBV	R4, R5, R6		// a6901100
    	ADD	R4, R5, R6		// a6101000
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Sat Nov 02 01:36:19 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/lib/panels.libsonnet

            + override.byName.withProperty('thresholds', { mode: 'absolute', steps: [
              {color: "red", value: null},
              {color: "yellow", value: "0.95"},
              {color: "green", value: 1},
            ] }),
    
            // Key
            override.byName.new('destination_workload_var')
            + override.byName.withProperty('displayName', 'Workload'),
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Fri Jul 26 23:54:32 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/io/FileUtil.java

     * @author higa
     */
    public abstract class FileUtil {
    
        /** UTF-8のエンコーディング名 */
        private static final String UTF8 = "UTF-8";
    
        /** Default Buffer Size */
        protected static final int DEFAULT_BUF_SIZE = 4096; // 4k
    
        /** Max Buffer Size */
        protected static final int MAX_BUF_SIZE = 10 * 1024 * 1024; // 10m
    
        /**
         * この抽象パス名の正規の形式を返します。
         *
         * @param file
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 9K bytes
    - Viewed (0)
  8. docs/bucket/replication/README.md

    ![delete](https://raw.githubusercontent.com/minio/minio/master/docs/bucket/replication/DELETE_bucket_replication.png)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Jan 24 23:46:33 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/sql-databases.md

    The same way, you can declare it as the function's **return type**, and then the shape of the data will show up in the automatic API docs UI.
    
    {* ../../docs_src/sql_databases/tutorial001_an_py310.py ln[40:45] hl[40:45] *}
    
    </details>
    
    Here we use the `SessionDep` dependency (a `Session`) to add the new `Hero` to the `Session` instance, commit the changes to the database, refresh the data in the `hero`, and then return it.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Oct 09 19:44:42 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. src/cmd/asm/internal/asm/testdata/amd64enc_extra.s

    	VADDPD 2048(DX)(AX*2), X29, X28 // 6261950058a44200080000
    	VADDPD 4096(DX), Y0, Y29        // 6261fd2858aa00100000
    	VADDPD 4096(DX), Y29, Y1        // 62f19520588a00100000
    	VADDPD 4096(DX), Y28, Y29       // 62619d2058aa00100000
    	VADDPD 4096(DX)(AX*2), Y0, Y29  // 6261fd2858ac4200100000
    	VADDPD 4096(DX)(AX*2), Y29, Y1  // 62f19520588c4200100000
    	VADDPD 8192(DX), Z0, Z29        // 6261fd4858aa00200000
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Apr 11 18:32:50 UTC 2023
    - 57.6K bytes
    - Viewed (0)
Back to top