Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 169 for 42 (0.25 sec)

  1. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

                    }
                  }
                ]
              }
            ]
          },
          "gridPos": {
            "h": 6,
            "w": 6,
            "x": 0,
            "y": 42
          },
          "id": 76,
          "options": {
            "legend": {
              "calcs": [],
              "displayMode": "list",
              "placement": "bottom",
              "showLegend": true
            },
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon Aug 04 01:46:49 UTC 2025
    - 101.9K bytes
    - Viewed (0)
  2. docs/en/data/translation_reviewers.yml

      url: https://github.com/komtaki
    rostik1410:
      login: rostik1410
      count: 42
      avatarUrl: https://avatars.githubusercontent.com/u/11443899?u=e26a635c2ba220467b308a326a579b8ccf4a8701&v=4
      url: https://github.com/rostik1410
    svlandeg:
      login: svlandeg
      count: 42
      avatarUrl: https://avatars.githubusercontent.com/u/8796347?u=556c97650c27021911b0b9447ec55e75987b0e8a&v=4
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 08:58:29 UTC 2025
    - 65.1K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/dfs/DfsReferralResponseBufferTest.java

                bb.position(28);
                bb.put("\\test\0".getBytes(StandardCharsets.UTF_16LE));
    
                int bytesDecoded = buffer.decode(testBuffer, 0, testBuffer.length);
    
                assertEquals(42, bytesDecoded); // 8 header + 34 referral
                assertEquals(8, buffer.getPathConsumed());
                assertEquals(1, buffer.getNumReferrals());
                assertEquals(5, buffer.getTflags());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.4K bytes
    - Viewed (0)
  4. cmd/apierrorcode_string.go

    	_ = x[ErrInvalidLifecycleWithObjectLock-38]
    	_ = x[ErrNoSuchBucketSSEConfig-39]
    	_ = x[ErrNoSuchCORSConfiguration-40]
    	_ = x[ErrNoSuchWebsiteConfiguration-41]
    	_ = x[ErrReplicationConfigurationNotFoundError-42]
    	_ = x[ErrRemoteDestinationNotFoundError-43]
    	_ = x[ErrReplicationDestinationMissingLock-44]
    	_ = x[ErrRemoteTargetNotFoundError-45]
    	_ = x[ErrReplicationRemoteConnectionError-46]
    	_ = x[ErrReplicationBandwidthLimitError-47]
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

        thread.start();
        thread.join();
        assertFalse(thread.isAlive());
    
        joinUninterruptibly(thread);
        joinUninterruptibly(thread, 0, MILLISECONDS);
        joinUninterruptibly(thread, -42, MILLISECONDS);
        joinUninterruptibly(thread, LONG_DELAY_MS, MILLISECONDS);
        assertTimeNotPassed(stopwatch, LONG_DELAY_MS);
      }
    
      public void testJoinNoInterrupt() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 31.7K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java

            request.writeBytesWireFormat(buffer, 0);
    
            // Read create options from buffer (offset 40-43)
            int readOptions = (buffer[40] & 0xFF) | ((buffer[41] & 0xFF) << 8) | ((buffer[42] & 0xFF) << 16) | ((buffer[43] & 0xFF) << 24);
            assertEquals(options, readOptions);
        }
    
        @Test
        @DisplayName("Test size calculation without create contexts")
        void testSizeWithoutCreateContexts() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  7. src/test/java/jcifs/smb/SIDTest.java

            void testGetTypeAndText(int type, String text) {
                byte[] ident = new byte[] { 0, 0, 0, 0, 0, 5 };
                SID sid = new SID(buildSidT((byte) 1, ident, 42), type, "DOM", "acct", false);
                assertEquals(type, sid.getType());
                assertEquals(text, sid.getTypeText());
            }
    
            @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  8. docs/SMB3_IMPLEMENTATION_PLAN.md

    ├── DirectoryLeaseContext.java    - Directory-specific lease context
    ├── DirectoryLeaseCache.java      - Directory metadata cache
    └── DirectoryChangeNotifier.java  - Directory change tracking
    ```
    
    #### 4.2 Implementation Tasks
    - [ ] Extend lease implementation for directories
    - [ ] Implement directory metadata caching
    - [ ] Add directory change notification integration
    - [ ] Create parent-child lease relationships
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 02:53:50 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/primitives/ImmutableLongArrayTest.java

          return values[random.nextInt(values.length)];
        }
    
        abstract void doIt(ImmutableLongArray.Builder builder, AtomicLong counter);
      }
    
      private static final Random random = new Random(42);
    
      public void testLength() {
        assertThat(ImmutableLongArray.of().length()).isEqualTo(0);
        assertThat(ImmutableLongArray.of(0).length()).isEqualTo(1);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/MultimapsCollectionTest.java

        @Override
        public SampleElements<Entry<String, Integer>> samples() {
          return new SampleElements<>(
              mapEntry("one", 114),
              mapEntry("two", 37),
              mapEntry("three", 42),
              mapEntry("four", 19),
              mapEntry("five", 82));
        }
    
        @SuppressWarnings("unchecked")
        @Override
        public Entry<String, Integer>[] createArray(int length) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 28.7K bytes
    - Viewed (0)
Back to top