Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,030 for doPing (0.09 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultLocalConfigurationMetadataBuilder.java

            // no smoke-tested plugins add constraints, so we should be able to safely throw an exception here
            // if we find any - but we'll avoid doing so for now to avoid breaking any existing builds and to
            // remain consistent with the behavior for dependencies.
            for (DependencyConstraint dependencyConstraint : configuration.getDependencyConstraints()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

                }
            }
            return builder.build();
        }
    
        /**
         * Determines if a producer variant provides all the requested capabilities. When doing so it does
         * NOT consider capability versions, as they will be used later in the engine during conflict resolution.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. src/net/lookup_plan9.go

    		if len(f) < 3 {
    			continue
    		}
    		name = append(name, absDomainName(f[2]))
    	}
    	return
    }
    
    // concurrentThreadsLimit returns the number of threads we permit to
    // run concurrently doing DNS lookups.
    func concurrentThreadsLimit() int {
    	return 500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:08:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_version_alignment.adoc

    ====
    
    It is important that the platform contains a constraint on all the components, but also that each component has a dependency on the platform.
    By doing this, whenever Gradle will add a dependency to a module of the platform on the graph, it will _also_ include constraints on the other modules of the platform.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  5. mockwebserver/src/main/kotlin/mockwebserver3/MockResponse.kt

            setHeader("Upgrade", "websocket")
            webSocketListener = listener
          }
    
        /**
         * Configures this response to be served as a response to an HTTP CONNECT request, either for
         * doing HTTPS through an HTTP proxy, or HTTP/2 prior knowledge through an HTTP proxy.
         *
         * When a new connection is received, all in-tunnel responses are served before the connection is
         * upgraded to HTTPS or HTTP/2.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilder.java

                    // use a soft reference to allow the state to be GCed
                    //
                    // Also keep a soft reference to try to avoid recreating the state when it is queried during
                    // work graph calculation and then later during resolution. It would be better if the configuration
                    // implementation took care of this instead
                    reference = new SoftReference<>(state);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/QueuesTest.java

        assertInterruptibleDrained(q);
        assertUninterruptibleDrained(q);
      }
    
      private void assertInterruptibleDrained(BlockingQueue<Object> q) {
        // nothing to drain, thus this should wait doing nothing
        try {
          assertEquals(0, Queues.drain(q, ImmutableList.of(), 0, 10, MILLISECONDS));
        } catch (InterruptedException e) {
          throw new AssertionError();
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 12K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    
        private Loader getLoader(ProtectionDomain domain) {
            // This is a very verbose Java 6-compatible way of doing
            // return loaders.computeIfAbsent(domain, this::createLoaderForDomain).
            Loader transformLoader = loaders.get(domain);
            if (transformLoader == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-jvm-test-suite/src/main/java/org/gradle/api/plugins/jvm/internal/DefaultJvmTestSuite.java

                target.getTestTask().configure(this::initializeTestFramework);
            });
    
            // This is a workaround for strange behavior from the Kotlin plugin.
            // It seems Kotlin is not doing this anymore in the newest version, so we should re-evaluate
            // whether we need withDependencies anymore.
            //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 22:19:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

                }
            }
        }
    
        /**
         * This test simulates what should be the new, better way of doing latest.release.
         * Here, we set a value on the consuming configuration, which mandates a release status.
         * This means that we will evict versions which are "integration", even during dynamic
         * version selection. The nice thing is that it uses attribute matching now, and we prove
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top