Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 74 for set_index (0.28 sec)

  1. docs/metrics/v3.md

    | `minio_system_drive_free_bytes`                | Total storage free on a drive in bytes. <br><br>Type: gauge                             | `drive`, `set_index`, `drive_index`, `pool_index`, `server`        |
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 45.2K bytes
    - Viewed (0)
  2. docs/distributed/distributed-from-config-file.sh

    	exit
    fi
    
    # Compare the difference of the list of disks and their location, with the below expected output
    diff <(./mc admin info minio1 --json | jq -r '.info.servers[].drives[] | "\(.pool_index),\(.set_index),\(.disk_index) \(.endpoint)"' | sort) <(
    	cat <<EOF
    0,0,0 http://localhost:9001/tmp/xl/node9001/mnt/disk1
    0,0,1 http://localhost:9002/tmp/xl/node9002/mnt/disk1
    0,0,2 http://localhost:9001/tmp/xl/node9001/mnt/disk2
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Jun 28 09:06:49 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. cmd/metrics-v3-system-drive.go

    const (
    	driveL      = "drive"
    	poolIndexL  = "pool_index"
    	setIndexL   = "set_index"
    	driveIndexL = "drive_index"
    
    	apiL = "api"
    
    	sectorSize = uint64(512)
    	kib        = float64(1 << 10)
    
    	driveHealthOffline = float64(0)
    	driveHealthOnline  = float64(1)
    	driveHealthHealing = float64(2)
    )
    
    var allDriveLabels = []string{driveL, poolIndexL, setIndexL, driveIndexL}
    
    const (
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sun Mar 30 00:56:02 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  4. src/test/java/jcifs/dcerpc/ndr/NdrBufferTest.java

            assertEquals((byte) 0xAB, buffer[1]);
    
            ndrBuffer.setIndex(0);
            int val = ndrBuffer.dec_ndr_short() & 0xFFFF;
            assertEquals(0xABCD, val);
            assertEquals(2, ndrBuffer.getIndex());
    
            // Test with offset and alignment
            ndrBuffer.setIndex(1);
            ndrBuffer.enc_ndr_short(0x1234);
            assertEquals(4, ndrBuffer.getIndex()); // Aligned from 1 to 2, then advanced by 2
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/dcerpc/DcerpcMessage.java

            }
    
            encode_in(buf);
            length = buf.getIndex() - start;
    
            if (ptype == 0) {
                buf.setIndex(alloc_hint_index);
                alloc_hint = length - alloc_hint_index;
                buf.enc_ndr_long(alloc_hint);
            }
    
            buf.setIndex(start);
            encode_header(buf);
            buf.setIndex(start + length);
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/DcerpcMessage.java

            }
    
            encode_in(buf);
            this.length = buf.getIndex() - start;
    
            if (this.ptype == 0) {
                buf.setIndex(alloc_hint_index);
                this.alloc_hint = this.length - alloc_hint_index;
                buf.enc_ndr_long(this.alloc_hint);
            }
    
            buf.setIndex(start);
            encode_header(buf);
            buf.setIndex(start + this.length);
        }
    
        @Override
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/suggest/util/SuggestUtilTest.java

        public void testDeleteByQuery() {
            // Create test data
            client.prepareIndex().setIndex(TEST_INDEX).setId("1").setSource("field", "value1").execute().actionGet();
            client.prepareIndex().setIndex(TEST_INDEX).setId("2").setSource("field", "value2").execute().actionGet();
            client.admin().indices().prepareRefresh(TEST_INDEX).execute().actionGet();
    
            // Delete by query
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Mon Sep 01 13:33:03 UTC 2025
    - 18.2K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/suggest/converter/AnalyzerConverterTest.java

            storeAnalyzerSettings();
        }
    
        private static void storeAnalyzerSettings() throws Exception {
            // Store analyzer mappings
            client.prepareIndex()
                    .setIndex(SUGGEST_INDEX)
                    .setId("analyzer_settings")
                    .setSource(XContentFactory.jsonBuilder()
                            .startObject()
                            .startObject("analyzer")
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Mon Sep 01 13:33:03 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  9. src/test/java/jcifs/dcerpc/DcerpcMessageTest.java

                lenient().doNothing().when(mockBuffer).enc_ndr_small(anyInt());
                lenient().doNothing().when(mockBuffer).setIndex(anyInt());
    
                message.encode(mockBuffer);
    
                // Verify key operations happened
                verify(mockBuffer).enc_ndr_small(5); // RPC version
                verify(mockBuffer).enc_ndr_long(0x00000010); // Little-endian / ASCII / IEEE
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  10. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java

        /**
         * Gets the OpenSearch index name.
         *
         * @return The index name.
         */
        public String getIndex() {
            return index;
        }
    
        /**
         * Sets the OpenSearch index name.
         *
         * @param index The index name.
         */
        public void setIndex(final String index) {
            this.index = index;
        }
    
        /**
         * Gets the scroll timeout in milliseconds.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Aug 07 02:55:08 UTC 2025
    - 34.2K bytes
    - Viewed (0)
Back to top