Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for privasi (0.24 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

            collector.processThisReference(thisReference)
        }
    }
    
    private class ElementsToShortenCollector(
        private val shortenOptions: ShortenOptions,
        private val shorteningContext: FirShorteningContext,
        private val towerContextProvider: FirTowerDataContextProvider,
        private val containingFile: KtFile,
        private val selection: TextRange,
        private val classShortenStrategy: (FirClassLikeSymbol<*>) -> ShortenStrategy,
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:51:33 GMT 2024
    - 69.5K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

        private final ModelPathTranslator modelPathTranslator;
        private final ModelUrlNormalizer modelUrlNormalizer;
        private final SuperPomProvider superPomProvider;
        private final InheritanceAssembler inheritanceAssembler;
        private final ProfileSelector profileSelector;
        private final ProfileInjector profileInjector;
        private final PluginManagementInjector pluginManagementInjector;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 61.5K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        private File basedir;
    
        private Path rootDirectory;
    
        private Set<Artifact> resolvedArtifacts;
    
        private ArtifactFilter artifactFilter;
    
        private Set<Artifact> artifacts;
    
        private Artifact parentArtifact;
    
        private Set<Artifact> pluginArtifacts;
    
        private List<ArtifactRepository> remoteArtifactRepositories;
    
        private List<ArtifactRepository> pluginArtifactRepositories;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/CharMatcher.java

          return c <= '\u007f';
        }
      }
    
      /** Implementation that matches characters that fall within multiple ranges. */
      private static class RangesMatcher extends CharMatcher {
    
        private final String description;
        private final char[] rangeStarts;
        private final char[] rangeEnds;
    
        RangesMatcher(String description, char[] rangeStarts, char[] rangeEnds) {
          this.description = description;
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.7K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

            interfaceMap);
      }
    
      private interface Interface1 {}
    
      private interface Interface2 {}
    
      private interface Interface3<T> extends Iterable<T> {}
    
      private interface Interface12 extends Interface1, Interface2 {}
    
      private static class Class1 implements Interface1 {}
    
      private static final class NoInterface {}
    
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 88.7K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

        private static final Pattern EXPRESSION_NAME_PATTERN = Pattern.compile("\\$\\{(.+?)}");
        private static final Pattern EXPRESSION_PROJECT_NAME_PATTERN = Pattern.compile("\\$\\{(project.+?)}");
    
        private static final String ILLEGAL_FS_CHARS = "\\/:\"<>|?*";
    
        private static final String ILLEGAL_VERSION_CHARS = ILLEGAL_FS_CHARS;
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 13:13:07 GMT 2024
    - 73.1K bytes
    - Viewed (0)
  7. guava/src/com/google/common/base/CharMatcher.java

          return c <= '\u007f';
        }
      }
    
      /** Implementation that matches characters that fall within multiple ranges. */
      private static class RangesMatcher extends CharMatcher {
    
        private final String description;
        private final char[] rangeStarts;
        private final char[] rangeEnds;
    
        RangesMatcher(String description, char[] rangeStarts, char[] rangeEnds) {
          this.description = description;
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCallResolver.kt

                }
            }
        }
    
        private fun FirCallableSymbol<*>.toKtSignature(): KtCallableSignature<KtCallableSymbol> =
            firSymbolBuilder.callableBuilder.buildCallableSignature(this)
    
        private fun FirClassLikeSymbol<*>.toKtSymbol(): KtClassLikeSymbol = firSymbolBuilder.classifierBuilder.buildClassLikeSymbol(this)
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 70.8K bytes
    - Viewed (1)
  9. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

        private final Logger logger = LoggerFactory.getLogger(getClass());
        private final ModelBuilder modelBuilder;
        private final ModelProcessor modelProcessor;
        private final ProjectBuildingHelper projectBuildingHelper;
        private final MavenRepositorySystem repositorySystem;
        private final org.eclipse.aether.RepositorySystem repoSystem;
        private final RemoteRepositoryManager repositoryManager;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

          implements StrongValueEntry<K, V, StrongKeyStrongValueEntry<K, V>> {
        @CheckForNull private volatile V value = null;
    
        private StrongKeyStrongValueEntry(K key, int hash) {
          super(key, hash);
        }
    
        @Override
        @CheckForNull
        public final V getValue() {
          return value;
        }
    
        private static final class LinkedStrongKeyStrongValueEntry<K, V>
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 91.9K bytes
    - Viewed (0)
Back to top