Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 86 for 48 (0.19 sec)

  1. cmd/apierrorcode_string.go

    	_ = x[ErrReplicationDestinationMissingLock-44]
    	_ = x[ErrRemoteTargetNotFoundError-45]
    	_ = x[ErrReplicationRemoteConnectionError-46]
    	_ = x[ErrReplicationBandwidthLimitError-47]
    	_ = x[ErrBucketRemoteIdenticalToSource-48]
    	_ = x[ErrBucketRemoteAlreadyExists-49]
    	_ = x[ErrBucketRemoteLabelInUse-50]
    	_ = x[ErrBucketRemoteArnTypeInvalid-51]
    	_ = x[ErrBucketRemoteArnInvalid-52]
    	_ = x[ErrBucketRemoteRemoveDisallowed-53]
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/util/SuggestUtil.java

    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.search.SearchHit;
    
    public final class SuggestUtil {
        private static final int MAX_QUERY_TERM_NUM = 5;
        private static final int MAX_QUERY_TERM_LENGTH = 48;
    
        private static final Base64.Encoder encoder = Base64.getEncoder();
    
        private static final int ID_MAX_LENGTH = 445;
    
        private SuggestUtil() {
        }
    
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Sat Oct 12 00:10:39 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. api/go1.7.txt

    pkg debug/elf, const R_390_TLS_GOTIE64 = 44
    pkg debug/elf, const R_390_TLS_GOTIE64 R_390
    pkg debug/elf, const R_390_TLS_IE32 = 47
    pkg debug/elf, const R_390_TLS_IE32 R_390
    pkg debug/elf, const R_390_TLS_IE64 = 48
    pkg debug/elf, const R_390_TLS_IE64 R_390
    pkg debug/elf, const R_390_TLS_IEENT = 49
    pkg debug/elf, const R_390_TLS_IEENT R_390
    pkg debug/elf, const R_390_TLS_LDCALL = 39
    pkg debug/elf, const R_390_TLS_LDCALL R_390
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Tue Jun 28 15:08:11 UTC 2016
    - 13.6K bytes
    - Viewed (0)
  4. okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt

     *
     * ```
     * www.squareup.com certificate:
     *
     * Common Name: www.squareup.com
     * Subject Alternative Names: www.squareup.com, squareup.com, account.squareup.com...
     * Validity: 2018-07-03T20:18:17Z – 2019-08-01T20:48:15Z
     * Public Key: d107beecc17325f55da976bcbab207ba4df68bd3f8fce7c3b5850311128264fd53e1baa342f58d93...
     * Signature: 1fb0e66fac05322721fe3a3917f7c98dee1729af39c99eab415f22d8347b508acdf0bab91781c3720...
     *
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  5. api/go1.1.txt

    pkg syscall (darwin-386), const BPF_B = 16
    pkg syscall (darwin-386), const BPF_DIV = 48
    pkg syscall (darwin-386), const BPF_H = 8
    pkg syscall (darwin-386), const BPF_IMM = 0
    pkg syscall (darwin-386), const BPF_IND = 64
    pkg syscall (darwin-386), const BPF_JA = 0
    pkg syscall (darwin-386), const BPF_JEQ = 16
    pkg syscall (darwin-386), const BPF_JGE = 48
    pkg syscall (darwin-386), const BPF_JGT = 32
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/netbios/NbtAddress.java

                for( int i = 0; i < data.length; i++ ) {
                    char c = data[i];
                    if( c < 48 || c > 57 ) {
                        return (NbtAddress)doNameQuery( new Name( host, type, scope ), svr );
                    }
                    int b = 0x00;
                    while( c != '.' ) {
                        if( c < 48 || c > 57 ) {
                            return (NbtAddress)doNameQuery( new Name( host, type, scope ), svr );
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
  7. docs/debugging/inspect/export.go

    	}
    
    	if !bytes.Equal(buf[:4], xlHeader[:]) {
    		return payload, 0, 0, fmt.Errorf("xlMeta: unknown XLv2 header, expected %v, got %v", xlHeader[:4], buf[:4])
    	}
    
    	if bytes.Equal(buf[4:8], []byte("1   ")) {
    		// Set as 1,0.
    		major, minor = 1, 0
    	} else {
    		major, minor = binary.LittleEndian.Uint16(buf[4:6]), binary.LittleEndian.Uint16(buf[6:8])
    	}
    	if major > xlVersionMajor {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Nov 08 15:58:02 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

            byte[] user = readSecurityBuffer(material, 36);
            int userOffset = readULong(material, 40);
            byte[] workstation = readSecurityBuffer(material, 44);
            int workstationOffset = readULong(material, 48);
            int flags;
            String charset;
            byte[] _sessionKey = null;
            if (lmResponseOffset == 52 || ntResponseOffset == 52 ||
                    domainOffset == 52 || userOffset == 52 ||
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 22.9K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/IteratorsTest.java

        b = asList(4, 8, 15, 16, 23, 42);
        assertTrue(elementsEqual(a.iterator(), b.iterator()));
    
        // The same, but with nulls.
        a = Arrays.<@Nullable Integer>asList(4, 8, null, 16, 23, 42);
        b = Arrays.<@Nullable Integer>asList(4, 8, null, 16, 23, 42);
        assertTrue(elementsEqual(a.iterator(), b.iterator()));
    
        // Different Iterable types (still equal elements, though).
        a = ImmutableList.of(4, 8, 15, 16, 23, 42);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/hash/HashCode.java

            (byte) hash,
            (byte) (hash >> 8),
            (byte) (hash >> 16),
            (byte) (hash >> 24),
            (byte) (hash >> 32),
            (byte) (hash >> 40),
            (byte) (hash >> 48),
            (byte) (hash >> 56)
          };
        }
    
        @Override
        public int asInt() {
          return (int) hash;
        }
    
        @Override
        public long asLong() {
          return hash;
        }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 19:54:59 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top