- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for otherhost (0.24 sec)
-
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: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 3.8K bytes - Viewed (0) -
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 Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 42.6K bytes - Viewed (0) -
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 Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Sep 28 20:59:21 UTC 2025 - 34.7K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/RobotsTxtTest.java
RobotsTxt robotsTxt = new RobotsTxt(); Directive directive = new Directive("MyBot"); robotsTxt.addDirective(directive); Directive retrieved = robotsTxt.getDirective("OtherBot"); assertNull(retrieved); } public void test_getDirectiveWithNull() { // Test getDirective with null user agent RobotsTxt robotsTxt = new RobotsTxt();
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:29:22 UTC 2025 - 14.4K bytes - Viewed (0) -
lib/fips140/v1.0.0-c2097c7c.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 Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Sep 25 19:53:19 UTC 2025 - 642.7K bytes - Viewed (0) -
lib/fips140/v1.1.0-rc1.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 Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Dec 11 16:27:41 UTC 2025 - 663K bytes - Viewed (0)