Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for otherhost (0.09 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpAuthenticationTest.java

            assertTrue(auth.matches("ftp://hostname/test/aaa.html"));
    
            // Test with different server
            auth.setServer("otherhost");
            assertFalse(auth.matches("ftp://hostname:21/test/aaa.html"));
            assertTrue(auth.matches("ftp://otherhost:21/test/aaa.html"));
    
            // Test with IP address
            auth.setServer("192.168.1.1");
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Mar 15 06:52:00 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Lists.java

          return false;
        }
        List<?> otherList = (List<?>) other;
        int size = thisList.size();
        if (size != otherList.size()) {
          return false;
        }
        if (thisList instanceof RandomAccess && otherList instanceof RandomAccess) {
          // avoid allocation and use the faster loop
          for (int i = 0; i < size; i++) {
            if (!Objects.equals(thisList.get(i), otherList.get(i))) {
              return false;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 42.2K bytes
    - Viewed (0)
  3. cmd/data-usage-cache.go

    	existingRoot := d.root()
    	otherRoot := other.root()
    	if existingRoot == nil && otherRoot == nil {
    		return
    	}
    	if otherRoot == nil {
    		return
    	}
    	if existingRoot == nil {
    		*d = other.clone()
    		return
    	}
    	if other.Info.LastUpdate.After(d.Info.LastUpdate) {
    		d.Info.LastUpdate = other.Info.LastUpdate
    	}
    	existingRoot.merge(*otherRoot)
    	eHash := d.rootHash()
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 34.7K bytes
    - Viewed (0)
  4. lib/fips140/v1.0.0.zip

    return nil, errors.New("invalid {{.P}} compressed point encoding") } // Select the positive or negative root, as indicated by the least // significant bit, based on the encoding type byte. otherRoot := new({{.Element}}) otherRoot.Sub(otherRoot, y) cond := y.Bytes()[{{.p}}ElementLength-1]&1 ^ b[0]&1 y.Select(otherRoot, y, int(cond)) p.x.Set(x) p.y.Set(y) p.z.One() return p, nil default: return nil, errors.New("invalid {{.P}} point encoding") } } var _{{.p}}B *{{.Element}} var _{{.p}}BOnce sync.Once func...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
Back to top