Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,295 for nDests (0.11 sec)

  1. pkg/test/framework/components/echo/echotest/run.go

    	nDests := len(deployments)
    	if nDests < n {
    		ctx.Fatalf("want to run with %d destinations but there are only %d total", n, nDests)
    	}
    	for i := 0; i < nDests; i += n {
    		start := i
    		if start+n-1 >= nDests {
    			// re-use a few destinations to fit the entire slice in
    			start = nDests - n
    		}
    		out = append(out, deployments[start:start+n])
    	}
    	return
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 27 22:08:42 UTC 2023
    - 13K bytes
    - Viewed (0)
  2. docs/fr/docs/alternatives.md

    Générer le schéma OpenAPI automatiquement, à partir du même code qui définit la sérialisation et la validation.
    
    ### <a href="https://nestjs.com/" class="external-link" target="_blank">NestJS</a> (et <a href="https://angular.io/" class="external-link" target="_blank">Angular</a>)
    
    Ce n'est même pas du Python, NestJS est un framework JavaScript (TypeScript) NodeJS inspiré d'Angular.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  3. docs/fr/docs/benchmarks.md

    ## Tests de performance et rapidité
    
    Lorsque vous vérifiez les tests de performance, il est commun de voir plusieurs outils de différents types comparés comme équivalents.
    
    En particulier, on voit Uvicorn, Starlette et FastAPI comparés (parmi de nombreux autres outils).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:49:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/tests/tests.go

    package tests
    
    import (
    	_ "embed"
    	"fmt"
    	"go/ast"
    	"go/token"
    	"go/types"
    	"regexp"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/passes/internal/analysisutil"
    )
    
    //go:embed doc.go
    var doc string
    
    var Analyzer = &analysis.Analyzer{
    	Name: "tests",
    	Doc:  analysisutil.MustExtractDoc(doc, "tests"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  5. .github/workflows/tests.yml

        - name: go mod package cache
          uses: actions/cache@v4
          with:
            path: ~/go/pkg/mod
            key: ${{ runner.os }}-go-${{ matrix.go }}-${{ hashFiles('tests/go.mod') }}
    
        - name: Tests
          run: GITHUB_ACTION=true GORM_DIALECT=sqlite ./tests/tests_all.sh
    
      mysql:
        strategy:
          matrix:
            dbversion: ['mysql/mysql-server:latest', 'mysql:5.7']
            go: ['1.22', '1.21', '1.20']
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  6. tests/integration/tests.mk

    # In presubmit, this target runs a minimal set. In postsubmit, all tests are run
    .PHONY: test.integration.kube.environment
    test.integration.kube.environment: | $(JUNIT_REPORT) check-go-tag
    ifeq (${JOB_TYPE},postsubmit)
    	$(call run-test,./tests/integration/...)
    else
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/build_acl_windows.txt

    cmp $WORK\exe-acl.txt $WORK\src-acl.txt
    
    # The file written to the guest-allowed directory should give Guests control.
    grep 'BUILTIN\\Guests\s+Allow' $WORK\guest-acl.txt
    
    # The file written to the ordinary directory should not.
    ! grep 'BUILTIN\\Guests\s+Allow' $WORK\exe-acl.txt
    
    
    -- TestACL/go.mod --
    module TestACL
    -- TestACL/main.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/vet/testdata/testingpkg/tests.go

    180909 <******@****.***> 1627212074 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 26 21:34:18 UTC 2021
    - 177 bytes
    - Viewed (0)
  9. src/main/resources/fess_message_fr.properties

    errors.invalid_query_unknown=La requête donnée a une condition inconnue.
    errors.invalid_query_parse_error=La requête donnée n'est pas valide.
    errors.invalid_query_sort_value=Le tri donné ({0}) n'est pas valide.
    errors.invalid_query_unsupported_sort_field=Le tri donné ({0}) n'est pas pris en charge.
    errors.invalid_query_unsupported_sort_order=L'ordre de tri donné ({0}) n'est pas pris en charge.
    
    errors.crud_invalid_mode=Mode invalide (la valeur attendue est {0}, mais c'est {1}).
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 06 22:59:17 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  10. docs/iam/policies/pbac-tests.sh

    Poorna <******@****.***> 1716056341 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top