Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for withChild (0.57 sec)

  1. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/ClassLoaderStructureProvider.java

            // Add the Gradle API filter between the user classloader and the worker infrastructure classloader
            return new HierarchicalClassLoaderStructure(workerExtensionSpec)
                    .withChild(gradleApiFilter)
                    .withChild(userSpec);
        }
    
        public ClassLoaderStructure getInProcessClassLoaderStructure(final Iterable<File> additionalClasspath, Class<?>... classes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:35 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/daemon/DaemonGroovyCompiler.java

                new HierarchicalClassLoaderStructure(classLoaderRegistry.getGradleWorkerExtensionSpec())
                    .withChild(getMinimalGradleFilter())
                    .withChild(targetGroovyClasspath)
                    .withChild(gradleAndUserFilter)
                    .withChild(compilerClasspath);
    
            return new DaemonForkOptionsBuilder(forkOptionsFactory)
                .javaForkOptions(javaForkOptions)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/HierarchicalClassLoaderStructure.java

            this.self = self;
            this.parent = parent;
        }
    
        public HierarchicalClassLoaderStructure withChild(ClassLoaderSpec spec) {
            HierarchicalClassLoaderStructure childNode = new HierarchicalClassLoaderStructure(spec, this);
            return childNode;
        }
    
        @Override
        public ClassLoaderSpec getSpec() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r33/DisabledTaskExecutionOnIncludedBuildsCrossVersionSpec.groovy

            def includedSelector = invocations[0].taskSelectors[0]
    
            when:
            withBuild { BuildLauncher launcher ->
                launcher.forLaunchables(includedSelector)
            }
    
            then:
            thrown(BuildException)
    
            when:
            withBuild { BuildLauncher launcher ->
                launcher.forLaunchables(includedTask)
            }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r10rc1/PassingCommandLineArgumentsCrossVersionSpec.groovy

            file("build.gradle") << """
            logger.debug("debugging stuff")
            logger.info("infoing stuff")
    """
    
            when:
            String debug = withBuild { it.withArguments('-d') }.standardOutput
    
            and:
            String info = withBuild { it.withArguments('-i') }.standardOutput
    
            then:
            debug.count("debugging stuff") == 1
            debug.count("infoing stuff") == 1
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TapiAgentInstrumentationCrossVersionSpec.groovy

            when:
            runDumpTaskWithTapi()
    
            then:
            agentWasNotApplied()
        }
    
        private void runDumpTaskWithTapi() {
            withConnection {
                buildOutput = withBuild {
                    it.forTasks("hello")
                }.stdout.toString()
            }
        }
    
        private void agentWasApplied() {
            agentStatusWas(true)
        }
    
        private void agentWasNotApplied() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/config_test.go

    		}
    		return true, nil
    	}); err != nil {
    		t.Fatal(err)
    	}
    	checkPath(server.URL+"/healthz", http.StatusInternalServerError, `[+]ping ok
    [+]log ok
    [-]wrapping-health failed: reason withheld
    [-]delegate-health failed: reason withheld
    [+]poststarthook/generic-apiserver-start-informers ok
    [+]poststarthook/max-in-flight-filter ok
    [+]poststarthook/storage-object-count-tracker-hook ok
    [+]poststarthook/delegate-post-start-hook ok
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    				// don't include the error since this endpoint is public.  If someone wants more detail
    				// they should have explicit permission to the detailed checks.
    				fmt.Fprintf(&individualCheckOutput, "[-]%s failed: reason withheld\n", check.Name())
    				// but we do want detailed information for our log
    				fmt.Fprintf(&failedVerboseLogOutput, "[-]%s failed: %v\n", check.Name(), err)
    				failedChecks = append(failedChecks, check.Name())
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

            withConnection {
                def model = it.model(modelType)
                cl(model)
                new ConfigurableOperation(model).buildModel()
            }
        }
    
        ConfigurableOperation withBuild(Closure cl = {}) {
            withConnection {
                def build = it.newBuild()
                cl(build)
                def out = new ConfigurableOperation(build)
                build.run()
                out
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. CREDITS

     * this copyright notice must be retained, unchanged, in its entirety.  If
     * for any reason the author might be held responsible for any consequences
     * of copying or use, license is withheld.
     */
    
    
    --------------------------------------------------
    For lib/py/compat/win32/stdint.h
    
    // ISO C9x  compliant stdint.h for Microsoft Visual Studio
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
Back to top