Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for myConf (0.11 sec)

  1. testing/integ-test/src/integTest/groovy/org/gradle/integtests/DependencyResolutionFromTaskContextIntegrationTest.groovy

                    @OutputFile
                    abstract RegularFileProperty getOutputFile()
    
                    @Internal
                    Set<File> classpath = project.configurations["myconf"].files
                    BadTask() {
                        println("creating bad task")
                    }
                    @TaskAction
                    void printIt() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ParallelStaleOutputIntegrationTest.groovy

                    @OutputFile
                    abstract RegularFileProperty getOutputFile()
    
                    @Internal
                    Set<File> classpath = project.configurations["myconf"].files
                    BadTask() {
                        println("creating bad task")
                    }
                    @TaskAction
                    void printIt() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-provider/src/integTest/groovy/org/gradle/internal/declarativedsl/project/DeclarativeDSLCustomDependenciesExtensionsSpec.groovy

                        DependencyScopeConfiguration myConf = project.getConfigurations().dependencyScope("myConf").get();
                        DependencyScopeConfiguration myOtherConf = project.getConfigurations().dependencyScope("myOtherConf").get();
    
                        // create and wire the custom dependencies extension's dependencies to these global configurations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 10:11:12 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParserTest.groovy

            assert dd.dependencyArtifacts.size() == 2
            assertDependencyArtifact(dd, "yourartifact8-1", ["myconf1", "myconf2", "myconf3", "myconf4", "myoldconf"])
            assertDependencyArtifact(dd, "yourartifact8-2", ["myconf1", "myconf2", "myconf3", "myconf4", "myoldconf"])
    
            // Dependency artifacts with confs
            dd = getDependency(dependencies, "yourmodule9")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 33.8K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/test-full.xml

    	You can use it especially with myconf1 and myconf2, and myconf4 is not too bad too.
    		</description>
    
    		<e:someExtra>56576</e:someExtra>
    	</info>
    	<configurations>
    		<conf name="myconf1" description="desc 1" e:attr2="value2"/>
    		<conf name="myconf2" description="desc 2" visibility="public"/>
    		<conf name="myconf3" description="desc 3" visibility="private"/>
    		<conf name="myconf4" description="desc 4" extends="myconf1, myconf2"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    This looks something like:
    ```
    configurations {
      // This silently creates a configuration called "runtime"
      myConf extendsFrom runtime
    }
    ```
    
    The result of dependency resolution for your custom configuration may not be the same as Gradle 6.x or before.
    You may notice missing dependencies or artifacts.
    --
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/endpoint_builder_test.go

    			name: "region and zone",
    			ctl: testController{
    				locality: "myregion/myzone",
    			},
    			podLabels: labels.Instance{
    				"k1":                       "v1",
    				label.TopologyNetwork.Name: "mynetwork",
    			},
    			expected: labels.Instance{
    				"k1":                       "v1",
    				NodeRegionLabelGA:          "myregion",
    				NodeZoneLabelGA:            "myzone",
    				label.TopologyNetwork.Name: "mynetwork",
    			},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/authz/authorizationpolicies.go

    }
    
    // Returns true when the namespace is the root namespace.
    // It takes the MeshConfig names istio, if not the last instance found.
    func meshWidePolicy(ns string, c analysis.Context) bool {
    	mConf := fetchMeshConfig(c)
    	return mConf != nil && ns == mConf.GetRootNamespace()
    }
    
    func fetchMeshConfig(c analysis.Context) *v1alpha1.MeshConfig {
    	if meshConfig != nil {
    		return meshConfig
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 11 20:57:29 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top