Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 136 for reusify (0.14 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

          "dev": true,
          "engines": {
            "node": ">=8"
          }
        },
        "node_modules/reusify": {
          "version": "1.0.4",
          "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz",
          "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==",
          "dev": true,
          "engines": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/configurationCache/problemsKotlin/tests/load.out

    Reusing configuration cache.
    > Task :someTask
    
    1 problem was found reusing the configuration cache.
    - Task `:someTask` of type `org.gradle.api.DefaultTask`: invocation of 'Task.project' at execution time is unsupported.
      See https://docs.gradle.org/0.0.0/userguide/configuration_cache.html#config_cache:requirements:use_project_during_execution
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 534 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/configurationCache/problemsGroovy/tests/load.out

    Reusing configuration cache.
    > Task :someTask
    
    1 problem was found reusing the configuration cache.
    - Build file 'build.gradle': line 6: invocation of 'Task.project' at execution time is unsupported.
      See https://docs.gradle.org/0.0.0/userguide/configuration_cache.html#config_cache:requirements:use_project_during_execution
    
    See the complete report at file:///home/user/gradle/samples/build/reports/configuration-cache/<hash>/configuration-cache-report.html
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 514 bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r82/TestLauncherTestSpecCrossVersionSpec.groovy

                }
            }
    
            then:
            // TestLauncher configuration ignored: only tests from the configuration cache entry is executed
            stdout.toString().contains("Reusing configuration cache.")
            events.testClassesAndMethods.size() == 4 // 2 test class + 2 test method events
            assertTestExecuted(className: 'example2.MyOtherTest', methodName: 'bar', task: ':secondTest')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/configurationCache/problemsFixedReuse/tests/load.out

    Reusing configuration cache.
    > Task :someTask
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 100 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/configurationCache/problemsFixed/tests/load.out

    Reusing configuration cache.
    > Task :someTask
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 100 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/configurationCache/noProblem/tests/load.out

    Reusing configuration cache....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 29 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/configurationCache/problemsFixedReuse/tests/load-another.out

    Reusing configuration cache.
    > Task :someTask
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 100 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/readme-templates/library-summary.adoc.template

    * Customize the Jar files the build produces
    
    Now you could complete this exercise by trying to compile some ${language.raw} code that uses the library you just built.
    
    == Next steps
    
    Building a library is just one aspect of reusing code across project boundaries.
    From here, you may be interested in:
    
     - link:{userManualPath}/building_java_projects.html[Building Java & JVM projects]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 781 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/configurationCache/testKit/kotlin/src/test/kotlin/org/example/BuildLogicFunctionalTest.kt

                .build()
    
            val result = runner()
                .withArguments("--configuration-cache", "myTask")        // <2>
                .build()
    
            require(result.output.contains("Reusing configuration cache.")) // <3>
            // ... more assertions on your task behavior
        }
        // end::functional-test-configuration-cache[]
    
        private
        fun runner() =
            GradleRunner.create()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top