Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 109 for exportable (0.37 sec)

  1. docs/en/docs/deployment/manually.md

     │                      │
     ╰──────────────────────╯
    
    <font color="#3465A4">INFO    </font> Importing module <font color="#4E9A06">main</font>
    <font color="#3465A4">INFO    </font> Found importable FastAPI app
    
     ╭─ <font color="#8AE234"><b>Importable FastAPI app</b></font> ─╮
     │                          │
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. docs/orchestration/README.md

    The term cloud-native revolves around the idea of applications deployed as micro services, that scale well. It is not about just retrofitting monolithic applications onto modern container based compute environment. A cloud-native application is portable and resilient by design, and can scale horizontally by simply replicating. Modern orchestration platforms like Kubernetes, DC/OS make replicating and managing containers in huge clusters easier than ever.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  3. src/crypto/sha1/sha1block.go

    // license that can be found in the LICENSE file.
    
    package sha1
    
    import (
    	"math/bits"
    )
    
    const (
    	_K0 = 0x5A827999
    	_K1 = 0x6ED9EBA1
    	_K2 = 0x8F1BBCDC
    	_K3 = 0xCA62C1D6
    )
    
    // blockGeneric is a portable, pure Go version of the SHA-1 block step.
    // It's used by sha1block_generic.go and tests.
    func blockGeneric(dig *digest, p []byte) {
    	var w [16]uint32
    
    	h0, h1, h2, h3, h4 := dig.h[0], dig.h[1], dig.h[2], dig.h[3], dig.h[4]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 21:27:16 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall.go

    // you want to view documentation for freebsd/arm on linux/amd64, set $GOOS
    // to freebsd and $GOARCH to arm.
    //
    // The primary use of this package is inside other packages that provide a more
    // portable interface to the system, such as "os", "time" and "net".  Use
    // those packages rather than this one if you can.
    //
    // For details of the functions and data types in this package consult
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. cluster/get-kube-binaries.sh

    echo "Add '${KUBE_ROOT}/client/bin' to your PATH to use newly-installed binaries."
    
    if "${DOWNLOAD_TESTS_TAR}"; then
      TESTS_PORTABLE_TAR="kubernetes-test-portable.tar.gz"
      download_tarball "${KUBE_ROOT}/test" "${TESTS_PORTABLE_TAR}" || true
      if [[ -f "${KUBE_ROOT}/test/${TESTS_PORTABLE_TAR}" ]]; then
        echo "Extracting ${TESTS_PORTABLE_TAR} into ${KUBE_ROOT}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 13 10:57:41 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. src/runtime/debug/stack.go

    		if err != nil {
    			return err
    		}
    		runtime.KeepAlive(f) // prevent finalization before dup
    		fd = uintptr(fd2)
    	}
    	if prev := runtime_setCrashFD(fd); prev != ^uintptr(0) {
    		// We use NewFile+Close because it is portable
    		// unlike syscall.Close, whose parameter type varies.
    		os.NewFile(prev, "").Close() // ignore error
    	}
    	return nil
    }
    
    //go:linkname runtime_setCrashFD runtime.setCrashFD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/performanceGraph.js

                renderGraph(
                    allDataJson[chart.field],
                    {
                        tickFormatter: (index, value) => {
                            if (index === parseInt(index, 10)) { // portable way to check if sth is an integer
                                const executionLabel = allDataJson.executionLabels[index];
                                return executionLabel ? executionLabel.date : "";
                            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  8. build/lib/release.sh

      kube::release::package_test_platform_tarballs
    
      kube::log::status "Building tarball: test portable"
    
      local release_stage="${RELEASE_STAGE}/test/kubernetes"
      rm -rf "${release_stage}"
      mkdir -p "${release_stage}"
    
      # First add test image files and other portable sources so we can create
      # the portable test tarball.
      mkdir -p "${release_stage}/test/images"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  9. .teamcity/README.md

    If you have ktlint errors, you can automatically fix them by running `mvn com.github.gantsign.maven:ktlint-maven-plugin:1.1.1:format`.
    
    ## How the configuration works
    
    We use Kotlin portable DSL to store TeamCity configuration, which means you can easily create a new pipeline
    based on a specific branch. Currently, we have two pipelines: `master` and `release`, but you can easily create
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 23:02:25 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/syscall.go

    // you want to view documentation for freebsd/arm on linux/amd64, set $GOOS
    // to freebsd and $GOARCH to arm.
    //
    // The primary use of this package is inside other packages that provide a more
    // portable interface to the system, such as "os", "time" and "net".  Use
    // those packages rather than this one if you can.
    //
    // For details of the functions and data types in this package consult
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top