Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,337 for private (0.18 sec)

  1. maven-core/src/test/resources/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    }; public static final String DEFAULT_ESCAPE_SEQ = \; private static final char CARRIAGE_RETURN_CHAR = 13; private static final char NEWLINE_CHAR = 10; private final java.io.PushbackReader pushbackReader; private final java.util.Map context; private final String startDelim; private final String endDelim; private final String escapeSeq; private final int minExpressionSize; private final reflection.Reflector reflector; private int lineIdx; private String line; public void LineOrientedInterpol(java.io.Reader,...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 164.6K bytes
    - Viewed (0)
  2. build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/ApiTypeProvider.kt

     */
    class ApiTypeProvider internal constructor(
        private val asmLevel: Int,
        private val incubatingAnnotationTypeDescriptor: String,
        private val repository: ClassBytesRepository,
        parameterNamesSupplier: ParameterNamesSupplier
    ) : Closeable {
    
        private
        val context = Context(this, parameterNamesSupplier)
    
        private
        val apiTypesBySourceName = mutableMapOf<String, ApiTypeSupplier?>()
    
    Plain Text
    - Registered: Wed Feb 28 11:36:09 GMT 2024
    - Last Modified: Tue Feb 06 19:56:10 GMT 2024
    - 20.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequest.java

        private File multiModuleProjectDirectory;
    
        private File basedir;
    
        private Path rootDirectory;
    
        private Path topDirectory;
    
        private List<String> goals;
    
        private boolean useReactor = false;
    
        private boolean recursive = true;
    
        private File pom;
    
        private String reactorFailureBehavior = REACTOR_FAIL_FAST;
    
        private boolean resume = false;
    
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 31K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyCoordinateFactoryRequest.java

            private Session session;
            private String groupId;
            private String artifactId;
            private String version;
            private String classifier;
            private String extension;
            private String type;
            private String coordinateString;
            private String scope;
            private boolean optional;
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-32/plexus-component-api-1.0-alpha-32.jar

    .repository; public synchronized class ComponentDescriptor { private String alias; private String role; private String roleHint; private String implementation; private String version; private String componentType; private org.codehaus.plexus.configuration.PlexusConfiguration configuration; private String instantiationStrateg; private String lifecycleHandler; private String componentProfile; private java.util.List requirements; private String componentFactory; private String componentComposer; private...
    Archive
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 35.3K bytes
    - Viewed (0)
  6. guava-testlib/test/com/google/common/testing/anotherpackage/ForwardingWrapperTesterTest.java

        }
    
        @Override
        public String toString() {
          return runnable.toString();
        }
      }
    
      private interface Adder {
        int add(int a, int b);
      }
    
      private static class ForwardingArithmetic implements Arithmetic {
        private final Arithmetic arithmetic;
    
        public ForwardingArithmetic(Arithmetic arithmetic) {
          this.arithmetic = arithmetic;
        }
    
        @Override
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 15.7K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java

     *
     * @author Anthony Zana
     */
    public class UninterruptiblesTest extends TestCase {
      private static final String EXPECTED_TAKE = "expectedTake";
    
      /** Timeout to use when we don't expect the timeout to expire. */
      private static final long LONG_DELAY_MS = 2500;
    
      private static final long SLEEP_SLACK = 2;
    
      private final TearDownStack tearDownStack = new TearDownStack();
    
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Feb 09 22:57:07 GMT 2022
    - 31.7K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

      private final Outcome expectedOutcome;
      private final Monitor monitor;
      private final FlagGuard guard;
      private final CountDownLatch tearDownLatch;
      private final CountDownLatch doingCallLatch;
      private final CountDownLatch callCompletedLatch;
    
      private GeneratedMonitorTest(
          Method method,
          Scenario scenario,
          boolean fair,
          @Nullable Timeout timeout,
          Outcome expectedOutcome) {
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Apr 17 14:48:57 GMT 2023
    - 26.1K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultVersionResolver.java

            }
        }
    
        private static class Key {
    
            private final String groupId;
    
            private final String artifactId;
    
            private final String classifier;
    
            private final String extension;
    
            private final String version;
    
            private final String context;
    
            private final Path localRepo;
    
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 20.2K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/testing/NullPointerTester.java

     * @since 10.0
     */
    @GwtIncompatible
    @J2ktIncompatible
    @ElementTypesAreNonnullByDefault
    public final class NullPointerTester {
    
      private final ClassToInstanceMap<Object> defaults = MutableClassToInstanceMap.create();
      private final List<Member> ignoredMembers = Lists.newArrayList();
    
      private ExceptionTypePolicy policy = ExceptionTypePolicy.NPE_OR_UOE;
    
      public NullPointerTester() {
        try {
          /*
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Nov 16 15:12:31 GMT 2023
    - 23.3K bytes
    - Viewed (0)
Back to top