Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 238 for getLeft (0.19 sec)

  1. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/IvyModuleDescriptorDescription.java

     *
     * @since 4.8
     * @see IvyModuleDescriptorSpec
     */
    public interface IvyModuleDescriptorDescription {
    
        /**
         * The text of this description.
         */
        Property<String> getText();
    
        /**
         * The homepage of the publication of this description.
         */
        Property<String> getHomepage();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/plugin/use/internal/PluginUseScriptBlockMetadataCompiler.java

                        ConstantExpression methodName = (ConstantExpression) call.getMethod();
                        if (isOfType(methodName, String.class)) {
                            String methodNameText = methodName.getText();
                            switch (methodNameText) {
                                case "alias":
                                    PropertyExpression fullExpression = hasSinglePropertyExpressionArgument(call);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 28 01:30:32 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JodExtractor.java

            extensionMap.put(inExt, outExt);
        }
    
        /*
         * (non-Javadoc)
         *
         * @see org.codelibs.fess.crawler.extractor.Extractor#getText(java.io.InputStream,
         * java.util.Map)
         */
        @Override
        public ExtractData getText(final InputStream in, final Map<String, String> params) {
            if (in == null) {
                throw new CrawlerSystemException("in is null.");
            }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/testers/SetHashCodeTester.java

          expectedHashCode += ((element == null) ? 0 : element.hashCode());
        }
        assertEquals(
            "A Set's hashCode() should be the sum of those of its elements.",
            expectedHashCode,
            getSet().hashCode());
      }
    
      @CollectionSize.Require(absent = CollectionSize.ZERO)
      @CollectionFeature.Require(ALLOWS_NULL_VALUES)
      public void testHashCode_containingNull() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/customModel/languageType/groovy/buildSrc/src/main/groovy/sample/markdown/MarkdownHtmlCompile.groovy

            PegDownProcessor processor = new PegDownProcessor(smartQuotes ? org.pegdown.Extensions.QUOTES : org.pegdown.Extensions.NONE)
    
            getSource().each { sourceFile ->
                String markdown = sourceFile.getText(encoding)
                String html = processor.markdownToHtml(markdown)
                File outputFile = new File(destinationDir, sourceFile.name.replace(".md", ".html"))
                outputFile.write(html, encoding)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/main/java/org/gradle/ide/visualstudio/TextProvider.java

    import org.gradle.api.Incubating;
    
    /**
     * Provides access to the content of a generated text file.
     */
    @Incubating
    public interface TextProvider {
        /**
         * The text content.
         */
        String getText();
    
        /**
         * Replace the content.
         */
        void setText(String value);
    
        /**
         * Get the content as a {@link StringBuilder}, permitting direct modification.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. platforms/software/resources/src/main/java/org/gradle/internal/resource/TextResource.java

         */
        boolean getExists() throws ResourceException;
    
        /**
         * Returns true when the content of this resource is empty. This method is may be more efficient than calling {@link #getText()} and checking the length.
         *
         * <p>Note that this method may be expensive when {@link #isContentCached()} returns false, depending on the implementation.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/ExtractorFactoryTest.java

        }
    
        public void test_addExtractor() {
            final ExtractorFactory extractorFactory = new ExtractorFactory();
            final Extractor extractor = new Extractor() {
                public ExtractData getText(final InputStream in, final Map<String, String> params) {
                    return null;
                }
            };
    
            assertNull(extractorFactory.getExtractor("test"));
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppLibWithSimpleUnitTest.groovy

        }
    
        @Override
        SourceElement getSources() {
            return empty()
        }
    
        @Override
        public void writeToProject(TestFile projectDir) {
            getMain().writeToProject(projectDir);
            getTest().writeToProject(projectDir);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/Extractor.java

    import java.io.InputStream;
    import java.util.Map;
    
    import org.codelibs.fess.crawler.entity.ExtractData;
    
    /**
     * @author shinsuke
     *
     */
    public interface Extractor {
    
        ExtractData getText(InputStream in, Map<String, String> params);
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 905 bytes
    - Viewed (0)
Back to top