- Sort Score
- Result 10 results
- Languages All
Results 331 - 340 of 7,356 for _this (0.04 sec)
-
.teamcity/src/main/kotlin/common/Os.kt
defaultArch = Arch.AARCH64 ); fun escapeKeyValuePair(key: String, value: String) = if (this == WINDOWS) """$key="$value"""" else """"$key=$value"""" fun asName() = name.lowercase().toCapitalized() fun javaInstallationLocations(arch: Arch = Arch.AMD64): String { val paths = when { this == LINUX -> listOf( DefaultJvm(JvmVersion.java7, JvmVendor.oracle),
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Oct 11 18:32:33 UTC 2024 - 3.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapFile.java
} public void setLoc(final String loc) { this.loc = loc; } /* * (non-Javadoc) * * @see org.codelibs.fess.crawler.entity.Sitemap#getLastmod() */ @Override public String getLastmod() { return lastmod; } public void setLastmod(final String lastmod) { this.lastmod = lastmod; } @Override
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultDataImpl.java
*/ @Override public void setData(final byte[] data) { this.data = data; } @Override public String getEncoding() { return encoding; } @Override public void setEncoding(final String encoding) { this.encoding = encoding; } /* * (non-Javadoc) *
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbSessionImpl.java
this.transportContext = tf; this.targetDomain = targetDomain; this.targetHost = targetHost; this.transport = transport.acquire(); this.trees = new ArrayList<>(); this.credentials = tf.getCredentials().unwrap(CredentialsInternal.class).clone(); } /** * @return the configuration used by this session */ @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 17:41:04 UTC 2021 - 49K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/CipherSuiteTest.kt
@Test fun hashCode_usesIdentityHashCode_legacyCase() { val cs = CipherSuite.TLS_RSA_EXPORT_WITH_RC4_40_MD5 // This one's javaName starts with "SSL_". assertThat(cs.hashCode(), cs.toString()) .isEqualTo(System.identityHashCode(cs)) } @Test fun hashCode_usesIdentityHashCode_regularCase() { // This one's javaName matches the identifier. val cs = CipherSuite.TLS_RSA_WITH_AES_128_CBC_SHA256
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 8.2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/EqualsTester.java
public EqualsTester() { this(new RelationshipTester.ItemReporter()); } EqualsTester(RelationshipTester.ItemReporter itemReporter) { this.itemReporter = checkNotNull(itemReporter); } /** * Adds {@code equalityGroup} with objects that are supposed to be equal to each other and not * equal to any other equality groups added to this tester. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Oct 31 19:11:50 UTC 2023 - 6K bytes - Viewed (0) -
cmd/metacache-manager.go
// Copyright (c) 2015-2021 MinIO, Inc. // // This file is part of MinIO Object Storage stack // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 25 00:44:15 UTC 2022 - 5.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComReadAndX.java
public String toString () { return new String( "SmbComReadAndX[" + super.toString() + ",fid=" + this.fid + ",offset=" + this.offset + ",maxCount=" + this.maxCount + ",minCount=" + this.minCount + ",openTimeout=" + this.openTimeout + ",remaining=" + this.remaining + ",offset=" + this.offset + "]"); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/SourceSinkTester.java
SourceSinkTester(F factory, T data, String suiteName, String caseDesc, Method method) { super(method.getName()); this.factory = checkNotNull(factory); this.data = checkNotNull(data); this.expected = checkNotNull(factory.getExpected(data)); this.suiteName = checkNotNull(suiteName); this.caseDesc = checkNotNull(caseDesc); } @Override public String getName() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Apr 27 18:57:08 UTC 2022 - 4.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComTreeConnectAndX.java
super( andx ); this.session = session; this.path = path; this.service = service; command = SMB_COM_TREE_CONNECT_ANDX; } int getBatchLimit( byte command ) { int c = (int)( command & 0xFF ); // why isn't this just return batchLimits[c]? switch( c ) { case SMB_COM_CHECK_DIRECTORY:
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 6.8K bytes - Viewed (0)