Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 492 for checkers (0.31 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/override/ComponentOverrideMetadataResolveIntegrationTest.groovy

                    maybeHeadOrGetArtifact(type: 'distribution-tgz')
                }
            }
            succeeds 'checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    edge('org:foo', 'org:foo:1.0') {
                        byConstraint()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 03 18:15:26 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesDependencyResolveIntegTest.groovy

            }
    
            then:
            fails ':checkDeps'
            failureHasCause("Could not find any version that matches org.utils:api:${selector}.")
    
            when:
            resetExpectations()
            repositoryInteractions {
                'org.utils:api' {
                    expectHeadVersionListing()
                }
            }
    
            then:
            fails ':checkDeps'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesUseCasesIntegrationTest.groovy

                    if (!fixConflict) {
                        expectGetMetadata()
                    }
                }
            }
            if (fixConflict) {
                run ':checkDeps'
            } else {
                fails ':checkDeps'
            }
    
            then:
            if (fixConflict) {
                resolve.expectGraph {
                    root(":", ":test:") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  4. src/go/types/index.go

    	}
    	return expr.Indices[0]
    }
    
    // index checks an index expression for validity.
    // If max >= 0, it is the upper bound for index.
    // If the result typ is != Typ[Invalid], index is valid and typ is its (possibly named) integer type.
    // If the result val >= 0, index is valid and val is its constant int value.
    func (check *Checker) index(index ast.Expr, max int64) (typ Type, val int64) {
    	typ = Typ[Invalid]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:05 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/wasmplugin_test.go

    			Method: "GET",
    		},
    		Count: 1,
    		Retry: echo.Retry{
    			Options: append(defaultOptions, options...),
    		},
    		Check: checker,
    	}
    
    	_ = cltInstance.CallOrFail(ctx, httpOpts)
    }
    
    func sendTrafficToHostname(ctx framework.TestContext, checker echo.Checker, hostname string, options ...retry.Option) {
    	ctx.Helper()
    	if len(GetClientInstances()) == 0 {
    		ctx.Fatal("there is no client")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/instantiate.go

    			return nil, fmt.Errorf("got %d type arguments but %s has %d type parameters", len(targs), orig, len(tparams))
    		}
    		if i, err := (*Checker)(nil).verify(nopos, tparams, targs, ctxt); err != nil {
    			return nil, &ArgumentError{i, err}
    		}
    	}
    
    	inst := (*Checker)(nil).instance(nopos, orig_, targs, nil, ctxt)
    	return inst, nil
    }
    
    // instance instantiates the given original (generic) function or type with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/ForcingUsingStrictlyPlatformAlignmentTest.groovy

                module('kotlin') tries('2.9.4.1') alignsTo('2.7.9') byVirtualPlatform()
                module('annotations') tries('2.9.4.1') alignsTo('2.7.9') byVirtualPlatform()
            }
            run ':checkDeps'
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    edge("org:core:2.9.4", "org:core:2.7.9") {
                        byConstraint('belongs to platform org:platform:2.7.9')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesRulesIntegrationTest.groovy

                'cglib:cglib-nodep:3.2.5' {
                    expectGetMetadata()
                }
                'cglib:cglib:3.2.5' {
                    expectGetMetadata()
                }
            }
            fails ':checkDeps'
    
            then:
            def variant = 'runtime'
            if (!isGradleMetadataPublished() && useIvy()) {
                variant = 'default'
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/StrictVersionsInPlatformCentricDevelopmentIntegrationTest.groovy

            }
            if (platformType == ENFORCED_PLATFORM) {
                // issue with enforced platform: the forced version is always used and the conflict is 'hidden'
                succeeds ':checkDeps'
            } else {
                fails ':checkDeps'
            }
            then:
            def platformVariant = platformType == MODULE ? 'runtime' : 'apiElements'
            (platformType == ENFORCED_PLATFORM && !failed) || failure.assertHasCause(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/PlatformResolveIntegrationTest.groovy

                    conf 'org.test:depC:1.0'
                }
    """
            checkConfiguration("conf")
            resolve.expectDefaultConfiguration("runtime")
    
            expect:
            succeeds 'checkDeps'
            //Shape of the graph is not checked as bug was failing resolution altogether
        }
    
        def 'platform upgrade does not leave orphaned edges'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top