Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for withChild (0.32 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
Back to top