Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 236 for isIsolated (0.17 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonInitScriptHandlingIntegrationTest.groovy

    import spock.lang.Issue
    
    /**
     * Tests that init scripts are used from the _clients_ GRADLE_HOME, not the daemon server's.
     */
    @Issue("https://issues.gradle.org/browse/GRADLE-2408")
    @LeaksFileHandles("isolated daemons are not always stopped in time")
    //may fail with 'Unable to delete file: daemon.out.log'
    @Requires(value = IntegTestPreconditions.NotEmbeddedExecutor, reason = "tests a real Gradle distribution")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractClassChangeIncrementalCompilationIntegrationTest.groovy

            run language.compileTaskName
    
            then:
            outputs.recompiledClasses 'AccessedFromPrivateClass', 'SomeClass', 'SomeClass$Foo'
        }
    
        def "detects deletion of an isolated source class with an inner class"() {
            def a = source """class A {
                class InnerA {}
            }"""
            source "class B {}"
    
            outputs.snapshot { run language.compileTaskName }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  3. tests/integration/pilot/multiplecontrolplanes/main_test.go

    func TestMain(m *testing.M) {
    	// nolint: staticcheck
    	framework.
    		NewSuite(m).
    		RequireMultiPrimary().
    		// Requires two CPs with specific names to be configured.
    		Label(label.CustomSetup).
    		// We are deploying two isolated environments, which CNI doesn't support.
    		// We could deploy one of the usergroups as the CNI owner, but for now we skip
    		SkipIf("CNI is not suppored", func(ctx resource.Context) bool {
    			c, _ := istio.DefaultConfig(ctx)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 16:52:52 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. tests/testdata/config/none.yaml

    # It is important to update the tests in ../envoy/v2 which verify the number of generated listeners.
    
    # This is the first test using the new isolated model, you can use it as a template to create more
    # isolated tests. It should be possible to also apply it to real k8s.
    
    # TODO: the IP addresses are not namespaced yet, so must be unique on the mesh (flat namespace) including in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 22 21:13:54 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/filters/wrap.go

    		if err == http.ErrAbortHandler {
    			// Honor the http.ErrAbortHandler sentinel panic value
    			//
    			// If ServeHTTP panics, the server (the caller of ServeHTTP) assumes
    			// that the effect of the panic was isolated to the active request.
    			// It recovers the panic, logs a stack trace to the server error log,
    			// and either closes the network connection or sends an HTTP/2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromKotlinDslIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.isolated
    
    
    import spock.lang.Issue
    
    class IsolatedProjectsAccessFromKotlinDslIntegrationTest extends AbstractIsolatedProjectsIntegrationTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/SystemClassLoaderTest.groovy

    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    
    /**
     * Verifies that Gradle doesn't pollute the system class loader.
     *
     * This is important for plugins that need to use isolated class loaders to avoid conflicts.
     *
     * When running without the daemon, success is dependant on the start scripts doing the right thing.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/fixtures/AbstractVisualStudioIntegrationSpec.groovy

            if (OperatingSystem.current().isWindows()) {
                return file('gradlew.bat')
            }
            return file('gradlew')
        }
    
        protected MSBuildExecutor getMsbuild() {
            // Gradle needs to be isolated so that msbuild does not leave behind daemons
            assert executer.distribution.gradleHomeDir != null
            assert !executer.usesSharedDaemons()
            def executer = new MSBuildExecutor(testDirectory, toolChain)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  9. maven-core/plugin-manager.txt

    h3. Creation of an isolated classloader
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 18 22:45:13 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/flow-services/src/main/kotlin/org/gradle/internal/flow/services/BuildFlowScope.kt

    import org.gradle.api.flow.FlowProviders
    import org.gradle.api.flow.FlowScope
    import org.gradle.internal.extensions.stdlib.uncheckedCast
    import org.gradle.internal.instantiation.InstantiatorFactory
    import org.gradle.internal.isolated.IsolationScheme
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import java.util.Optional
    import javax.inject.Inject
    
    
    @NonExtensible
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:59:39 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top