Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 281 for uris (0.04 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenScopesTestIntegTest.groovy

                        myPub(MavenPublication) {
                            from components.java
                        }
                    }
                    repositories {
                        maven { url "${mavenRepo.uri}" }
                    }
                }
                """
    
            when:
            succeeds "publishMyPubPublicationToMavenRepository"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/swiftpm/SwiftPackageManagerDependencyMappingIntegrationTest.groovy

                            from(GitVersionControlSpec) {
                                url = uri('${lib1Repo.url}')
                            }
                        }
                        withModule("test:lib2") {
                            from(GitVersionControlSpec) {
                                url = uri('${lib2Repo.url}')
                            }
                        }
                    }
                }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/UnsafeConfigurationResolutionDeprecationIntegrationTest.groovy

                        println project(':bar').configurations.bar.files
                    }
                }
    
                project(':bar') {
                    repositories {
                        maven { url '${mavenRepo.uri}' }
                    }
    
                    configurations {
                        bar
                    }
    
                    dependencies {
                        bar "test:test-jar:1.0"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/cli-runtime/pkg/resource/builder.go

    // Mapper returns a copy of the current mapper.
    func (b *Builder) Mapper() *mapper {
    	mapper := *b.mapper
    	return &mapper
    }
    
    // URL accepts a number of URLs directly.
    func (b *Builder) URL(httpAttemptCount int, urls ...*url.URL) *Builder {
    	for _, u := range urls {
    		b.paths = append(b.paths, &URLVisitor{
    			URL:              u,
    			StreamVisitor:    NewStreamVisitor(nil, b.mapper, u.String(), b.schema),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  5. pkg/wasm/convert_test.go

    				extensionConfigMap["no-remote-load"],
    			},
    			wantErr: false,
    		},
    		{
    			name: "no uri",
    			input: []*core.TypedExtensionConfig{
    				extensionConfigMap["no-http-uri"],
    			},
    			wantOutput: []*core.TypedExtensionConfig{
    				extensionConfigMap["no-http-uri"],
    			},
    			wantErr: true,
    		},
    		{
    			name: "secret",
    			input: []*core.TypedExtensionConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    				rbacv1helpers.NewRule("*").URLs("*").RuleOrDie(),
    			},
    		},
    		{
    			// a role which provides just enough power to determine if the server is
    			// ready and discover API versions for negotiation
    			ObjectMeta: metav1.ObjectMeta{Name: "system:discovery"},
    			Rules: []rbacv1.PolicyRule{
    				rbacv1helpers.NewRule("get").URLs(
    					"/livez", "/readyz", "/healthz",
    					"/version", "/version/",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ArtifactDependenciesIntegrationTest.groovy

            doLast { files.each { } }
        }
    }
    project(':a') {
        repositories {
            maven { url '${repo1.uri}' }
        }
        dependencies {
            compile 'org.gradle.test:external1:1.0'
        }
    }
    project(':b') {
        repositories {
            maven { url '${repo2.uri}' }
        }
        dependencies {
            compile 'org.gradle.test:external1:1.0'
        }
    }
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java

        }
    
        /**
         * Calculates the relative path from the base directory of the parent to the parent directory of the base directory
         * of the child. The general idea is to adjust inherited URLs to match the project layout (in SCM).
         *
         * <p>This calculation is only a heuristic based on our conventions.
         * In detail, the algo relies on the following assumptions: <ul>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. platforms/jvm/scala/src/main/java/org/gradle/api/internal/tasks/scala/ZincScalaCompilerFactory.java

            try {
                List<URL> urls = new ArrayList<URL>();
                for (File file : classpath.getAsFiles()) {
                    // Having the bridge in the classloader breaks zinc
                    if (!file.toString().contains("scala3-sbt-bridge")) {
                        urls.add(file.toURI().toURL());
                    }
                }
                if (parent != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionRemoteResolveIntegrationTest.groovy

            and:
            buildFile << """
    repositories {
        ivy {
            url "${repo1.uri}"
            ivyPattern "${repo2.uri}/[organisation]/[module]/[revision]/ivy-[revision].xml"
            artifactPattern "${repo2.uri}/[organisation]/[module]/[revision]/[artifact]-[revision].[ext]"
        }
    }
    configurations { compile }
    dependencies {
      compile 'org.test:projectA:1.+'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 41.4K bytes
    - Viewed (0)
Back to top