Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 64 for 0x1 (0.01 seconds)

  1. cmd/data-usage-cache_gen.go

    					}
    				}
    			}
    			zb0001Mask |= 0x1
    		case "c":
    			z.Compacted, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "Compacted")
    				return
    			}
    		default:
    			err = dc.Skip()
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	// Clear omitted fields.
    	if (zb0001Mask & 0x1) == 0 {
    		z.AllTierStats = nil
    	}
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 85.5K bytes
    - Click Count (0)
  2. src/test/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequestTest.java

            assertEquals(0x00098208, Smb2IoctlRequest.FSCTL_FILE_LEVEL_TRIM);
            assertEquals(0x000140204, Smb2IoctlRequest.FSCTL_VALIDATE_NEGOTIATE_INFO);
            assertEquals(0x1, Smb2IoctlRequest.SMB2_O_IOCTL_IS_FSCTL);
        }
    
        @Test
        @DisplayName("Test configuration with different control codes")
        void testDifferentControlCodes() {
            setupMockConfig();
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 14.3K bytes
    - Click Count (0)
  3. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixTrie.java

    @GwtCompatible
    public final class PublicSuffixTrie {
    
      /** Each node in the trie takes up 3 characters. */
      static final int NODE_SIZE = 3;
    
      static final int CHILDREN_MASK = 0x7FF;
      static final int EXCLUSION_MASK = 0x1;
      static final int TYPE_MASK = 0x3;
      static final int EXCLUSION_SHIFT = 11;
      static final int WILDCARD_SHIFT = 12;
      static final int EXACT_SHIFT = 14;
    
      final CharSequence trieData;
      final CharSequence stringPool;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 21:21:59 GMT 2026
    - 9.1K bytes
    - Click Count (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Huffman.kt

          0xffa,
          0x1ff9,
          0x15,
          0xf8,
          0x7fa,
          0x3fa,
          0x3fb,
          0xf9,
          0x7fb,
          0xfa,
          0x16,
          0x17,
          0x18,
          0x0,
          0x1,
          0x2,
          0x19,
          0x1a,
          0x1b,
          0x1c,
          0x1d,
          0x1e,
          0x1f,
          0x5c,
          0xfb,
          0x7ffc,
          0x20,
          0xffb,
          0x3fc,
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 11K bytes
    - Click Count (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/UrlComponentEncodingTester.kt

        for (codePoint in codePoints) {
          encodings[codePoint] = encoding
        }
      }
    
      fun nonPrintableAscii(encoding: Encoding) =
        apply {
          encodings[0x0] = encoding // Null character
          encodings[0x1] = encoding // Start of Header
          encodings[0x2] = encoding // Start of Text
          encodings[0x3] = encoding // End of Text
          encodings[0x4] = encoding // End of Transmission
          encodings[0x5] = encoding // Enquiry
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jan 27 09:00:39 GMT 2026
    - 12.3K bytes
    - Click Count (0)
  6. src/main/java/jcifs/internal/smb2/ioctl/Smb2IoctlRequest.java

         */
        public static final int FSCTL_VALIDATE_NEGOTIATE_INFO = 0x000140204;
    
        /**
         * Flag indicating this IOCTL is a file system control operation
         */
        public static final int SMB2_O_IOCTL_IS_FSCTL = 0x1;
    
        private byte[] fileId;
        private final int controlCode;
        private final byte[] outputBuffer;
        private int maxOutputResponse;
        private int maxInputResponse;
        private int flags;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  7. src/test/java/jcifs/internal/smb2/nego/EncryptionNegotiateContextTest.java

            @Test
            @DisplayName("Should have correct constant values")
            void testConstantValues() {
                assertEquals(0x2, EncryptionNegotiateContext.NEGO_CTX_ENC_TYPE);
                assertEquals(0x1, EncryptionNegotiateContext.CIPHER_AES128_CCM);
                assertEquals(0x2, EncryptionNegotiateContext.CIPHER_AES128_GCM);
            }
        }
    
        @Nested
        @DisplayName("Edge Case Tests")
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 20.5K bytes
    - Click Count (0)
  8. cmd/xl-storage-format-v1_gen.go

    				err = msgp.WrapError(err, "ModTime")
    				return
    			}
    		case "i":
    			z.Index, err = dc.ReadBytes(z.Index)
    			if err != nil {
    				err = msgp.WrapError(err, "Index")
    				return
    			}
    			zb0001Mask |= 0x1
    		case "crc":
    			var zb0002 uint32
    			zb0002, err = dc.ReadMapHeader()
    			if err != nil {
    				err = msgp.WrapError(err, "Checksums")
    				return
    			}
    			if z.Checksums == nil {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 41.2K bytes
    - Click Count (0)
  9. src/test/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferralResponseTest.java

            }
    
            @Test
            @DisplayName("Should have correct TYPE_NON_ROOT_TARGETS value")
            void testTypeNonRootTargetsConstant() {
                assertEquals(0x1, Trans2GetDfsReferralResponse.TYPE_NON_ROOT_TARGETS);
            }
        }
    
        @Nested
        @DisplayName("Unicode Support Tests")
        class UnicodeSupportTests {
    
            @Test
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 19.4K bytes
    - Click Count (0)
  10. src/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java

                assertEquals(0x02, response.getFileAttributes());
            }
        }
    
        // Constants from the main class
        private static final int SMB2_CLOSE_FLAG_POSTQUERY_ATTIB = 0x1;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 26.9K bytes
    - Click Count (0)
Back to Top