Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 4,328 for privasi (0.18 sec)

  1. guava-tests/test/com/google/common/io/SourceSinkFactories.java

        }
    
        @Override
        public byte[] getExpected(byte[] bytes) {
          return checkNotNull(bytes);
        }
      }
    
      private static class FileByteSinkFactory extends FileFactory implements ByteSinkFactory {
    
        private final byte[] initialBytes;
    
        private FileByteSinkFactory(byte @Nullable [] initialBytes) {
          this.initialBytes = initialBytes;
        }
    
        @Override
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Sep 09 17:57:59 GMT 2021
    - 17.9K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.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 Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 32.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuildingRequest.java

        private List<String> activeProfileIds;
    
        private List<String> inactiveProfileIds;
    
        private Properties systemProperties;
    
        private Properties userProperties;
    
        private Date buildStartTime;
    
        private boolean resolveDependencies;
    
        @Deprecated
        private boolean resolveVersionRanges;
    
        private RepositoryMerging repositoryMerging = RepositoryMerging.POM_DOMINANT;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 8.9K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/ArtifactFactoryRequest.java

        }
    
        @NotThreadSafe
        class ArtifactFactoryRequestBuilder {
            private Session session;
            private String groupId;
            private String artifactId;
            private String version;
            private String classifier;
            private String extension;
            private String type;
    
            ArtifactFactoryRequestBuilder() {}
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Mar 23 05:29:39 GMT 2023
    - 5.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java

        private static final String VERSION_13_13 = "13.13";
    
        private static final String VERSION_13_14 = "13.14";
    
        private static final String VERSION_13_15 = "13.15";
    
        private static final String VERSION_13_16 = "13.16";
    
        private static final String VERSION_13_17 = "13.17";
    
        private static final String VERSION_14_0 = "14.0";
    
        private static final String VERSION_14_1 = "14.1";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 46.9K bytes
    - Viewed (0)
  6. 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 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 31K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/AbstractExecutionThreadServiceTest.java

     */
    public class AbstractExecutionThreadServiceTest extends TestCase {
    
      private final TearDownStack tearDownStack = new TearDownStack(true);
      private final CountDownLatch enterRun = new CountDownLatch(1);
      private final CountDownLatch exitRun = new CountDownLatch(1);
    
      private Thread executionThread;
      private Throwable thrownByExecutionThread;
      private final Executor exceptionCatchingExecutor =
          new Executor() {
            @Override
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 12.7K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ThreadOutputMuxer.java

    public class ThreadOutputMuxer {
        private final Iterator<ProjectSegment> projects;
    
        private final ThreadLocal<ProjectSegment> projectBuildThreadLocal = new ThreadLocal<>();
    
        private final Map<ProjectSegment, ByteArrayOutputStream> streams = new HashMap<>();
    
        private final Map<ProjectSegment, PrintStream> printStreams = new HashMap<>();
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 12.8K bytes
    - Viewed (0)
  9. android/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 26 12:43:10 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 15.7K bytes
    - Viewed (0)
  10. 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 28 03:35:10 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 9.6K bytes
    - Viewed (0)
Back to top