Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 208 for generating (0.06 seconds)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/Javadocs.java

    import org.gradle.api.file.RegularFileProperty;
    import org.gradle.api.provider.Property;
    
    import java.net.URI;
    
    /**
     * Configuration for generating Javadocs
     */
    public abstract class Javadocs {
        /**
         * Link to Java API to use when generating Javadoc
         */
        public abstract Property<URI> getJavaApi();
    
        /**
         * Package list of the Java API used to generate Javadoc offline
         */
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Aug 21 16:24:54 GMT 2025
    - 1.8K bytes
    - Click Count (0)
  2. dbflute_fess/dfprop/databaseInfoMap.dfprop

            #  A table with the mark can be treated as documents but no generating classes.
            #
            #; tableExceptList = list:{FOO_TABLE@gen ; prefix:FOO_@gen ; suffix:_FOO ; contain:_FOO_}
    
            # o tableTargetList: (NotRequired - Default list:{})
            #  If you want to include some tables in generating target expressly,
            #  you should specify the list of target table hints.
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 7.3K bytes
    - Click Count (0)
  3. buildscripts/gen-ldflags.go

    	if commitUnix, err = exec.Command(cmdName, cmdArgs...).Output(); err != nil {
    		fmt.Fprintln(os.Stderr, "Error generating git commit-time: ", err)
    		os.Exit(1)
    	}
    
    	t, err := time.Parse(time.RFC3339, strings.TrimSpace(string(commitUnix)))
    	if err != nil {
    		fmt.Fprintln(os.Stderr, "Error generating git commit-time: ", err)
    		os.Exit(1)
    	}
    
    	return t.UTC()
    }
    
    func main() {
    	var version string
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Thu Jun 16 23:10:48 GMT 2022
    - 3.3K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

        /**
         * Queue for thumbnail generation tasks containing URL, content, and path tuples.
         */
        protected BlockingQueue<Tuple3<String, String, String>> thumbnailTaskQueue;
    
        /**
         * Flag indicating whether thumbnail generation is currently in progress.
         */
        protected volatile boolean generating;
    
        private Thread thumbnailQueueThread;
    
        /**
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 27K bytes
    - Click Count (0)
  5. requirements-docs-tests.txt

    # For mkdocstrings and tests
    httpx >=0.23.0,<1.0.0
    # For linting and generating docs versions
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Tue Nov 04 08:38:16 GMT 2025
    - 108 bytes
    - Click Count (0)
  6. requirements.txt

    -e .[all]
    -r requirements-tests.txt
    -r requirements-docs.txt
    -r requirements-translations.txt
    prek==0.2.22
    # For generating screenshots
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Fri Dec 19 12:44:55 GMT 2025
    - 147 bytes
    - Click Count (0)
  7. dbflute_fess/dfprop/basicInfoMap.dfprop

    # /---------------------------------------------------------------------------
    # basicInfoMap: (Required)
    #
    # The basic information for the tasks of DBFlute.
    # You should specify before your first generating.
    #
    # Core Properties:
    # o database: (Required)
    # o targetLanguage: (Required)
    # o targetContainer: (Required)
    # o packageBase: (Required)
    #
    # Adjustment Properties:
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 9.2K bytes
    - Click Count (0)
  8. docs/en/docs/advanced/generate-clients.md

    # Generating SDKs { #generating-sdks }
    
    Because **FastAPI** is based on the **OpenAPI** specification, its APIs can be described in a standard format that many tools understand.
    
    This makes it easy to generate up-to-date **documentation**, client libraries (<abbr title="Software Development Kits">**SDKs**</abbr>) in multiple languages, and **testing** or **automation workflows** that stay in sync with your code.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 10.1K bytes
    - Click Count (1)
  9. dbflute_fess/dfprop/sourceCopyright.dfprop

    # sourceCopyright: (NotRequired - Default '')
    #
    # The copyright for all class sources.
    # This property is NOT map style.
    # You should specify before your first generating.
    #
    #/*
    # * Copyright(c) DBFlute TestCo.,TestLtd. All Rights Reserved.
    # */
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Oct 31 23:35:14 GMT 2015
    - 344 bytes
    - Click Count (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/AbstractExtractor.java

            }
            return extractorFactory;
        }
    
        /**
         * Creates a temporary file.
         * @param prefix The prefix string to be used in generating the file's name.
         * @param suffix The suffix string to be used in generating the file's name.
         * @param directory The directory in which the file is to be created, or null if the default temporary-file directory is to be used.
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Wed Nov 19 08:55:01 GMT 2025
    - 4.6K bytes
    - Click Count (0)
Back to Top