Search Options

Results per page
Sort
Preferred Languages
Advance

Results 291 - 300 of 361 for value_b (0.15 sec)

  1. src/test/java/jcifs/internal/RequestTest.java

            assertTrue(request.allowChain(nextRequest));
            assertEquals(nextRequest, request.createCancel());
            assertEquals(1024, request.size());
            assertEquals(Integer.valueOf(5000), request.getOverrideTimeout());
    
            verify(request, times(1)).isResponseAsync();
            verify(request, times(1)).getNext();
            verify(request, times(1)).split();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateRequestTest.java

            when(mockConfig.isDfsDisabled()).thenReturn(!dfsEnabled);
            when(mockConfig.isEncryptionEnabled()).thenReturn(encryptionEnabled);
            when(mockConfig.getMaximumVersion()).thenReturn(DialectVersion.valueOf(maxVersion));
    
            // When
            request = new Smb2NegotiateRequest(mockConfig, 0);
    
            // Then
            int caps = request.getCapabilities();
            int capCount = 0;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  3. guava-testlib/test/com/google/common/testing/NullPointerTesterTest.java

      public void testTwoArgNormalNormal() throws Exception {
        Method method = TwoArg.class.getMethod("normalNormal", String.class, Integer.class);
        for (TwoArg.Action first : TwoArg.Action.values()) {
          for (TwoArg.Action second : TwoArg.Action.values()) {
            TwoArg bar = new TwoArg(first, second);
            if (first.equals(TwoArg.Action.THROW_A_NPE) && second.equals(TwoArg.Action.THROW_A_NPE)) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 47.7K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/util/MemoryUtilTest.java

            // Test negative values - should throw NullPointerException in private method via BigInteger.valueOf
            try {
                MemoryUtil.byteCountToDisplaySize(-1L);
                // If no exception, verify it handles negative as expected
            } catch (Exception e) {
                // Expected for negative values
            }
    
            // Test boundary values
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 11.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/escape/Escapers.java

       */
      public static Builder builder() {
        return new Builder();
      }
    
      /**
       * A builder for simple, fast escapers.
       *
       * <p>Typically an escaper needs to deal with the escaping of high valued characters or code
       * points. In these cases it is necessary to extend either {@link ArrayBasedCharEscaper} or {@link
       * ArrayBasedUnicodeEscaper} to provide the desired behavior. However this builder is suitable for
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/util/QueryResponseList.java

         *
         * @return the start position (0-based)
         */
        public int getStart() {
            return start;
        }
    
        /**
         * Gets the offset value used for pagination calculations.
         *
         * @return the offset value
         */
        public int getOffset() {
            return offset;
        }
    
        /**
         * Gets the number of records per page.
         *
         * @return the page size
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java

            Map<String, String> innerMap = new HashMap<>();
            innerMap.put("inner", "value");
            nestedData.put("nested", innerMap);
            callback.store(params, nestedData);
    
            assertEquals(4L, callback.getDocumentSize());
        }
    
        // Helper method to create mock callbacks with preset values
        private IndexUpdateCallback createMockCallback(final long docSize, final long execTime) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/Kerb5Context.java

            }
        }
    
        @SuppressWarnings("unchecked")
        private static <T extends Enum<T>> Object getSessionKeyInquireType(Class<?> inquireTypeClass) {
            return Enum.valueOf((Class<T>) inquireTypeClass, "KRB5_GET_SESSION_KEY");
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 13.5K bytes
    - Viewed (1)
  9. callbacks/query.go

    			var conds []clause.Expression
    			for _, primaryField := range db.Statement.Schema.PrimaryFields {
    				if v, isZero := primaryField.ValueOf(db.Statement.Context, db.Statement.ReflectValue); !isZero {
    					conds = append(conds, clause.Eq{Column: clause.Column{Table: db.Statement.Table, Name: primaryField.DBName}, Value: v})
    				}
    			}
    
    			if len(conds) > 0 {
    				db.Statement.AddClause(clause.Where{Exprs: conds})
    			}
    		}
    
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Sun May 25 07:40:40 UTC 2025
    - 10.4K bytes
    - Viewed (1)
  10. src/main/java/jcifs/smb1/netbios/NameServiceClient.java

                    }
    
                    nameTrnId = NameServicePacket.readNameTrnId(rcv_buf, 0);
                    response = (NameServicePacket) responseTable.get(Integer.valueOf(nameTrnId));
                    if (response == null || response.received) {
                        continue;
                    }
                    synchronized (response) {
                        response.readWireFormat(rcv_buf, 0);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 17.6K bytes
    - Viewed (0)
Back to top