- Sort Score
- Result 10 results
- Languages All
Results 591 - 600 of 678 for getName (0.07 sec)
-
guava/src/com/google/common/net/InetAddresses.java
// present interfaces) NetworkInterface scopedInterface = ip.getScopedInterface(); if (scopedInterface != null) { return "%" + scopedInterface.getName(); } int scope = ip.getScopeId(); if (scope != 0) { return "%" + scope; } return ""; } /** * Identify and mark the longest run of zeroes in an IPv6 address.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 47.1K bytes - Viewed (0) -
istioctl/pkg/describe/describe.go
switch cs := vhRoute.GetRoute().GetClusterSpecifier().(type) { case *route.RouteAction_Cluster: clusterName = cs.Cluster case *route.RouteAction_WeightedClusters: clusterName = cs.WeightedClusters.Clusters[0].GetName() } // If this is an ingress gateway, the Domains will be something like *:80, so check routes // which will look like "outbound|9080||productpage.default.svc.cluster.local"
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 17:36:49 UTC 2024 - 50.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0) -
android/guava/src/com/google/common/cache/CacheBuilder.java
}; // We use a holder class to delay initialization: https://github.com/google/guava/issues/6566 private static final class LoggerHolder { static final Logger logger = Logger.getLogger(CacheBuilder.class.getName()); } static final int UNSET_INT = -1; boolean strictParsing = true; int initialCapacity = UNSET_INT; int concurrencyLevel = UNSET_INT; long maximumSize = UNSET_INT;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 52K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InetAddresses.java
// present interfaces) NetworkInterface scopedInterface = ip.getScopedInterface(); if (scopedInterface != null) { return "%" + scopedInterface.getName(); } int scope = ip.getScopeId(); if (scope != 0) { return "%" + scope; } return ""; } /** * Identify and mark the longest run of zeroes in an IPv6 address.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 47.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java
if (aliasConfigDir.isDirectory()) { stream(aliasConfigDir.listFiles((dir, name) -> name.endsWith(".json"))).of(stream -> stream.forEach(f -> { String aliasName = f.getName().replaceFirst(".json$", ""); if (index.equals(DOC_INDEX)) { if ("fess.search".equals(aliasName)) { aliasName = fessConfig.getIndexDocumentSearchIndex();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Oct 20 02:08:03 UTC 2024 - 86.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/reflect/TypeTokenTest.java
.testEquals(); } // T is used inside to test type variable public <T> void testToString() { assertEquals(String.class.getName(), new TypeToken<String>() {}.toString()); assertEquals("T", TypeToken.of(new TypeCapture<T>() {}.capture()).toString()); assertEquals("java.lang.String", new Entry<String, Integer>() {}.keyType().toString()); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 21:13:09 UTC 2024 - 89.1K bytes - Viewed (0) -
guava/src/com/google/common/cache/CacheBuilder.java
}; // We use a holder class to delay initialization: https://github.com/google/guava/issues/6566 private static final class LoggerHolder { static final Logger logger = Logger.getLogger(CacheBuilder.class.getName()); } static final int UNSET_INT = -1; boolean strictParsing = true; int initialCapacity = UNSET_INT; int concurrencyLevel = UNSET_INT; long maximumSize = UNSET_INT;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 51.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java
.testEquals(); } // T is used inside to test type variable public <T> void testToString() { assertEquals(String.class.getName(), new TypeToken<String>() {}.toString()); assertEquals("T", TypeToken.of(new TypeCapture<T>() {}.capture()).toString()); assertEquals("java.lang.String", new Entry<String, Integer>() {}.keyType().toString()); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 21:13:09 UTC 2024 - 89.1K bytes - Viewed (0) -
src/main/webapp/js/admin/plugins/form-validator/date.js
Date,g=f.getFullYear()-e.getFullYear();e.setFullYear(e.getFullYear()+g),e>f&&(g--,e.setFullYear(e.getFullYear()-1));var h=Math.floor((f.getTime()-e.getTime())/864e5),i=g+h/(c(f.getFullYear())?366:365),j=((i+"").split(".")[1]||"").substr(0,3);return i>=0?Math.floor(i)+(j>=915?1:0):(j*=10,Math.floor(i)+(j<=840?1:0))}function c(a){var b=new Date(a,1,28);return b.setDate(b.getDate()+1),1===b.getMonth()}a.formUtils.registerLoadedModule("date"),a.formUtils.addValidator({name:"time",validatorFunction:function(...
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jan 01 05:12:47 UTC 2018 - 1.6K bytes - Viewed (0)