Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 650 for necessarily (0.3 sec)

  1. guava-tests/test/com/google/common/io/FilesCreateTempDirTest.java

           */
          return;
        }
    
        /*
         * Only under Windows (or hypothetically when running with some other non-POSIX, ACL-based
         * filesystem) does our prod code look up the username. Thus, this test doesn't necessarily test
         * anything interesting under most environments. Still, we can run it (except for Android, at
         * least old versions), so we mostly do. This is useful because we don't actually run our CI on
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 06 17:11:11 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/ParallelProjectExecutionIntegrationTest.groovy

            fails ':a:pingServer'
    
            then:
            failure.assertHasCause('b failed')
            failure.assertHasCause('c failed')
        }
    
        def "tasks are executed when they are ready and not necessarily alphabetically"() {
            buildFile << """
                tasks.getByPath(':b:pingA').dependsOn(':a:pingA')
                tasks.getByPath(':b:pingC').dependsOn([':b:pingA', ':b:pingB'])
            """
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/AbstractValidatingProperty.java

                }
            }
        }
    
        private static boolean isPresent(@Nullable Object value) {
            if (value instanceof Provider) {
                // carefully check for presence without necessarily resolving
                return ((Provider<?>) value).isPresent();
            }
            return value != null;
        }
    
        private static boolean hasConfigurableValue(@Nullable Object value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/internal/taskgraph/CalculateTaskGraphBuildOperationType.java

         */
        public interface PlannedNode {
    
            NodeIdentity getNodeIdentity();
    
            /**
             * Returns the dependencies of this node.
             * <p>
             * Note that dependencies are not necessarily located in the same execution plan.
             */
            List<? extends NodeIdentity> getNodeDependencies();
    
        }
    
        /**
         * Identity of a local task node in the execution graph.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/GradleBuildBuilder.java

                return model;
            }
            model = new DefaultGradleBuild();
            all.put(targetBuild, model);
    
            // Make sure the project tree has been loaded and can be queried (but not necessarily configured)
            targetBuild.ensureProjectsLoaded();
    
            GradleInternal gradle = targetBuild.getMutableModel();
            addProjects(targetBuild, model);
            addIncludedBuilds(gradle, model, all);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/Call.kt

       * leaking resources callers must [close the response body][ResponseBody] or the response.
       *
       * Note that transport-layer success (receiving a HTTP response code, headers and body) does not
       * necessarily indicate application-layer success: `response` may still indicate an unhappy HTTP
       * response code like 404 or 500.
       *
       * @throws IOException if the request could not be executed due to cancellation, a connectivity
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. pkg/test/echo/common/model.go

    type Port struct {
    	// Name ascribes a human readable name for the port object. When a
    	// service has multiple ports, the name field is mandatory
    	Name string
    
    	// Port number where the service can be reached. Does not necessarily
    	// map to the corresponding port numbers for the instances behind the
    	// service.
    	Port int
    
    	// Protocol to be used for the port.
    	Protocol protocol.Instance
    
    	// TLS determines if the port will use TLS.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 05 00:22:45 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4LoggingOutputCaptureIntegrationTest.groovy

                    "Test class OkTest -> after class out\n" +
                    "Test class OkTest -> after class err\n"
                )
    
                // This test covers current behaviour, not necessarily desired behaviour
    
                def xmlReport = new JUnitXmlTestExecutionResult(testDirectory)
                def classResult = xmlReport.testClass("OkTest")
                classResult.assertTestCaseStdout("ok", is(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/TcpOutgoingConnector.java

            }
            InetEndpoint address = (InetEndpoint) destinationAddress;
            LOGGER.debug("Attempting to connect to {}.", address);
    
            // Try each address in turn. Not all of them are necessarily reachable (eg when socket option IPV6_V6ONLY
            // is on - the default for debian and others), so we will try each of them until we can connect
            List<InetAddress> candidateAddresses = address.getCandidates();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/DeclarationsInPackageProvider.kt

     * stub-indexing binary libraries). And in general, querying the symbol names provider might be faster since its sets are cached, which is
     * not necessarily the case for declaration providers (e.g. the IDE declaration provider hitting the index without caching).
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top