- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 448 for opens (0.02 seconds)
-
android/pom.xml
the add-opens. Right now that doesn't seem worth the effort, though. --> <test.add.opens> --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/sun.security.jca=ALL-UNNAMED </test.add.opens> <module.status>integration</module.status>
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Dec 05 03:10:05 GMT 2025 - 26.4K bytes - Click Count (0) -
pom.xml
the add-opens. Right now that doesn't seem worth the effort, though. --> <test.add.opens> --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED --add-opens java.base/sun.security.jca=ALL-UNNAMED </test.add.opens> <module.status>integration</module.status>
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Fri Dec 05 03:10:05 GMT 2025 - 26.1K bytes - Click Count (0) -
src/main/java/jcifs/SmbResource.java
* Opens an input stream reading the file (read only) * * @param sharing * flags indicating for which operations others may open the file (FILE_SHARING_*) * * @return input stream, needs to be closed when finished * @throws CIFSException if an error occurs accessing the resource */ InputStream openInputStream(int sharing) throws CIFSException; /**
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 28K bytes - Click Count (1) -
mockwebserver-junit5/src/main/java9/module-info.java
@SuppressWarnings("module") module mockwebserver3.junit5 { requires okhttp3; opens mockwebserver3.junit5.internal;Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sun Sep 21 06:22:22 GMT 2025 - 121 bytes - Click Count (0) -
module-tests/src/test/java/module-info.java
requires okhttp3; requires okhttp3.logging; requires mockwebserver3; requires mockwebserver3.junit5; requires jdk.crypto.ec; requires org.junit.jupiter.api; requires okhttp3.modules; opens okhttp3.modules.test to org.junit.platform.commons;
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sun Sep 21 06:22:22 GMT 2025 - 317 bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.groovy-dsl-gradle-plugin.gradle.kts
jvmArgumentProviders.add(CommandLineArgumentProvider { //allow ProjectBuilder to inject legacy types into the system classloader if (testVersionProvider.get().canCompileOrRun(9)) { listOf("--add-opens", "java.base/java.lang=ALL-UNNAMED") } else { emptyList() } }) jvmArgumentProviders.add(CommandLineArgumentProvider { val testVersion = testVersionProvider.get()
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Apr 11 20:15:47 GMT 2025 - 2.2K bytes - Click Count (0) -
android/guava/src/com/google/common/io/CharSink.java
* * @since 14.0 * @author Colin Decker */ @J2ktIncompatible @GwtIncompatible public abstract class CharSink { /** Constructor for use by subclasses. */ protected CharSink() {} /** * Opens a new {@link Writer} for writing to this sink. This method returns a new, independent * writer each time it is called. * * <p>The caller is responsible for ensuring that the returned writer is closed. *Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Mon Apr 14 16:07:06 GMT 2025 - 6.7K bytes - Click Count (0) -
android/guava/src/com/google/common/io/MultiInputStream.java
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Wed May 14 19:40:47 GMT 2025 - 2.8K bytes - Click Count (0) -
android/guava/src/com/google/common/io/MultiReader.java
private @Nullable Reader current; MultiReader(Iterator<? extends CharSource> readers) throws IOException { this.it = readers; advance(); } /** Closes the current reader and opens the next one, if any. */ private void advance() throws IOException { close(); if (it.hasNext()) { current = it.next().openStream(); } } @Override
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Aug 07 16:37:28 GMT 2025 - 2.4K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java
public static final int SMB2_IMPERSONATION_LEVEL_DELEGATE = 0x3; /** * Enable other opens for read access */ public static final int FILE_SHARE_READ = 0x1; /** * Enable other opens for write access */ public static final int FILE_SHARE_WRITE = 0x2; /** * Enable other opens for delete access */ public static final int FILE_SHARE_DELETE = 0x4; /**Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 23 02:21:31 GMT 2025 - 22.9K bytes - Click Count (0)