Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for groupCount (0.05 sec)

  1. src/main/java/jcifs/pac/PacLogonInfo.java

                    int realGroupCount = pacStream.readInt();
                    if ( realGroupCount != groupCount ) {
                        throw new PACDecodingException("Invalid number of groups in PAC expect" + groupCount + " have " + realGroupCount);
                    }
                    groups = new PacGroup[groupCount];
                    for ( int i = 0; i < groupCount; i++ ) {
                        pacStream.align(4);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 11.4K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/form/FormScheme.java

            if (matcher.find()) {
                if (logger.isDebugEnabled()) {
                    logger.debug("Matched: {}", matcher.group());
                }
                if (matcher.groupCount() > 0) {
                    return matcher.group(1);
                }
            }
            return null;
        }
    
        protected String replaceCredentials(final Credentials credentials, final String value) {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. android/guava-testlib/test/com/google/common/testing/ArbitraryInstancesTest.java

      }
    
      public void testGet_regex() {
        assertEquals(Pattern.compile("").pattern(), ArbitraryInstances.get(Pattern.class).pattern());
        assertEquals(0, ArbitraryInstances.get(MatchResult.class).groupCount());
      }
    
      public void testGet_usePublicConstant() {
        assertSame(WithPublicConstant.INSTANCE, ArbitraryInstances.get(WithPublicConstant.class));
      }
    
      public void testGet_useFirstPublicConstant() {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 21.8K bytes
    - Viewed (0)
Back to top