Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 565 for utilio (0.2 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/precondition/TestPrecondition.java

        /**
         * Returns true if the precondition is satisfied.
         * @throws Exception if the precondition cannot be checked
         */
        boolean isSatisfied() throws Exception;
    
        /**
         * Utility method to check if a precondition class is satisfied.
         *
         * @param preconditionClass the class of the precondition to be checked
         * @return true if the precondition is satisfied
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubeletconfig/configfiles/configfiles.go

    	kubeletconfig "k8s.io/kubernetes/pkg/kubelet/apis/config"
    	kubeletscheme "k8s.io/kubernetes/pkg/kubelet/apis/config/scheme"
    	utilcodec "k8s.io/kubernetes/pkg/kubelet/kubeletconfig/util/codec"
    	utilfs "k8s.io/kubernetes/pkg/util/filesystem"
    )
    
    // Loader loads configuration from a storage layer
    type Loader interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-utils.go

    Harshavardhana <******@****.***> 1717798724 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. docs/fr/docs/async.md

    Dans les versions précédentes de Python, vous auriez utilisé des *threads* ou <a href="https://www.gevent.org/" class="external-link" target="_blank">Gevent</a>.  Mais le code aurait été bien plus difficile à comprendre, débugger, et concevoir.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/ProjectReportTaskIntegrationTest.groovy

                }
            """
            file("app/build.gradle.dcl") << """
                application {
                    name = "my-app"
                }
            """
            file("util/build.gradle.dcl") << """
                utility {
                    name = "my-util"
                }
            """
    
            expect:
            succeeds("projects")
    
            outputContains("""
    
    Available software types:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:32 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-type-util.h

    // This file was GENERATED by command:
    //     pump.py gtest-type-util.h.pump
    // DO NOT EDIT BY HAND!!!
    
    // Copyright 2008 Google Inc.
    // All Rights Reserved.
    //
    // Redistribution and use in source and binary forms, with or without
    // modification, are permitted provided that the following conditions are
    // met:
    //
    //     * Redistributions of source code must retain the above copyright
    // notice, this list of conditions and the following disclaimer.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 181.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/wrapper-shared/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "Utility code shared between the wrapper and the Gradle distribution"
    
    gradlebuildJava.usedInWorkers()
    
    dependencies {
    
        api(projects.stdlibJavaExtensions)
    
        implementation(project(":files")) {
            because("We need org.gradle.internal.file.PathTraversalChecker")
        }
    
        testImplementation(project(":base-services"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 719 bytes
    - Viewed (0)
  8. docs/en/data/external_links.yml

    Dispatch - author: Stavros Korokithakis author_link: https://twitter.com/Stavros link: https://www.stavros.io/posts/fastapi-with-django/ title: Using FastAPI with Django - author: Twilio author_link: https://www.twilio.com link: https://www.twilio.com/blog/build-secure-twilio-webhook-python-fastapi title: Build a Secure Twilio Webhook with Python and FastAPI - author: Sebastián Ramírez (tiangolo) author_link: https://twitter.com/tiangolo link: https://dev.to/tiangolo/build-a-web-api-from-scratch-wit...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  9. docs/fr/docs/python-types.md

    ## Les annotations de type dans **FastAPI**
    
    **FastAPI** utilise ces annotations pour faire différentes choses.
    
    Avec **FastAPI**, vous déclarez des paramètres grâce aux annotations de types et vous obtenez :
    
    * **du support de l'éditeur**
    * **de la vérification de types**
    
    ...et **FastAPI** utilise ces mêmes déclarations pour :
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. docs/fr/docs/tutorial/body.md

    !!! note
        **FastAPI** saura que la valeur de `q` n'est pas requise grâce à la valeur par défaut `=None`.
    
        Le type `Optional` dans `Optional[str]` n'est pas utilisé par **FastAPI**, mais sera utile à votre éditeur pour améliorer le support offert par ce dernier et détecter plus facilement des erreurs de type.
    
    ## Sans Pydantic
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top