Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 208 for xcTest (0.18 sec)

  1. docs/fr/docs/alternatives.md

    C'est un plug-in pour Flask, qui relie Webargs, Marshmallow et APISpec.
    
    Il utilise les informations de Webargs et Marshmallow pour générer automatiquement des schémas OpenAPI, en utilisant APISpec.
    
    C'est un excellent outil, très sous-estimé. Il devrait être beaucoup plus populaire que de nombreux plug-ins Flask. C'est peut-être dû au fait que sa documentation est trop concise et abstraite.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_convergence.txt

    #
    # If we naively iterate 'go mod tidy' until the dependency graph converges, this
    # scenario may fail to converge.
    
    # The import graph used in this test looks like:
    #
    # m --- x
    #       |
    #       x_test --- y
    #
    # The module dependency graph of m is initially empty.
    # Modules x and y look like:
    #
    # x.1 (provides package x that imports y, but does not depend on module y)
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cover_dep_loop.txt

    [short] skip
    [compiler:gccgo] skip
    
    # coverdep2/p1's xtest imports coverdep2/p2 which imports coverdep2/p1.
    # Make sure that coverage on coverdep2/p2 recompiles coverdep2/p2.
    
    go test -short -cover coverdep2/p1
    stdout 'coverage: 100.0% of statements' # expect 100.0% coverage
    
    -- go.mod --
    module coverdep2
    
    go 1.16
    -- p1/p.go --
    package p1
    
    func F() int { return 1 }
    -- p1/p_test.go --
    package p1_test
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 550 bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/parser.go

    				// To parse the expression starting with name, expand
    				// the call sequence we would get by passing in name
    				// to parser.expr, and pass in name to parser.pexpr.
    				p.xnest++
    				x = p.binaryExpr(p.pexpr(x, false), 0)
    				p.xnest--
    			}
    			// Analyze expression x. If we can split x into a type parameter
    			// name, possibly followed by a type parameter type, we consider
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  5. docs/fr/docs/deployment/versions.md

    De nouvelles fonctionnalités sont ajoutées fréquemment, des bogues sont corrigés régulièrement et le code est
    amélioré continuellement.
    
    C'est pourquoi les versions actuelles sont toujours `0.x.x`, cela reflète que chaque version peut potentiellement
    recevoir des changements non rétrocompatibles. Cela suit les conventions de <a href="https://semver.org/" class="external-link"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Oct 31 17:39:54 UTC 2022
    - 4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/initorder.go

    }
    
    func (a nodeQueue) Less(i, j int) bool {
    	x, y := a[i], a[j]
    
    	// Prioritize all constants before non-constants. See go.dev/issue/66575/.
    	_, xConst := x.obj.(*Const)
    	_, yConst := y.obj.(*Const)
    	if xConst != yConst {
    		return xConst
    	}
    
    	// nodes are prioritized by number of incoming dependencies (1st key)
    	// and source order (2nd key)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 22:06:51 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/go/types/initorder.go

    }
    
    func (a nodeQueue) Less(i, j int) bool {
    	x, y := a[i], a[j]
    
    	// Prioritize all constants before non-constants. See go.dev/issue/66575/.
    	_, xConst := x.obj.(*Const)
    	_, yConst := y.obj.(*Const)
    	if xConst != yConst {
    		return xConst
    	}
    
    	// nodes are prioritized by number of incoming dependencies (1st key)
    	// and source order (2nd key)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. src/time/zoneinfo_windows_test.go

    	}
    	if err != nil { // Fallback to Std and Dlt
    		if std, _, err = k.GetStringValue("Std"); err != nil {
    			t.Fatalf("cannot read CEST Std registry key: %s", err)
    		}
    		if dlt, _, err = k.GetStringValue("Dlt"); err != nil {
    			t.Fatalf("cannot read CEST Dlt registry key: %s", err)
    		}
    	}
    
    	name, err := ToEnglishName(std, dlt)
    	if err != nil {
    		t.Fatalf("toEnglishName failed: %s", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 07:20:34 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_std_vendor.txt

    go list -test -f '{{range .Deps}}{{.}}{{"\n"}}{{end}}' net/http
    ! stdout ^golang.org/x/net/http2/hpack
    stdout ^vendor/golang.org/x/net/http2/hpack
    
    -- go.mod --
    module m
    
    -- x.go --
    package x
    
    -- x_test.go --
    package x
    import "testing"
    import _ "net/http"
    func Test(t *testing.T) {}
    
    -- broken/go.mod --
    module broken
    -- broken/http.go --
    package broken
    
    import (
    	_ "net/http"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 16:11:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. docs/fr/docs/deployment/https.md

    # À propos de HTTPS
    
    Il est facile de penser que HTTPS peut simplement être "activé" ou non.
    
    Mais c'est beaucoup plus complexe que cela.
    
    !!! tip
        Si vous êtes pressé ou si cela ne vous intéresse pas, passez aux sections suivantes pour obtenir des instructions étape par étape afin de tout configurer avec différentes techniques.
    
    Pour apprendre les bases du HTTPS, du point de vue d'un utilisateur, consultez <a href="https://howhttps.works/"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Oct 31 17:45:30 UTC 2022
    - 4.1K bytes
    - Viewed (0)
Back to top