Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 439 for getPost (1.29 sec)

  1. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/internal/HttpBuildCacheService.java

         *
         * @param uri Original URI
         * @return a new URI with no user info
         */
        private static URI safeUri(URI uri) {
            try {
                return new URI(uri.getScheme(), null, uri.getHost(), uri.getPort(), uri.getPath(), uri.getQuery(), uri.getFragment());
            } catch (URISyntaxException e) {
                throw UncheckedException.throwAsUncheckedException(e);
            }
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 14:13:12 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

                    if (proxy != null) {
                        Proxy p = new Proxy();
                        p.setHost(proxy.getHost());
                        p.setProtocol(proxy.getType());
                        p.setPort(proxy.getPort());
                        if (proxy.getAuthentication() != null) {
                            repo = new RemoteRepository.Builder(repo)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Feb 17 18:40:11 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaseCrossBuildResultsStore.java

                statement.setString(11, results.getTestGroup());
                statement.setString(12, resultType);
                statement.setString(13, results.getChannel());
                statement.setString(14, results.getHost());
                statement.setString(15, results.getTeamCityBuildId());
                statement.execute();
                ResultSet keys = statement.getGeneratedKeys();
                keys.next();
                return keys.getLong(1);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/virtualservice/destinationrules.go

    		if !d.checkDestinationSubset(ns, ad.Destination, destHostsAndSubsets) {
    
    			m := msg.NewReferencedResourceNotFound(r, "host+subset in destinationrule",
    				fmt.Sprintf("%s+%s", ad.Destination.GetHost(), ad.Destination.GetSubset()))
    
    			key := fmt.Sprintf(util.DestinationHost, ad.RouteRule, ad.ServiceIndex, ad.DestinationIndex)
    			if line, ok := util.ErrorLine(r, key); ok {
    				m.Line = line
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 07 15:18:05 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/testers/ListAddAllAtIndexTester.java

        assertTrue(
            "addAll(n, allPresent) should return true",
            getList().addAll(0, MinimalCollection.of(e0())));
        expectAdded(0, e0());
      }
    
      @ListFeature.Require(absent = SUPPORTS_ADD_WITH_INDEX)
      @CollectionSize.Require(absent = ZERO)
      public void testAddAllAtIndex_unsupportedAllPresent() {
        try {
          getList().addAll(0, MinimalCollection.of(e0()));
          fail("addAll(n, allPresent) should throw");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  6. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientConfigurer.java

                for (AuthenticationInternal.HostAndPort hostAndPort : hostsForAuthentication) {
                    String host = hostAndPort.getHost();
                    int port = hostAndPort.getPort();
    
                    assert host != null : "HTTP credentials and authentication require a host scope to be defined as well";
    
                    if (credentials instanceof HttpHeaderCredentials) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  7. platforms/software/resources-gcs/src/main/java/org/gradle/internal/resource/transport/gcp/gcs/GcsClient.java

                // Setting the length improves upload performance
                contentStream.setLength(contentLength);
    
                // TODO - set ACL here if necessary
                String bucket = destination.getHost();
                String path = cleanResourcePath(destination);
                StorageObject objectMetadata = new StorageObject().setName(path);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:20 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/testers/ListRemoveTester.java

        E duplicate = arrayAndDuplicate.duplicate;
    
        int firstIndex = getList().indexOf(duplicate);
        int initialSize = getList().size();
        assertTrue("remove(present) should return true", getList().remove(duplicate));
        assertTrue(
            "After remove(duplicate), a list should still contain the duplicate element",
            getList().contains(duplicate));
        assertFalse(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 09 20:10:38 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonParameters.java

            jvmOptions.setDebug(debug);
        }
    
        public void setDebugPort(int debug) {
            jvmOptions.getDebugOptions().getPort().set(debug);
        }
    
        public void setDebugHost(String host) {
            jvmOptions.getDebugOptions().getHost().set(host);
        }
    
        public void setDebugSuspend(boolean suspend) {
            jvmOptions.getDebugOptions().getSuspend().set(suspend);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/MainWithXCTestSourceElement.java

        public abstract SwiftSourceElement getMain();
        public abstract XCTestSourceElement getTest();
    
        @Override
        public List<XCTestSourceFileElement> getTestSuites() {
            return getTest().getTestSuites();
        }
    
        @Override
        public List<SourceFile> getFiles() {
            return Lists.newArrayList(Iterables.concat(getMain().getFiles(), getTest().getFiles()));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top