Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,061 for addCell (0.14 sec)

  1. guava/src/com/google/common/collect/ForwardingList.java

     * methods of the delegate. For example, overriding {@link #add} alone <b>will not</b> change the
     * behavior of {@link #addAll}, which can lead to unexpected behavior. In this case, you should
     * override {@code addAll} as well, either providing your own implementation, or delegating to the
     * provided {@code standardAddAll} method.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/AvailableToolChains.java

                    compilers.addAll(findVisualCpps());
                    compilers.add(findMinGW());
                } else if (OperatingSystem.current().isMacOsX()) {
                    compilers.addAll(findClangs(true));
                    compilers.addAll(findGccs(false));
                    compilers.addAll(findSwiftcs());
                } else {
                    compilers.addAll(findGccs(true));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/transaction/CompileTransaction.java

            Set<File> filesToDelete = new HashSet<>();
            filesToDelete.addAll(collectFilesToDelete(classesToDelete, compileOutput));
            filesToDelete.addAll(collectFilesToDelete(classesToDelete, annotationProcessorOutput));
            filesToDelete.addAll(collectFilesToDelete(classesToDelete, headerOutput));
            filesToDelete.addAll(collectFilesToDelete(resourcesToDelete.get(CLASS_OUTPUT), compileOutput));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/analysis-api-standalone-native/tests/org/jetbrains/kotlin/analysis/api/standalone/konan/fir/test/cases/session/builder/testUtils.kt

        val testKlib = KtTestUtil.tmpDir("testLibrary").resolve("library.klib").toPath()
    
        val arguments = buildList {
            ktFiles.mapTo(this) { it.absolutePathString() }
            addAll(listOf("-produce", "library"))
            addAll(listOf("-output", testKlib.absolutePathString()))
        }
    
        val compileResult = callCompilerWithoutOutputInterceptor(arguments.toTypedArray())
    
        check(compileResult.exitCode == ExitCode.OK) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Nov 16 13:31:53 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/analysis-api-fir-generator/src/org/jetbrains/kotlin/analysis/api/fir/generator/rendererrs/AbstractDiagnosticsDataClassRenderer.kt

        protected fun collectImports(diagnosticList: HLDiagnosticList): Collection<String> = buildSet {
            addAll(defaultImports)
            for (diagnostic in diagnosticList.diagnostics) {
                diagnostic.original.psiType.collectClassNamesTo(this)
                diagnostic.parameters.forEach { diagnosticParameter ->
                    addAll(collectImportsForDiagnosticParameter(diagnosticParameter))
                }
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 18 18:42:40 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/suggest/converter/ReadingConverterChain.java

                while ((s = queue.poll()) != null && convertedTexts.size() <= getMaxReadingNum()) {
                    final List<String> results = converter.convert(s, field, lang);
                    convertedTexts.addAll(results);
                }
                queue.addAll(convertedTexts);
            }
    
            return convertedTexts;
        }
    
        public void addConverter(final ReadingConverter converter) {
            converters.add(converter);
        }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/opensearch/extension/kuromoji/index/analysis/KuromojiPartOfSpeechFilterFactory.java

            super(indexSettings, name, settings);
            List<String> wordList = Analysis.parseWordList(env, settings, "stoptags", s -> s);
            if (wordList != null) {
                stopTags.addAll(wordList);
            } else {
                stopTags.addAll(JapaneseAnalyzer.getDefaultStopTags());
            }
        }
    
        @Override
        public TokenStream create(TokenStream tokenStream) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

        private <T> Collection<T> getExtensionComponents(Collection<MavenProject> projects, Class<T> role) {
            Collection<T> foundComponents = new LinkedHashSet<>();
            foundComponents.addAll(lookup.lookupList(role));
            foundComponents.addAll(getProjectScopedExtensionComponents(projects, role));
            return foundComponents;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/LoggingIntegrationTest.groovy

        def quiet(String... msgs) {
            quietMessages.addAll(msgs)
        }
        def error(String... msgs) {
            errorMessages.addAll(msgs)
        }
        def warning(String... msgs) {
            warningMessages.addAll(msgs)
        }
        def lifecycle(String... msgs) {
            warningMessages.addAll(msgs)
        }
        def info(String... msgs) {
            infoMessages.addAll(msgs)
        }
        def debug(String... msgs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-development/src/integTest/resources/org/gradle/compile/daemon/ParallelCompilerDaemonIntegrationTest/shared/GroovyClass.groovy

            return new GroovyClass(concat(files, other));
        }
    
        private Iterable<File> concat(List<File> files1, Collection<File> files2) {
            List<File> result = new ArrayList<File>();
            result.addAll(files1);
            result.addAll(files2);
            return result;
        }
    
        @Override
        public boolean equals(Object obj) {
            if (obj == this) {
                return true;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:27:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top