Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 78 for Dep (0.07 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r34/ToolingApiIdeaModelCrossVersionSpec.groovy

            hasDependency(module, "f", "TEST")
        }
    
        def hasDependency(IdeaModule module, String name, String scope) {
            module.dependencies.find { IdeaModuleDependency dep ->
                dep.targetModuleName == name && dep.scope.scope == scope
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/projects/CheckProject.kt

            )
            text(
                "reverse.dep.*.additional.gradle.parameters",
                "",
                display = ParameterDisplay.NORMAL,
                allowEmpty = true,
                description = "The extra gradle parameters you want to pass to all dependencies of this build, e.g. `-PrerunAllTests` or `--no-build-cache`"
            )
            text(
                "reverse.dep.*.skip.build",
                "",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 10 05:52:18 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. cni/pkg/iptables/iptables.go

    	EnableIPv6    bool `json:"ENABLE_INBOUND_IPV6"`
    	RedirectDNS   bool `json:"REDIRECT_DNS"`
    }
    
    type IptablesConfigurator struct {
    	ext    dep.Dependencies
    	nlDeps NetlinkDependencies
    	cfg    *Config
    	iptV   dep.IptablesVersion
    	ipt6V  dep.IptablesVersion
    }
    
    func ipbuildConfig(c *Config) *iptablesconfig.Config {
    	return &iptablesconfig.Config{
    		RestoreFormat: c.RestoreFormat,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r56/ClosedProjectSubstitutionCrossVersionSpec.groovy

                            def dep = entries.find { it.path.endsWith('child1') }
                            def sourceJar = this.project(":child1").tasks.getByName("sourceJar")
                            def javadocJar = this.project(":child1").tasks.getByName("javadocJar")
                            dep.buildDependencies(sourceJar, javadocJar)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. tools/istio-iptables/pkg/capture/run.go

    	AppendOps: "-A",
    	DeleteOps: "-D",
    }
    
    type IptablesConfigurator struct {
    	ruleBuilder *builder.IptablesRuleBuilder
    	// TODO(abhide): Fix dep.Dependencies with better interface
    	ext dep.Dependencies
    	cfg *config.Config
    }
    
    func NewIptablesConfigurator(cfg *config.Config, ext dep.Dependencies) *IptablesConfigurator {
    	return &IptablesConfigurator{
    		ruleBuilder: builder.NewIptablesRuleBuilder(cfg),
    		ext:         ext,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
Back to top