Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 134 for someInt (0.24 sec)

  1. src/runtime/signal_darwin_amd64.go

    		// than it does for an attempt to access a valid but unmapped address.
    		// OS X 10.9.2 mishandles the malformed address case, making it look like
    		// a user-generated signal (like someone ran kill -SEGV ourpid).
    		// We pass user-generated signals to os/signal, or else ignore them.
    		// Doing that here - and returning to the faulting code - results in an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 23:07:11 UTC 2022
    - 4K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/kotlin/dsl/tooling/builders/r68/AbstractKotlinDslScriptsModelCrossVersionSpec.groovy

            }
    
            return new BuildSpec(
                scripts: [
                    init: init,
                    someInit: someInit,
                    settings: file("settings.gradle.kts")
                ],
                jars: [
                    init: initJar,
                    someInit: someInitJar
                ]
            )
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. hack/dev-push-conformance.sh

    # This script builds some binaries and then the conformance image.
    # REGISTRY and VERSION must be set.
    # Example usage:
    #   $ export REGISTRY=gcr.io/someone
    #   $ export VERSION=v1.4.0-testfix
    #   ./hack/dev-push-conformance.sh
    # That will build and push gcr.io/someone/conformance-amd64:v1.4.0-testfix
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT="$(dirname "${BASH_SOURCE[0]}")/.."
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 08 02:46:11 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. .github/DISCUSSION_TEMPLATE/questions.yml

          description: |
            Please add a self-contained, [minimal, reproducible, example](https://stackoverflow.com/help/minimal-reproducible-example) with your use case.
    
            If I (or someone) can copy it, run it, and see it right away, there's a much higher chance I (or someone) will be able to help you.
    
          placeholder: |
            from fastapi import FastAPI
    
            app = FastAPI()
    
    
            @app.get("/")
            def read_root():
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Aug 03 15:59:41 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. src/main/webapp/js/admin/plugins/form-validator/lang/pt.js

    Unido",badStrength:"Senha muito fraca",badNumberOfSelectedOptionsStart:"Selecione pelo menos",badNumberOfSelectedOptionsEnd:" alternativa(s)",badAlphaNumeric:"Use somente caracteres alfanuméricos (letras a-z e números)",badAlphaNumericExtra:" e",wrongFileSize:"O arquivo selecionado é maior que o tamanho máximo permitido (%s)",wrongFileType:"Somente arquivos %s são permitidos",groupCheckedRangeStart:"Por favor, escolha entre ",groupCheckedTooFewStart:"Por favor, escolha pelo menos ",groupCheckedTooManyStart:"Por...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/body-multiple-params.md

    E o **FastAPI** vai manipulá-los, mandar para você os dados corretos na sua função, e validar e documentar o schema correto na *operação de rota*.
    
    Você também pode declarar valores singulares para serem recebidos como parte do corpo.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. src/runtime/cgo/signal_ios_arm64.s

    // mach thread port as EXC_BAD_ACCESS. As the segfault may have happened
    // in C code, we first need to load_g then call xx_cgo_panicmem.
    //
    //	R1 - LR at moment of fault
    //	R2 - PC at moment of fault
    TEXT xx_cgo_panicmem(SB),NOSPLIT|NOFRAME,$0
    	// If in external C code, we need to load the g register.
    	BL  runtime·load_g(SB)
    	CMP $0, g
    	BNE ongothread
    
    	// On a foreign thread.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 06 22:54:58 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  8. pilot/pkg/xds/util.go

    package xds
    
    import (
    	"fmt"
    	"strings"
    )
    
    func atMostNJoin(data []string, limit int) string {
    	if limit == 0 || limit == 1 {
    		// Assume limit >1, but make sure we dpn't crash if someone does pass those
    		return strings.Join(data, ", ")
    	}
    	if len(data) == 0 {
    		return ""
    	}
    	if len(data) < limit {
    		return strings.Join(data, ", ")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 1021 bytes
    - Viewed (0)
  9. CODE_OF_CONDUCT.md

    
    ## Conflict Resolution
    
    Conflicts in an open source project can take many forms, from someone having a bad day and using harsh and hurtful language in the issue queue, to more serious instances such as sexist/racist statements or threats of violence, and everything in between.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 05 18:43:16 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  10. prow/config/calico.md

    ```shell
    sed -ie "s?docker.io?gcr.io/istio-testing?g" calico.yaml
    ```
    
    In order to upgrade versions of calico we'll need to update the version below and then have someone with the ability to push run the following:
    
    ```shell
    export VERSION=v3.27.0
    
    crane cp {docker.io,gcr.io/istio-testing}/calico/cni:"${VERSION}"
    crane cp {docker.io,gcr.io/istio-testing}/calico/node:"${VERSION}"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 16:19:34 UTC 2024
    - 793 bytes
    - Viewed (0)
Back to top