Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 160 for Dep (0.02 sec)

  1. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingSnapshotFromPluginRepositorySpec.groovy

            buildFile << """
                buildscript {
                    configurations.classpath {
                        withDependencies { dependencies ->
                           dependencies.configureEach { dep ->
                                dep.attributes {
                                    attribute(Attribute.of("org.gradle.status", String.class), "integration")
                                }
                            }
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 12:20:28 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. tools/istio-clean-iptables/pkg/cmd/cleanup_test.go

    	"strings"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    
    	testutil "istio.io/istio/pilot/test/util"
    	"istio.io/istio/tools/istio-clean-iptables/pkg/config"
    	"istio.io/istio/tools/istio-iptables/pkg/constants"
    	dep "istio.io/istio/tools/istio-iptables/pkg/dependencies"
    )
    
    func constructTestConfig() *config.Config {
    	return &config.Config{
    		ProxyUID:           constants.DefaultProxyUID,
    		ProxyGID:           constants.DefaultProxyUID,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/cmd/root.go

    type IptablesError struct {
    	Error    error
    	ExitCode int
    }
    
    func ProgramIptables(cfg *config.Config) error {
    	var ext dep.Dependencies
    	if cfg.DryRun {
    		log.Info("running iptables in dry-run mode, no rule changes will be made")
    		ext = &dep.DependenciesStub{}
    	} else {
    		ext = &dep.RealDependencies{
    			CNIMode:          cfg.CNIMode,
    			NetworkNamespace: cfg.NetworkNamespace,
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 17:36:41 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyConstraintHandler.java

        }
    
        @Override
        public DependencyConstraint enforcedPlatform(Object notation, Action<? super DependencyConstraint> configureAction) {
            DependencyConstraint dep = enforcedPlatform(notation);
            configureAction.execute(dep);
            return dep;
        }
    
        private DependencyConstraint doCreate(Object dependencyNotation, @Nullable Action<? super DependencyConstraint> configureAction) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:10:09 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ConfigurationRoleUsageIntegrationTest.groovy

                configurations.res.canBeResolved = true
                configurations.res.canBeDeclared = false
    
                configurations.dep.canBeConsumed = false
                configurations.dep.canBeResolved = false
                configurations.dep.canBeDeclared = true
            """
    
            expect:
            expectConsumableChanging(":cons", true)
            expectResolvableChanging(":cons", false)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 01:42:49 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

                                null),
                        dependency.getScope().id());
            }
            if (!managed && "".equals(dep.getScope())) {
                dep = dep.setScope(DependencyScope.COMPILE.id());
            }
            return dep;
        }
    
        @Override
        public List<org.eclipse.aether.artifact.Artifact> toArtifacts(Collection<Artifact> artifacts) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. maven-compat/src/test/java/org/apache/maven/project/inheritance/t10/ProjectInheritanceTest.java

            assertTrue(a.getScope().equals("test"), "Incorrect scope for " + a.getDependencyConflictId());
    
            // transitive dep, overridden b depMgmt
            assertTrue(b.getScope().equals("runtime"), "Incorrect scope for " + b.getDependencyConflictId());
    
            // direct dep, overrides depMgmt
            assertTrue(c.getScope().equals("runtime"), "Incorrect scope for " + c.getDependencyConflictId());
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/notations/DependencyClassPathNotationConverterTest.groovy

            def out2 = parse(GRADLE_API)
    
            then:
            out2.is out
        }
    
        def "assigns component identifier to dependency"() {
            expect:
            def dep = parse(notation)
            dep.targetComponentId.displayName == displayName
    
            where:
            notation        | displayName
            GRADLE_API      | "Gradle API"
            GRADLE_TEST_KIT | "Gradle TestKit"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. hack/update-vendor.sh

        # list all module dependencies
        for dep in $(join "${tidy_unordered}" "${tmp_go_deps}"); do
          # record the relationship (put dep first, because we want to sort leaves first)
          echo "${dep} ${repo}" >> "${TMP_DIR}/tidy_deps.txt"
          # switch the required version to an explicit v0.0.0 (rather than an unknown v0.0.0-00010101000000-000000000000)
          go mod edit -require "${dep}@v0.0.0"
        done
      )
    done < "${tidy_unordered}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/capture/run_test.go

    	"net/netip"
    	"path/filepath"
    	"reflect"
    	"strings"
    	"testing"
    
    	testutil "istio.io/istio/pilot/test/util"
    	"istio.io/istio/tools/istio-iptables/pkg/config"
    	"istio.io/istio/tools/istio-iptables/pkg/constants"
    	dep "istio.io/istio/tools/istio-iptables/pkg/dependencies"
    )
    
    func constructTestConfig() *config.Config {
    	return &config.Config{
    		ProxyPort:               "15001",
    		InboundCapturePort:      "15006",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top