Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 645 for 20something (0.17 sec)

  1. docker/Dockerfile.base

    FROM ubuntu:noble
    
    ENV DEBIAN_FRONTEND=noninteractive
    
    # Do not add more stuff to this list that isn't small or critically useful.
    # If you occasionally need something on the container do
    # sudo apt-get update && apt-get whichever
    
    # hadolint ignore=DL3005,DL3008
    RUN apt-get update && \
      apt-get install --no-install-recommends -y \
      ca-certificates \
      curl \
      iptables \
      iproute2 \
      iputils-ping \
      knot-dnsutils \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 18:50:51 UTC 2024
    - 1000 bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/operations/logging/LoggingBuildOperationProgressBroadcaster.java

     * It does not attempt to emulate the rich console.
     *
     * This solution has some quirks due to how the console output subsystem in Gradle has evolved.
     *
     * An “output event” effectively represents something of interest happening that
     * some observer may wish to know about in order to visualise what is happening, e.g. a console renderer.
     * We are integrating at this level, but imposing different semantics.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsAccessFromKotlinDslIntegrationTest.groovy

                }
    
                allprojects {
                    printInfo(project)
                }
    
                tasks.register("something")
            """
    
            when:
            isolatedProjectsRun("something")
    
            then:
            outputContains("project name = root")
            outputContains("project name = a")
            outputContains("project name = b")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaIDEModelPerformanceTest.groovy

            setupRunner()
    
            runner.toolingApi("Eclipse model") {
                it.model(EclipseProject)
            }.run { builder ->
                def model = builder.get()
                // we must actually do something to highlight some performance issues
                forEachEclipseProject(model) {
                    buildCommands.each {
                        it.name
                        it.arguments
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. pkg/test/echo/docker/Dockerfile.app_sidecar_base

    FROM ${VM_IMAGE_NAME}:${VM_IMAGE_VERSION}
    # Dockerfile for different VM OS versions
    ENV DEBIAN_FRONTEND=noninteractive
    
    # Do not add more stuff to this list that isn't small or critically useful.
    # If you occasionally need something on the container do
    # sudo apt-get update && apt-get whichever
    
    # hadolint ignore=DL3005,DL3008
    RUN apt-get update && \
        apt-get install --no-install-recommends -y \
        ca-certificates \
        curl \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyModuleResolveIntegrationTest.groovy

                .configuration('something')
                .dependsOn(b, conf: 'something->unknown')
                .publish()
    
            buildFile << """
    configurations {
        compile
    }
    repositories {
        ivy { url "${ivyRepo.uri}" }
    }
    dependencies {
        compile group: 'test', name: 'target', version: '1.0', configuration: 'something'
    }
    task retrieve(type: Sync) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/DefaultTestReportTest.groovy

            def failingTestDetails = failingClassFile.testDetails('failed')
            failingTestDetails.assertDuration("1.000s")
            failingTestDetails.assertFailed()
    
            failingClassFile.assertHasFailure('failed', 'something failed\n\nthis is the failure\nat someClass\n')
    
            where:
            numThreads << [1, 4]
        }
    
        def "aggregate same tests run with different results - #numThreads parallel thread(s)"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  8. src/internal/trace/testdata/testprog/cgo-callback.go

    	const n = 10
    	done := make(chan bool)
    	for i := 0; i < n; i++ {
    		go func() {
    			C.foo()
    			done <- true
    		}()
    	}
    	for i := 0; i < n; i++ {
    		<-done
    	}
    
    	// Do something to steal back any Ps from the Ms, just
    	// for coverage.
    	runtime.GC()
    
    	// End of traced execution.
    	trace.Stop()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/base/KtContextReceiver.kt

         *
         * @see KaContextReceiver
         */
        public abstract val label: Name?
    }
    
    public typealias KtContextReceiver = KaContextReceiver
    
    /**
     * Something which can have a [KaContextReceiver] declared. This may be a callable symbol, a class symbol, or a functional type.
     */
    public interface KaContextReceiversOwner : KaLifetimeOwner {
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationValve.java

     * This is required as the build operation notification machinery is effectively session scoped,
     * but we need to allow, external (i.e. non ListenerManager), listeners per build.
     * <p>
     * Furthermore, the actual lifecycle is not something that we currently model with the service registries.
     * The notification listener is effectively of cross build tree scope, which doesn't exist.
     * This is because GradleBuild uses a discrete tree (which is intended to change later).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top