Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 492 for checkers (0.38 sec)

  1. src/runtime/mgcpacer_test.go

    		t.Fatal("GC utilization not within acceptable bounds")
    	}
    	if s := results[n-1].heapScannable; s < 0 {
    		t.Fatal("heapScannable is negative")
    	}
    	if e.checker == nil {
    		t.Fatal("test-specific checker is missing")
    	}
    
    	// Run the test-specific checker.
    	e.checker(t, results)
    }
    
    type gcCycle struct {
    	allocRate     float64
    	scanRate      float64
    	growthRate    float64
    	scannableFrac float64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionResolveIntegrationTest.groovy

                }
    """
    
            when:
            repositoryInteractions {
                'org.test:projectA' {
                    expectVersionListing()
                }
            }
            runAndFail 'checkDeps'
    
            then:
            failureHasCause 'Could not find any matches for org.test:projectA:latest.integration as no versions of org.test:projectA are available.'
    
            when:
            resetExpectations()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  3. src/go/types/assignments.go

    	err.report()
    }
    
    // initVars type-checks assignments of initialization expressions orig_rhs
    // to variables lhs.
    // If returnStmt is non-nil, initVars type-checks the implicit assignment
    // of result expressions orig_rhs to function result parameters lhs.
    func (check *Checker) initVars(lhs []*Var, orig_rhs []ast.Expr, returnStmt ast.Stmt) {
    	context := "assignment"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/reproducibility/FailOnDynamicVersionsResolveIntegrationTest.groovy

                'org:test:1.0'()
            }
    
            when:
            repositoryInteractions {
                'org:test:1.0' {
                    expectResolve()
                }
            }
            succeeds ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    project(":other", "test:other:unspecified") {
                        configuration('default')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/gmm/GradleModuleMetadataAvailableAtIntegrationTest.groovy

                'org:moduleA:1.0' {
                    expectGetMetadata()
                }
                'org:external:1.0' {
                    expectResolve()
                }
            }
            run ":checkDeps"
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module("org:moduleA:1.0") {
                        noArtifacts()
                        module("org:external:1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionConstraintsIntegrationTest.groovy

                    expectGetArtifact()
                }
                'org:bar:1.0' {
                    expectGetMetadata()
                    expectGetArtifact()
                }
            }
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(':', ':test:') {
                    edge('org:foo:{strictly 1.0}', 'org:foo:1.0')
                    module('org:bar:1.0') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/stmt.go

    			}
    		}
    	}
    }
    
    func (check *Checker) openScope(node syntax.Node, comment string) {
    	check.openScopeUntil(node, syntax.EndPos(node), comment)
    }
    
    func (check *Checker) openScopeUntil(node syntax.Node, end syntax.Pos, comment string) {
    	scope := NewScope(check.scope, node.Pos(), end, comment)
    	check.recordScope(node, scope)
    	check.scope = scope
    }
    
    func (check *Checker) closeScope() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/preflight/checks_test.go

    	var tokenTest = []struct {
    		p        []Checker
    		expected bool
    		output   string
    	}{
    		{[]Checker{}, true, ""},
    		{[]Checker{preflightCheckTest{"warning"}}, true, "\t[WARNING preflightCheckTest]: warning\n"}, // should just print warning
    		{[]Checker{preflightCheckTest{"error"}}, false, ""},
    		{[]Checker{preflightCheckTest{"test"}}, false, ""},
    		{[]Checker{DirAvailableCheck{Path: "/does/not/exist"}}, true, ""},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api.go

    // Package types2 declares the data types and implements
    // the algorithms for type-checking of Go packages. Use
    // Config.Check to invoke the type checker for a package.
    // Alternatively, create a new type checker with NewChecker
    // and invoke it incrementally by calling Checker.Files.
    //
    // Type-checking consists of several interdependent phases:
    //
    // Name resolution maps each identifier (syntax.Name) in the program to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerIntegrationTest.groovy

            }
    
            then:
            succeeds 'checkDeps'
        }
    
        void "doesn't fallback to repository listing when empty list version is returned"() {
            withLister([testA: []])
            given:
            buildFile << """
                dependencies {
                    conf "org:testA:+"
                }
            """
    
            when:
            fails 'checkDeps'
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top