Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 764 for Avery (0.04 sec)

  1. src/cmd/cover/func.go

    type Pkg struct {
    	ImportPath string
    	Dir        string
    	Error      *struct {
    		Err string
    	}
    }
    
    func findPkgs(profiles []*cover.Profile) (map[string]*Pkg, error) {
    	// Run go list to find the location of every package we care about.
    	pkgs := make(map[string]*Pkg)
    	var list []string
    	for _, profile := range profiles {
    		if strings.HasPrefix(profile.FileName, ".") || filepath.IsAbs(profile.FileName) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  2. src/cmd/go/chdir_test.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"cmd/go/internal/base"
    	"os"
    	"strings"
    	"testing"
    )
    
    func TestChdir(t *testing.T) {
    	// We want -C to apply to every go subcommand.
    	// Test that every command either has a -C flag registered
    	// or has CustomFlags set. In the latter case, the command
    	// must be explicitly tested in TestScript/chdir.
    	script, err := os.ReadFile("testdata/script/chdir.txt")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 03 12:16:35 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/atmostevery.go

    package internal
    
    import (
    	"sync"
    	"time"
    )
    
    // AtMostEvery will never run the method more than once every specified
    // duration.
    type AtMostEvery struct {
    	delay    time.Duration
    	lastCall time.Time
    	mutex    sync.Mutex
    }
    
    // NewAtMostEvery creates a new AtMostEvery, that will run the method at
    // most every given duration.
    func NewAtMostEvery(delay time.Duration) *AtMostEvery {
    	return &AtMostEvery{
    		delay: delay,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/jvm/jvm-services/src/integTest/groovy/org/gradle/jvm/toolchain/InvalidJvmInstallationReportingIntegrationTest.groovy

                    .withTasks(":sub1:exec", ":sub2:exec")
                    .run()
            }
    
            then: "invalid JVM installation warning should be printed in every build"
            results.size() == 2
            results.every { result ->
                def expectedErrorMessages = [invalidJdkHome1, invalidJdkHome2].collect {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/echotest/setup.go

    			ctx.Fatal(err)
    		}
    	}
    }
    
    func (t *T) hasSourceSetup() bool {
    	return len(t.sourceDeploymentSetup) > 0
    }
    
    // SetupForPair runs the given function for every source instance in every cluster in combination with every
    // destination service.
    //
    // Example of how long this setup lasts before the given context is cleaned up:
    //   - a/to_b/from_cluster-1
    //   - a/to_b/from_cluster-2
    //   - cleanup...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r21/TaskVisibilityCrossVersionSpec.groovy

            when:
            BuildInvocations model = withConnection { connection ->
                connection.getModel(BuildInvocations)
            }
    
            then:
            model.tasks.every { Task t -> publicTasks.contains(t.name) == t.public }
            model.taskSelectors.every { TaskSelector ts -> publicSelectors.contains(ts.name) == ts.public }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_schema_extra_example/test_tutorial004.py

    
    # Test required and embedded body parameters with no bodies sent
    def test_post_body_example():
        response = client.put(
            "/items/5",
            json={
                "name": "Foo",
                "description": "A very nice Item",
                "price": 35.4,
                "tax": 3.2,
            },
        )
        assert response.status_code == 200
    
    
    def test_openapi_schema():
        response = client.get("/openapi.json")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. src/go/ast/commentmap_test.go

    // associated with f2
    
    // f2
    func f2() {
    }
    
    func f3() {
    	i := 1 /* 1 */ + 2 // addition
    	_ = i
    }
    
    // the very last comment
    `
    
    // res maps a key of the form "line number: node type"
    // to the associated comments' text.
    var res = map[string]string{
    	" 5: *ast.File":       "the very first comment\npackage p\n",
    	" 5: *ast.Ident":      " the name is p\n",
    	" 8: *ast.GenDecl":    "imports\n",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 15:35:30 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_schema_extra_example/test_tutorial004_an.py

    
    # Test required and embedded body parameters with no bodies sent
    def test_post_body_example():
        response = client.put(
            "/items/5",
            json={
                "name": "Foo",
                "description": "A very nice Item",
                "price": 35.4,
                "tax": 3.2,
            },
        )
        assert response.status_code == 200
    
    
    def test_openapi_schema():
        response = client.get("/openapi.json")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r22/Idea13ModelCrossVersionSpec.groovy

            generatedSourceDirectories.collect { it.directory } == [file('foo')]
            generatedSourceDirectories.every { contentRoot.sourceDirectories.contains(it) }
            generatedTestDirectories.every { contentRoot.testDirectories.contains(it) }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top