Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,888 for tool (0.16 sec)

  1. misc/go_android_exec/main.go

    		return err
    	}
    
    	// Copy only the relevant subdirectories from pkg: pkg/include and the
    	// platform-native binaries in pkg/tool.
    	if err := adb("exec-out", "mkdir", "-p", path.Join(deviceGoroot, "pkg", "tool")); err != nil {
    		return err
    	}
    	if err := adb("push", filepath.Join(goroot, "pkg", "include"), path.Join(deviceGoroot, "pkg", "include")); err != nil {
    		return err
    	}
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Aug 21 17:46:57 GMT 2023
    - 15.3K bytes
    - Viewed (0)
  2. docs/en/docs/deployment/docker.md

    * Using **Kubernetes** or similar tools
    * When running on a **Raspberry Pi**
    * Using a cloud service that would run a container image for you, etc.
    
    ### Package Requirements
    
    You would normally have the **package requirements** for your application in some file.
    
    It would depend mainly on the tool you use to **install** those requirements.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 34.3K bytes
    - Viewed (0)
  3. .github/workflows/go-fips.yml

          # This should fail if grep returns non-zero exit
          - name: Test binary
            run: |
              docker run --rm minio/fips-test:latest ./minio --version
    Others
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Mar 28 23:44:49 GMT 2024
    - 1.5K bytes
    - Viewed (0)
  4. lib/time/mkzip.go

    // Usage:
    //
    //	go run ../../mkzip.go ../../zoneinfo.zip
    //
    // We use this program instead of 'zip -0 -r ../../zoneinfo.zip *' to get
    // a reproducible generator that does not depend on which version of the
    // external zip tool is used or the ordering of file names in a directory
    // or the current time.
    package main
    
    import (
    	"archive/zip"
    	"bytes"
    	"flag"
    	"fmt"
    	"hash/crc32"
    	"io/fs"
    	"log"
    	"os"
    	"path/filepath"
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Mar 04 17:32:07 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  5. architecture-standards/README.md

    ## Architecture Standards
    
    **Experimental!**
    
    We'd like to capture our architectural decisions about the build tool as [Architectural Decision Records (ADRs)](https://adr.github.io/).
    For now we just have this global repository of ADRs.
    If we see fit, we can break these out to per-platform ones, or keep a hybrid approach to having global and platform-specific ADSs.
    
    Our aim is to keep the process lightweight and approachable.
    
    Plain Text
    - Registered: Wed Feb 14 11:36:15 GMT 2024
    - Last Modified: Fri Dec 01 10:53:55 GMT 2023
    - 546 bytes
    - Viewed (0)
  6. docs/de/docs/external-links.md

    # Externe Links und Artikel
    
    **FastAPI** hat eine großartige Community, die ständig wächst.
    
    Es gibt viele Beiträge, Artikel, Tools und Projekte zum Thema **FastAPI**.
    
    Hier ist eine unvollständige Liste einiger davon.
    
    !!! tip "Tipp"
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Wed Feb 21 22:23:00 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  7. docs/en/docs/alternatives.md

    Webargs is a tool that was made to provide that on top of several frameworks, including Flask.
    
    It uses Marshmallow underneath to do the data validation. And it was created by the same developers.
    
    It's a great tool and I have used it a lot too, before having **FastAPI**.
    
    !!! info
        Webargs was created by the same Marshmallow developers.
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 23.2K bytes
    - Viewed (0)
  8. ci/official/requirements_updater/WORKSPACE

    # buildifier: disable=load-on-top
    
    workspace(name = "requirements_updater")
    
    # buildifier: disable=load-on-top
    
    load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
    
    http_archive(
        name = "bazel_skylib",
        sha256 = "74d544d96f4a5bb630d465ca8bbcfe231e3594e5aae57e1edbf17a6eb3ca2506",
        urls = [
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Fri Apr 05 22:12:56 GMT 2024
    - 1.6K bytes
    - Viewed (1)
  9. misc/go_android_exec/README

    	GOOS=android \
    	GOARCH=arm64 \
    	CC_FOR_TARGET=$NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/aarch64-linux-android21-clang \
    	./all.bash
    
    To run tests on the Android device, add the bin directory to PATH so the
    go tool can find the go_android_$GOARCH_exec wrapper generated by
    make.bash. For example, to run the go1 benchmarks
    
    	export PATH=$GOROOT/bin:$PATH
    	cd $GOROOT/test/bench/go1/
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon May 01 14:45:55 GMT 2023
    - 732 bytes
    - Viewed (0)
  10. .gitignore

    .teamcity/.mvn/.gradle-enterprise/
    /discoclient.properties
    
    # Ignore local configuration files for asdf, allowing the JDK to be configured for project (https://asdf-vm.com)
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Mon Apr 03 21:04:56 GMT 2023
    - 1.4K bytes
    - Viewed (0)
Back to top