Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for impacted (0.42 sec)

  1. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

          call1.execute()
        }.also { expected ->
          assertThat(expected.message).isEqualTo("timeout")
        }
    
        // Confirm that a subsequent request on the same connection is not impacted.
        val call2 = client.newCall(Request(server.url("/")))
        val response2 = call2.execute()
        assertThat(response2.body.string()).isEqualTo("A")
    
        // Confirm that the connection was reused.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                }
            }
            return true;
        }
    
        /*
         * When a node exits the graph, its constraints need to be cleaned up.
         * This means:
         * * Rescheduling any deferred selection impacted by a constraint coming from this node
         * * Making sure we no longer are registered as pending interest on nodes pointed by constraints
         */
        private void cleanupConstraints() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	s := newAmbientTestServer(t, testC, testNW)
    
    	// Add 2 pods with the "a" label, and one without.
    	// We should get an event for the new Service and the two *Pod* IPs impacted
    	s.addPods(t, "127.0.0.1", "pod1", "sa1", map[string]string{"app": "a"}, nil, true, corev1.PodRunning)
    	s.assertEvent(t, s.podXdsName("pod1"))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    The above example would be written:
    ```
    tasks {
        named("wrapper") // returns TaskProvider<Task>
    }
    ```
    
    Groovy DSL build scripts and the Gradle API are not impacted by this.
    
    [[deprecated_invalid_url_decoding]]
    ==== Deprecated invalid URL decoding behavior
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    This was <<#unique_attribute_sets,previously deprecated>>.
    
    The <<variant_model.adoc#outgoing_variants_report,`outgoingVariants` report>> will warn about this for impacted configurations.
    
    ==== Toolchain-based tasks for JVM projects
    
    Starting with Gradle 8.0, all core Java tasks that have toolchain support are now using toolchains unconditionally.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

        }
    
        def "uses importing pom dependency management over imported pom definition with same group ID and artifact ID "() {
            given:
    
            def imported = tmpDir.file("imported.xml") << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>different-group</groupId>
        <artifactId>imported</artifactId>
        <version>different-version</version>
    
        <dependencyManagement>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserProfileTest.groovy

        }
    
        def "uses dependency management section from imported POM in active profile to define defaults for main POM body dependency"() {
            given:
            def imported = tmpDir.file("imported.xml") << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>different-group</groupId>
        <artifactId>imported</artifactId>
        <version>different-version</version>
    
        <dependencyManagement>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/buildlist.go

    //
    //  1. (The import invariant.) Every module that provides a package transitively
    //     imported by any package or test in the main module is included as a root.
    //     This follows by induction from (1) and (3) above. Transitively-imported
    //     packages loaded during this invocation are marked with pkgInAll (1),
    //     and by hypothesis any transitively-imported packages loaded in previous
    //     invocations were already roots in rs (3).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

        EXPLICIT,
    
        /** Implicitly imported from package. */
        PACKAGE,
    
        /** Explicitly imported by Kotlin default. For example, `kotlin.String`. */
        DEFAULT_EXPLICIT,
    
        /** Star imported (star import) by user. */
        STAR,
    
        /** Star imported (star import) by Kotlin default. */
        DEFAULT_STAR;
    
        fun hasHigherPriorityThan(that: ImportKind): Boolean = this < that
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/load.go

    // package is known to match the "all" meta-pattern.
    // A package matches the "all" pattern if:
    // 	- it is in the main module, or
    // 	- it is imported by any test in the main module, or
    // 	- it is imported by another package in "all", or
    // 	- the main module specifies a go version ≤ 1.15, and the package is imported
    // 	  by a *test of* another package in "all".
    //
    // When graph pruning is in effect, we want to spot-check the graph-pruning
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
Back to top