- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for get_c (0.03 sec)
-
src/main/java/jcifs/smb1/smb1/Dfs.java
HashMap domains = getTrustedDomains(auth); if (domains == null) return false; domain = domain.toLowerCase(); return domains.get(domain) != null; } public SmbTransport getDc(String domain, NtlmPasswordAuthentication auth) throws SmbAuthException { if (DISABLED) return null; try {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 11.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/DfsImpl.java
return null; } } /** * * {@inheritDoc} * * @see jcifs.DfsResolver#getDc(jcifs.CIFSContext, java.lang.String) */ @Override public SmbTransport getDc ( CIFSContext tf, String domain ) throws SmbAuthException { if ( tf.getConfig().isDfsDisabled() ) return null;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:07:29 UTC 2023 - 29.1K bytes - Viewed (0) -
src/test/java/jcifs/tests/DfsTest.java
@Test public void resolveDC () throws CIFSException { CIFSContext context = withAnonymousCredentials(); DfsResolver dfs = context.getDfs(); try ( SmbTransport dc = dfs.getDc(context, getTestDomain()) ) { Address addr = dc.getRemoteAddress(); String remoteHostName = dc.getRemoteHostName(); assertNotNull(addr); assertNotNull(remoteHostName);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 01 09:46:04 UTC 2020 - 13.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/stats/ApiAdminStatsAction.java
jvmPoolObj.capacity = p.getTotalCapacity().getBytes(); return jvmPoolObj; }).toArray(n -> new JvmPoolObj[n]); final GarbageCollectors gc = jvmStats.getGc(); jvmObj.gc = Arrays.stream(gc.getCollectors()).map(c -> { final JvmGcObj jvmGcObj = new JvmGcObj(); jvmGcObj.key = c.getName(); jvmGcObj.count = c.getCollectionCount();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 12.1K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/util/BeanUtilTest.java
map.put("d", 1.4); final HogeDto hoge = new HogeDto(); BeanUtil.copyMapToBean(map, hoge); assertThat(hoge.getA(), is("A")); assertThat(hoge.isB(), is(true)); assertThat(hoge.getC(), is(3)); } /** * @throws Exception */ @Test public void testCopyBeanToBean() throws Exception { final SrcBean src = new SrcBean(); src.aaa = "aaa";
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 34.5K bytes - Viewed (0)