Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 104 for outdirs (0.13 sec)

  1. docs/fr/docs/deployment/docker.md

    ---
    
    Avec ces informations et ces outils, passez à la section suivante pour tout combiner.
    
    ## Cluster en mode Docker Swarm avec Traefik et HTTPS
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  2. build/common.sh

    # *_OUTPUT_BINPATH - location where final binaries are placed.  If the remote
    #                    is really remote, this is the stuff that has to be copied
    #                    back.
    # OUT_DIR can come in from the Makefile, so honor it.
    readonly LOCAL_OUTPUT_ROOT="${KUBE_ROOT}/${OUT_DIR:-_output}"
    readonly LOCAL_OUTPUT_SUBPATH="${LOCAL_OUTPUT_ROOT}/dockerized"
    readonly LOCAL_OUTPUT_BINPATH="${LOCAL_OUTPUT_SUBPATH}/bin"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modcmd/vendor.go

    	"cmd/go/internal/imports"
    	"cmd/go/internal/load"
    	"cmd/go/internal/modload"
    	"cmd/go/internal/str"
    
    	"golang.org/x/mod/module"
    )
    
    var cmdVendor = &base.Command{
    	UsageLine: "go mod vendor [-e] [-v] [-o outdir]",
    	Short:     "make vendored copy of dependencies",
    	Long: `
    Vendor resets the main module's vendor directory to include all packages
    needed to build and test all the main module's packages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 14:19:59 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  4. docs/fr/docs/python-types.md

    Ces annotations de type constituent une syntaxe spéciale qui permet de déclarer le <abbr title="par exemple : str, int, float, bool">type</abbr> d'une variable.
    
    En déclarant les types de vos variables, cela permet aux différents outils comme les éditeurs de texte d'offrir un meilleur support.
    
    Ce chapitre n'est qu'un **tutoriel rapide / rappel** sur les annotations de type Python.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  5. hack/update-codegen.sh

    GENERATED_FILE_PREFIX="${GENERATED_FILE_PREFIX:-zz_generated.}"
    UPDATE_API_KNOWN_VIOLATIONS="${UPDATE_API_KNOWN_VIOLATIONS:-}"
    API_KNOWN_VIOLATIONS_DIR="${API_KNOWN_VIOLATIONS_DIR:-"${KUBE_ROOT}/api/api-rules"}"
    
    OUT_DIR="_output"
    BOILERPLATE_FILENAME="hack/boilerplate/boilerplate.generatego.txt"
    APPLYCONFIG_PKG="k8s.io/client-go/applyconfigurations"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_pods.go

    		}
    		return 0, 0, err
    	}
    	outUids, err := exec.Command(cmd, kubeletUser).Output()
    	if err != nil {
    		return 0, 0, fmt.Errorf("error retrieving additional ids for user %q", kubeletUser)
    	}
    	outGids, err := exec.Command(cmd, "-g", kubeletUser).Output()
    	if err != nil {
    		return 0, 0, fmt.Errorf("error retrieving additional gids for user %q", kubeletUser)
    	}
    	if string(outUids) != string(outGids) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FilePropertyIntegrationTest.groovy

        @Optional @OutputFile
        final RegularFileProperty outFile = project.objects.fileProperty()
    
        @Optional @OutputDirectory
        final DirectoryProperty outDir = project.objects.directoryProperty()
    
        @TaskAction
        def go() { }
    }
    
        task doNothing(type: SomeTask)
    """
    
            when:
            run("doNothing")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 24.7K bytes
    - Viewed (0)
  8. docs/fr/docs/features.md

    ### Testé
    
    * 100% <abbr title="La quantité de code qui est testé automatiquement">de couverture de test</abbr>.
    * 100% <abbr title="Annotation de types Python, avec cela votre éditeur et autres outils externes peuvent vous fournir un meilleur support">d'annotations de type</abbr> dans le code.
    * Utilisé dans des applications mises en production.
    
    ## Fonctionnalités de Starlette
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

            // so we can load the fingerprint for build scripts and other files from included builds
            // without violating file system invariants.
            registerWatchableBuildDirectories(entryDetails.rootDirs)
    
            loadGradleProperties()
    
            return checkFingerprintAgainstLoadedProperties(entryDetails, layout).also { result ->
                if (result !== CheckedFingerprint.Valid) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaBasePlugin.java

                    classesTask.setGroup(LifecycleBasePlugin.BUILD_GROUP);
                    classesTask.setDescription("Assembles " + sourceSet.getOutput() + ".");
                    classesTask.dependsOn(sourceSet.getOutput().getDirs());
                    classesTask.dependsOn(sourceSet.getCompileJavaTaskName());
                    classesTask.dependsOn(sourceSet.getProcessResourcesTaskName());
                })
            );
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 19 22:14:22 UTC 2023
    - 28.3K bytes
    - Viewed (0)
Back to top