Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 3,537 for privasi (0.19 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

        private final PluginVersionResolver pluginVersionResolver;
        private final PluginArtifactsCache pluginArtifactsCache;
        private final MavenPluginValidator pluginValidator;
        private final List<MavenPluginConfigurationValidator> configurationValidators;
        private final PluginValidationManager pluginValidationManager;
        private final List<MavenPluginPrerequisitesChecker> prerequisitesCheckers;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 42.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirDataFlowInfoProvider.kt

                )
            }
    
            private val statements = statements.toHashSet()
    
            private val mapping = HashMap<FirElement, Optional<FirElement>>()
            private var unmappedCount = statements.size
    
            private val stack = ArrayDeque<FirElement>()
    
            operator fun get(fir: FirElement): FirElement? {
                return mapping[fir]?.getOrNull()
            }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Tue Apr 16 06:40:43 GMT 2024
    - 22.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/MinMaxPriorityQueue.java

        private <T extends B> Ordering<T> ordering() {
          return Ordering.from((Comparator<T>) comparator);
        }
      }
    
      private final Heap minHeap;
      private final Heap maxHeap;
      @VisibleForTesting final int maximumSize;
      private @Nullable Object[] queue;
      private int size;
      private int modCount;
    
      private MinMaxPriorityQueue(Builder<? super E> builder, int queueSize) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 34K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/artifact/handler/DefaultArtifactHandler.java

    /**
     */
    public class DefaultArtifactHandler implements ArtifactHandler {
        private final String type;
    
        private String extension;
    
        private String classifier;
    
        private String directory;
    
        private String packaging;
    
        private boolean includesDependencies;
    
        private String language;
    
        @Deprecated
        private boolean addedToClasspath;
    
        /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/hash/MessageDigestHashFunction.java

          }
        }
        return new MessageDigestHasher(getMessageDigest(prototype.getAlgorithm()), bytes);
      }
    
      private static final class SerializedForm implements Serializable {
        private final String algorithmName;
        private final int bytes;
        private final String toString;
    
        private SerializedForm(String algorithmName, int bytes, String toString) {
          this.algorithmName = algorithmName;
          this.bytes = bytes;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed May 25 20:32:46 GMT 2022
    - 5K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-7/plexus-classworlds-1.2-alpha-7.jar

    org/codehaus/plexus/classworlds/realm/ClassRealm.class package org.codehaus.plexus.classworlds.realm; public synchronized class ClassRealm extends java.net.URLClassLoader { private org.codehaus.plexus.classworlds.ClassWorld world; private String id; private java.util.TreeSet imports; private org.codehaus.plexus.classworlds.strategy.Strategy strategy; private ClassRealm parent; public void ClassRealm(org.codehaus.plexus.classworlds.ClassWorld, String); public void ClassRealm(org.codehaus.plexus.classworlds.ClassWorld,...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 41.6K bytes
    - Viewed (0)
  7. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt

        }
    
        private
        val projectPathToFailedTaskPaths: MutableMap<String, MutableList<String>> = mutableMapOf()
    
        private
        val projectPathToExecutedTaskPaths: MutableMap<String, MutableList<String>> = mutableMapOf()
    
        private
        val taskPathReports: Map<String, List<File>>
            get() = parameters.taskPathToReports.get()
    
        private
        val rootBuildDir: File
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Jul 28 16:19:47 GMT 2023
    - 12.5K bytes
    - Viewed (0)
  8. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AbstractFuture.java

          return super.cancel(mayInterruptIfRunning);
        }
      }
    
      private static final Logger log = Logger.getLogger(AbstractFuture.class.getName());
    
      private State state;
      private V value;
      private @Nullable Future<? extends V> delegate;
      private @Nullable Throwable throwable;
      private boolean mayInterruptIfRunning;
      private List<Listener> listeners;
    
      protected AbstractFuture() {
        state = State.PENDING;
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jan 22 19:37:41 GMT 2024
    - 12.3K bytes
    - Viewed (0)
  9. mockwebserver-junit5/src/main/kotlin/mockwebserver3/junit5/internal/MockWebServerExtension.kt

      private val ExtensionContext.resource: ServersForTest
        get() =
          getStore(namespace).getOrComputeIfAbsent(this.uniqueId) {
            ServersForTest()
          } as ServersForTest
    
      private class ServersForTest {
        private val servers = mutableMapOf<String, MockWebServer>()
        private var started = false
    
        fun server(name: String): MockWebServer {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Feb 11 12:12:36 GMT 2024
    - 4.1K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

        @Inject
        private Logger logger;
    
        @Inject
        private ArtifactFactory artifactFactory;
    
        @Inject
        private ArtifactResolver artifactResolver;
    
        @Inject
        private ArtifactRepositoryFactory artifactRepositoryFactory;
    
        @Inject
        private Map<String, ArtifactRepositoryLayout> layouts;
    
        @Inject
        private WagonManager wagonManager;
    
        @Inject
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 31.6K bytes
    - Viewed (0)
Back to top