- Sort Score
- Result 10 results
- Languages All
Results 331 - 340 of 3,340 for einmal (0.71 sec)
-
src/main/java/jcifs/smb/NtlmChallenge.java
import jcifs.netbios.UniAddress; import jcifs.util.Hexdump; /** * * * <p>This class is intended for internal use.</p> */ public final class NtlmChallenge implements Serializable { /** * */ private static final long serialVersionUID = 2484853610174848092L; /** * Challenge */ public byte[] challenge; /** * Server address */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.8K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/factory/BeanDescFactoryTest.java
*/ @Test public void testGetBeanDesc() throws Exception { final BeanDesc beanDesc = BeanDescFactory.getBeanDesc(MyBean.class); assertThat(BeanDescFactory.getBeanDesc(MyBean.class), is(sameInstance(beanDesc))); } /** * @throws Exception */ @Test public void testClear() throws Exception { final BeanDesc beanDesc = BeanDescFactory.getBeanDesc(MyBean.class);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/plugin/ApiAdminPluginAction.java
* @return JSON response indicating success or failure */ // POST /api/admin/plugin @Execute public JsonResponse<ApiResult> post$index(final InstallBody body) { validateApi(body, messages -> {}); final Artifact artifact = ComponentUtil.getPluginHelper().getArtifact(body.name, body.version); if (artifact == null) { return asJson(
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/api/WebApiManagerFactory.java
/** * Adds a web API manager to the factory. * * @param webApiManager The web API manager to add */ public void add(final WebApiManager webApiManager) { final List<WebApiManager> list = new ArrayList<>(); Collections.addAll(list, webApiManagers); list.add(webApiManager); webApiManagers = list.toArray(new WebApiManager[list.size()]); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/av/AvTimestamp.java
* @param raw the raw byte data for the timestamp AV pair */ public AvTimestamp(final byte[] raw) { super(AvPair.MsvAvTimestamp, raw); } /** * Constructs an AvTimestamp with the specified timestamp value * * @param ts the timestamp value in Windows FILETIME format */ public AvTimestamp(final long ts) { this(encode(ts)); } /** * @param ts
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.9K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/UUIDTest.java
private static final String VALID_UUID_STRING = "00112233-4455-6677-8899-AABBCCDDEEFF"; private static final String VALID_UUID_STRING_LOWERCASE = "00112233-4455-6677-8899-aabbccddeeff"; // Corresponding values for the valid UUID string private static final int TIME_LOW = 0x00112233; private static final short TIME_MID = (short) 0x4455; private static final short TIME_HI_AND_VERSION = (short) 0x6677;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/systeminfo/ApiAdminSysteminfoAction.java
// GET /api/admin/systeminfo @Execute public JsonResponse<ApiResult> get$index() { final List<Map<String, String>> bugReportItems = getBugReportItems(); final List<Map<String, String>> envItems = getEnvItems(); final List<Map<String, String>> fessPropItems = getFessPropItems(fessConfig); final List<Map<String, String>> propItems = getPropItems();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 2.9K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/CancelCall.java
public class CancelCall { private final ScheduledExecutorService executor = Executors.newScheduledThreadPool(1); private final OkHttpClient client = new OkHttpClient(); public void run() throws Exception { Request request = new Request.Builder() .url("http://httpbin.org/delay/2") // This URL is served with a 2 second delay. .build(); final long startNanos = System.nanoTime();
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Jan 12 03:31:36 UTC 2019 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java
* @return A new {@link SynonymFile} associated with the dictionary manager. */ @Override protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) { return new SynonymFile(id, path, timestamp).manager(dictionaryManager); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/io/ContentCache.java
/** * The logger for this class. */ protected static final Logger logger = Logger.getLogger(ContentCache.class.getName()); /** * A byte array that holds the cached content data. */ private final byte[] data; /** * The file that is used to cache the content. */ private final File file; /** * Constructs a ContentCache with the given byte array data.
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 3.8K bytes - Viewed (0)