- Sort Score
- Result 10 results
- Languages All
Results 1661 - 1670 of 2,242 for projectId (0.07 sec)
-
guava-tests/test/com/google/common/io/LittleEndianDataInputStreamTest.java
/** * Test class for {@link LittleEndianDataInputStream}. * * @author Chris Nokleberg */ public class LittleEndianDataInputStreamTest extends TestCase { private byte[] data; @Override protected void setUp() throws Exception { super.setUp(); ByteArrayOutputStream baos = new ByteArrayOutputStream(); DataOutputStream out = new DataOutputStream(baos); initializeData(out);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Sep 06 17:04:31 UTC 2023 - 4.8K bytes - Viewed (0) -
internal/config/certs.go
"os" "github.com/minio/pkg/v3/env" ) // EnvCertPassword is the environment variable which contains the password used // to decrypt the TLS private key. It must be set if the TLS private key is // password protected. const EnvCertPassword = "MINIO_CERT_PASSWD" // ParsePublicCertFile - parses public cert into its *x509.Certificate equivalent. func ParsePublicCertFile(certFile string) (x509Certs []*x509.Certificate, err error) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 14 17:11:51 UTC 2024 - 3.8K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/LayeredMavenOptions.java
public Optional<String> resumeFrom() { return returnFirstPresentOrEmpty(MavenOptions::resumeFrom); } @Override public Optional<List<String>> projects() { return collectListIfPresentOrEmpty(MavenOptions::projects); } @Override public Optional<Boolean> alsoMake() { return returnFirstPresentOrEmpty(MavenOptions::alsoMake); } @Override
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java
throwValidationErrorApi(messages -> messages.addErrorsFailedToDownloadProtwordsFile(GLOBAL)); return null; }); } protected EditBody createEditBody(final ProtwordsItem entity, final String dictId) { final EditBody body = new EditBody(); body.id = entity.getId(); body.dictId = dictId;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.2K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/AbstractSortedSetMultimap.java
/** * Creates a new multimap that uses the provided map. * * @param map place to store the mapping from each key to its corresponding values */ protected AbstractSortedSetMultimap(Map<K, Collection<V>> map) { super(map); } @Override abstract SortedSet<V> createCollection(); @Override SortedSet<V> createUnmodifiableEmptyCollection() {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/spnego/NegTokenInit.java
return collector.toByteArray(); } catch ( IOException ex ) { throw new IllegalStateException(ex.getMessage()); } } @Override protected void parse ( byte[] token ) throws IOException { try ( ASN1InputStream is = new ASN1InputStream(token) ) { ASN1TaggedObject constructed = (ASN1TaggedObject) is.readObject();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Oct 01 12:01:17 UTC 2023 - 7.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
* * @see jcifs.internal.SmbNegotiationResponse#setupResponse(jcifs.util.transport.Response) */ @Override public void setupResponse ( Response resp ) {} @Override protected int readBytesWireFormat ( byte[] buffer, int bufferIndex ) throws SMBProtocolDecodingException { int start = bufferIndex; int structureSize = SMBUtil.readInt2(buffer, bufferIndex);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 22 10:09:46 UTC 2020 - 17.6K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/NullPointerTester.java
final TypeToken<F> convertFromType, final TypeToken<T> convertToType) { return new Converter<F, T>() { @Override protected T doForward(F a) { return doConvert(convertToType); } @Override protected F doBackward(T b) { return doConvert(convertFromType); } private /*static*/ <S> S doConvert(TypeToken<S> type) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 11 16:13:05 UTC 2024 - 22.6K bytes - Viewed (0) -
compat/maven-model-builder/src/test/java/org/apache/maven/model/building/DefaultModelBuilderTest.java
+ " </dependency>\n" + " </dependencies>\n" + " </dependencyManagement>\n" + "</project>\n"; private static final String BASE2_ID = "thegroup:base2:pom"; private static final String BASE2 = "<project>\n" + " <modelVersion>4.0.0</modelVersion>\n" + " <groupId>thegroup</groupId>\n" + " <artifactId>base2</artifactId>\n"
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 16.9K bytes - Viewed (0) -
native-image-tests/README.md
---------------------- Compile the classes and metadata into a Graalvm native image. ``` ./gradlew --info native-image-tests:nativeImage ``` Execute ------- The native image runs JUnit 5 tests in the project. ``` ./native-image-tests/build/graal/ConsoleLauncher
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Oct 31 12:12:20 UTC 2020 - 393 bytes - Viewed (0)