Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 48 for 46 (0.19 sec)

  1. src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationTest.java

            // Should write FileInformation data + 6 bytes padding
            assertEquals(46, written); // 40 + 6
    
            // Verify encode was called
            verify(mockFileInfo).encode(buffer, 0);
    
            // Check that 6 bytes of padding are zeros
            for (int i = 40; i < 46; i++) {
                assertEquals(0, buffer[i]);
            }
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  2. src/test/java/jcifs/dcerpc/msrpc/samrTest.java

                samr.SamrSamEntry entry = new samr.SamrSamEntry();
                when(mockNdrBuffer.dec_ndr_long()).thenReturn(1, 100); // idx, _name_bufferp
                when(mockNdrBuffer.dec_ndr_short()).thenReturn(4, 6); // length, maximum_length
                when(mockDeferredBuffer.dec_ndr_long()).thenReturn(3, 0, 2); // _name_buffers, 0, _name_bufferl
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 33.7K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/ContiguousSetTest.java

        assertThrows(IllegalArgumentException.class, () -> set.subSet(3, 2));
      }
    
      public void testSubSet_tooLarge() {
        assertThat(ContiguousSet.create(Range.closed(1, 3), integers()).subSet(4, 6)).isEmpty();
      }
    
      public void testSubSet_tooSmall() {
        assertThat(ContiguousSet.create(Range.closed(1, 3), integers()).subSet(-1, 0)).isEmpty();
      }
    
      public void testFirst() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  4. helm-releases/minio-3.0.0.tgz

    imageTag, and imagePullPolicy. mode is used to indicate the ## image: repository: minio/minio tag: RELEASE.2021-08-31T05-46-54Z pullPolicy: IfNotPresent imagePullSecrets: [] # - name: "image-pull-secret" ## Set default image, imageTag, and imagePullPolicy for the `mc` (the minio ## client used to create a default bucket). ## mcImage: repository: minio/mc tag: RELEASE.2021-07-27T06-46-19Z pullPolicy: IfNotPresent ## minio mode, i.e. standalone or distributed or gateway (nas) ## Distributed MinIO ref:...
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Sep 02 01:47:43 UTC 2021
    - 13.8K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/FormBodyTest.kt

        assertThat(formEncode(42)).isEqualTo("*")
        assertThat(formEncode(43)).isEqualTo("%2B")
        assertThat(formEncode(44)).isEqualTo("%2C")
        assertThat(formEncode(45)).isEqualTo("-")
        assertThat(formEncode(46)).isEqualTo(".")
        assertThat(formEncode(47)).isEqualTo("%2F")
        assertThat(formEncode(48)).isEqualTo("0")
        assertThat(formEncode(57)).isEqualTo("9")
        assertThat(formEncode(58)).isEqualTo("%3A")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  6. docs/en/data/translators.yml

    nilslindemann:
      login: nilslindemann
      count: 120
      avatarUrl: https://avatars.githubusercontent.com/u/6892179?u=1dca6a22195d6cd1ab20737c0e19a4c55d639472&v=4
      url: https://github.com/nilslindemann
    jaystone776:
      login: jaystone776
      count: 46
      avatarUrl: https://avatars.githubusercontent.com/u/11191137?u=299205a95e9b6817a43144a48b643346a5aac5cc&v=4
      url: https://github.com/jaystone776
    valentinDruzhinin:
      login: valentinDruzhinin
      count: 29
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 08:58:29 UTC 2025
    - 19.2K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb2/nego/NegotiateContextRequestTest.java

                // This appears to be an implementation inconsistency.
                context = new EncryptionNegotiateContext(mockConfig, new int[3]);
                assertEquals(4 + 6, context.size()); // 4 base + 3*2 for ciphers
    
                context = new EncryptionNegotiateContext(mockConfig, null);
                assertEquals(4, context.size()); // 4 base when null
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  8. cmd/apierrorcode_string.go

    	_ = x[ErrReplicationConfigurationNotFoundError-42]
    	_ = x[ErrRemoteDestinationNotFoundError-43]
    	_ = x[ErrReplicationDestinationMissingLock-44]
    	_ = x[ErrRemoteTargetNotFoundError-45]
    	_ = x[ErrReplicationRemoteConnectionError-46]
    	_ = x[ErrReplicationBandwidthLimitError-47]
    	_ = x[ErrBucketRemoteIdenticalToSource-48]
    	_ = x[ErrBucketRemoteAlreadyExists-49]
    	_ = x[ErrBucketRemoteLabelInUse-50]
    	_ = x[ErrBucketRemoteArnTypeInvalid-51]
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/ImmutableRangeSetTest.java

                Range.singleton(1),
                Range.lessThan(2),
                Range.greaterThan(10),
                Range.atMost(4),
                Range.atLeast(3),
                Range.closed(4, 6),
                Range.closedOpen(1, 3),
                Range.openClosed(5, 7),
                Range.open(3, 4));
        subsets:
        for (Set<Range<Integer>> subset : Sets.powerSet(ranges)) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Jan 25 16:19:30 UTC 2025
    - 21.7K bytes
    - Viewed (0)
  10. cmd/sftp-server.go

    // the final form of the key file will be set as this variable.
    var globalSFTPTrustedCAPubkey ssh.PublicKey
    
    // https://cs.opensource.google/go/x/crypto/+/refs/tags/v0.22.0:ssh/common.go;l=46
    // preferredKexAlgos specifies the default preference for key-exchange
    // algorithms in preference order. The diffie-hellman-group16-sha512 algorithm
    // is disabled by default because it is a bit slower than the others.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 16.5K bytes
    - Viewed (0)
Back to top