Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for Blogs (0.04 sec)

  1. docs/en/data/external_links.yml

    Learning Microservice with FastAPI - author: Ravgeet Dhillon - Twilio link: https://www.twilio.com/en-us/blog/booking-appointments-twilio-notion-fastapi title: Booking Appointments with Twilio, Notion, and FastAPI - author: Abhinav Tripathi - Microsoft Blogs link: https://devblogs.microsoft.com/cosmosdb/azure-cosmos-db-python-and-fastapi/ title: Write a Python data layer with Azure Cosmos DB and FastAPI - author: Donny Peeters author_link: https://github.com/Donnype link: https://bitestreams.com/blog/fastapi-sqlalchemy/...
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Oct 24 18:39:34 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/io/MoreFiles.java

       * will drop the {@code ":.txt"} part of the name when the file is actually created on the
       * filesystem due to NTFS's <a
       * href="https://learn.microsoft.com/en-us/archive/blogs/askcore/alternate-data-streams-in-ntfs">Alternate
       * Data Streams</a>.
       */
      public static String getFileExtension(Path path) {
        Path name = path.getFileName();
    
        // null for empty paths and root-only paths
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 16:07:00 UTC 2024
    - 35K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/MoreFiles.java

       * will drop the {@code ":.txt"} part of the name when the file is actually created on the
       * filesystem due to NTFS's <a
       * href="https://learn.microsoft.com/en-us/archive/blogs/askcore/alternate-data-streams-in-ntfs">Alternate
       * Data Streams</a>.
       */
      public static String getFileExtension(Path path) {
        Path name = path.getFileName();
    
        // null for empty paths and root-only paths
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 16:07:00 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  4. RELEASE.md

            By default, Keras always writes the logs to stdout. However, this is not
            optimal in a non-interactive environment, where you don't have access to
            stdout, but can only view the logs. You can use
            `tf.keras.utils.disable_interactive_logging()` to write the logs to ABSL
            logging. You can also use `tf.keras.utils.enable_interactive_logging()`
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Oct 22 14:33:53 UTC 2024
    - 735.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

                return new ApiResult(this);
            }
        }
    
        public static class ApiLogsResponse<T> extends ApiResponse {
            protected List<T> logs;
            protected long total = 0;
    
            public ApiLogsResponse<T> logs(final List<T> logs) {
                this.logs = logs;
                return this;
            }
    
            public ApiLogsResponse<T> total(final long total) {
                this.total = total;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. .gitignore

    /dbflute_fess/extlib/*
    /dbflute_fess/log/*.log
    /dbflute_h2/log/*.log
    /dbflute_mysql/log/*.log
    /dbflute_oracle/log/*.log
    /src/main/webapp/WEB-INF/conf/*.properties
    /src/main/webapp/WEB-INF/db/*.lock.db
    /src/main/webapp/WEB-INF/logs/fess*
    /.settings/
    .project
    .classpath
    *.iml
    .idea
    .vscode
    .DS_Store
    /plugins/
    /modules/
    /tomcat.8080/
    dbflute_fess/output/doc/lastadoc-fess.html
    dbflute_fess/schema/project-lastadoc-fess.json
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 01:47:10 UTC 2024
    - 1023 bytes
    - Viewed (0)
  7. docs/bucket/lifecycle/setup_ilm_transition.sh

    #!/usr/bin/env bash
    
    set -x
    
    trap 'catch $LINENO' ERR
    
    # shellcheck disable=SC2120
    catch() {
    	if [ $# -ne 0 ]; then
    		echo "error on line $1"
    		for site in sitea siteb; do
    			echo "$site server logs ========="
    			cat "/tmp/${site}_1.log"
    			echo "==========================="
    			cat "/tmp/${site}_2.log"
    		done
    	fi
    
    	echo "Cleaning up instances of MinIO"
    	pkill minio
    	pkill -9 minio
    	rm -rf /tmp/multisitea
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Oct 31 22:10:24 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. compat/maven-embedder/src/main/java/org/eclipse/sisu/plexus/PlexusXmlBeanConverter.java

    import org.codehaus.plexus.util.xml.pull.XmlPullParserException;
    import org.eclipse.sisu.Priority;
    import org.eclipse.sisu.bean.BeanProperties;
    import org.eclipse.sisu.bean.BeanProperty;
    import org.eclipse.sisu.inject.Logs;
    import org.eclipse.sisu.inject.TypeArguments;
    
    /**
     * {@link PlexusBeanConverter} {@link Module} that converts Plexus XML configuration into beans.
     */
    @Singleton
    @Priority(10)
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/FessBoot.java

                op.ignoreNoFile();
                String fessLogPath = System.getProperty("fess.log.path");
                if (fessLogPath == null) {
                    fessLogPath = "../../logs";
                }
                op.replace("fess.log.path", fessLogPath.replace("\\", "/"));
            }).asYouLikeIt(resource -> {
                final Host host = resource.getHost();
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 11 21:20:39 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.29.md

    ### CVE-2024-5321: Incorrect permissions on Windows containers logs
    
    A security issue was discovered in Kubernetes clusters with Windows nodes
    where BUILTIN\Users may be able to read container logs and NT
    AUTHORITY\Authenticated Users may be able to modify container logs.
    
    **Affected Versions**:
      - kubelet <= 1.27.15
      - kubelet <= 1.28.11
      - kubelet <= 1.29.6
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Wed Oct 23 04:37:31 UTC 2024
    - 375.1K bytes
    - Viewed (1)
Back to top