Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 688 for 20something (0.32 sec)

  1. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/BaselineVersion.groovy

    @CompileStatic
    class BaselineVersion implements VersionResults {
        private static final double MINIMUM_CONFIDENCE = 0.999
        // 5 percent difference is something we can measure reliably
        private static final double MINIMUM_RELATIVE_MEDIAN_DIFFERENCE = 0.05
        // 20 percent difference is something where we should always fail
        private static final double HIGH_RELATIVE_MEDIAN_DIFFERENCE = 0.2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. internal/grid/README.md

    The server handler function has this signature: `type SingleHandlerFn func(payload []byte) ([]byte, *RemoteErr)`.
    
    Sample handler:
    ```go
        handler :=  func(payload []byte) ([]byte, *grid.RemoteErr) {
            // Do something with payload
            return []byte("response"), nil
        }
    
        err := manager.RegisterSingleHandler(grid.HandlerDiskInfo, handler)
    ```
    
    Sample call:
    ```go
        // Get a connection to the remote host
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/first-steps.md

    !!! info "`@decorator` Info"
        That `@something` syntax in Python is called a "decorator".
    
        You put it on top of a function. Like a pretty decorative hat (I guess that's where the term came from).
    
        A "decorator" takes the function below and does something with it.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 12K bytes
    - Viewed (1)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractDirectorySensitivityIntegrationSpec.groovy

                    abstract DirectoryProperty getSources()
    
                    @OutputFile
                    abstract RegularFileProperty getOutputFile()
    
                    @TaskAction
                    void doSomething() {
                        outputFile.get().asFile.text = "executed"
                    }
                }
    
                tasks.register("taskWithInputs", TaskWithInputs) {
                    sources.set(file("inputDir"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherUpdater.java

     *     These are currently roots of the builds seen by the daemon during the current or previous invocations.
     *     Interesting content means that we keep track of something that actually exists under the hierarchy (so not exclusively missing files).
     *     Note that hierarchies can be nested in each other.</dd>
     *
     *     <dt>recently used watchable hierarchies</dt>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top