Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1511 - 1520 of 3,988 for true (0.04 sec)

  1. src/main/java/jcifs/smb1/netbios/Lmhosts.java

                    }
    
                    name = new Name( line.substring( i, j ), 0x20, null );
                    addr = new NbtAddress( name, ip, false, NbtAddress.B_NODE,
                                        false, false, true, true,
                                        NbtAddress.UNKNOWN_MAC_ADDRESS );
                    TAB.put( name, addr );
                }
            }
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 5.8K bytes
    - Viewed (0)
  2. internal/store/store.go

    	v := strings.Split(k, ":")
    	if len(v) == 2 {
    		return strconv.Atoi(v[0])
    	}
    	return
    }
    
    func parseKey(k string) (key Key) {
    	key.Name = k
    	if strings.HasSuffix(k, compressExt) {
    		key.Compress = true
    		key.Name = strings.TrimSuffix(key.Name, compressExt)
    	}
    	if key.ItemCount, _ = getItemCount(k); key.ItemCount > 1 {
    		key.Name = strings.TrimPrefix(key.Name, fmt.Sprintf("%d:", key.ItemCount))
    	}
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Sep 06 23:06:30 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/base/AbstractIteratorTest.java

    import java.util.Iterator;
    import java.util.NoSuchElementException;
    import junit.framework.TestCase;
    
    /**
     * Unit test for {@code AbstractIterator}.
     *
     * @author Kevin Bourrillion
     */
    @GwtCompatible(emulated = true)
    public class AbstractIteratorTest extends TestCase {
    
      public void testDefaultBehaviorOfNextAndHasNext() {
    
        // This sample AbstractIterator returns 0 on the first call, 1 on the
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Sep 17 18:14:12 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. tests/test_annotated.py

                        "summary": "Required",
                        "operationId": "required_required_get",
                        "parameters": [
                            {
                                "required": True,
                                "schema": {
                                    "title": "Foo",
                                    "minLength": 1,
                                    "type": "string",
                                },
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/TypeMetaData.java

            this.arrayDimensions = arrayDimensions;
            return this;
        }
    
        public boolean isVarargs() {
            return varargs;
        }
    
        public TypeMetaData setVarargs() {
            this.varargs = true;
            return this;
        }
    
        public List<TypeMetaData> getTypeArgs() {
            return typeArgs;
        }
    
        public TypeMetaData getRawType() {
            if (wildcard || lowerBounds != null) {
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 6.1K bytes
    - Viewed (0)
  6. MIGRATION.md

    ### Google Search Appliance (GSA) / Google Mini
    
    Fess provides a [Google Search Appliance](https://enterprise.google.com/search/products/gsa.html) (GSA) compatible API. To enable this API, set `web.api.gsa=true` to system.properties. This will enable an enpoint at `<Fess Server Name>:8080/gsa`. When a search query is sent to `<Fess Server Name>:8080/gsa/?q=QUERY`, a GSA compatible response will be returned
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Tue Mar 05 06:12:02 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/app/pager/BoostDocPagerTest.java

            boostdocpager.setAllPageCount(999);
            assertEquals(999, boostdocpager.getAllPageCount());
            boostdocpager.setExistPrePage(true);
            assertTrue(boostdocpager.isExistPrePage());
            boostdocpager.setExistNextPage(true);
            assertTrue(boostdocpager.isExistNextPage());
            boostdocpager.setPageSize(0);
            assertEquals(25, boostdocpager.getPageSize());
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/app/pager/CrawlingInfoPagerTest.java

            crawlinginfopage.setAllPageCount(999);
            assertEquals(999, crawlinginfopage.getAllPageCount());
            crawlinginfopage.setExistPrePage(true);
            assertTrue(crawlinginfopage.isExistPrePage());
            crawlinginfopage.setExistNextPage(true);
            assertTrue(crawlinginfopage.isExistNextPage());
            crawlinginfopage.setPageSize(0);
            assertEquals(25, crawlinginfopage.getPageSize());
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/app/pager/DuplicateHostPagerTest.java

            duplicatehostpager.setAllPageCount(999);
            assertEquals(999, duplicatehostpager.getAllPageCount());
            duplicatehostpager.setExistPrePage(true);
            assertTrue(duplicatehostpager.isExistPrePage());
            duplicatehostpager.setExistNextPage(true);
            assertTrue(duplicatehostpager.isExistNextPage());
            duplicatehostpager.setPageSize(0);
            assertEquals(25, duplicatehostpager.getPageSize());
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. android/guava-testlib/test/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilderTest.java

            new Runnable() {
              @Override
              public void run() {
                setUp[0] = true;
              }
            };
    
        boolean[] tearDown = {false};
        Runnable tearDownRunnable =
            new Runnable() {
              @Override
              public void run() {
                tearDown[0] = true;
              }
            };
    
        MyTestSuiteBuilder builder = new MyTestSuiteBuilder();
        Test test =
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top