Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,343 for detects (0.17 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyChangingModuleRemoteResolveIntegrationTest.groovy

    package org.gradle.integtests.resolve.ivy
    
    import org.gradle.integtests.fixtures.AbstractHttpDependencyResolutionTest
    
    class IvyChangingModuleRemoteResolveIntegrationTest extends AbstractHttpDependencyResolutionTest {
    
        def "detects changed module descriptor when flagged as changing"() {
            given:
            buildFile << """
    repositories {
        ivy { url "${ivyHttpRepo.uri}" }
    }
    
    configurations { compile }
    
    configurations.all {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractSourceIncrementalCompilationIntegrationTest.groovy

    import org.gradle.integtests.fixtures.CompiledLanguage
    import spock.lang.Issue
    
    abstract class AbstractSourceIncrementalCompilationIntegrationTest extends AbstractJavaGroovyIncrementalCompilationSupport {
    
        def "detects class changes in subsequent runs ensuring the class dependency data is refreshed"() {
            source "class A {}", "class B {}", "class C {}"
            outputs.snapshot { run language.compileTaskName }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskConstantChangesIncrementalCompilationIntegrationTest.groovy

            when:
            source api: ["class B { /* change */ }"]
            run "impl:${language.compileTaskName}"
    
            then:
            impl.noneRecompiled()
        }
    
        def "detects that changed class still has the same constants so no recompile is necessary"() {
            source api: ["class A { public static final int FOO = 123;}"],
                impl: ["class B { void foo() { int x = 123; }}"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/state/GradleUserHomeScopeFileTimeStampInspector.java

         * And if the provided timestamp is in `millisecond` precision, then we will definitely detect changes for that file correctly.
         * But if it's in `second` precision we might not detect changes, and we might need to discard the hash at the end of the build.
         */
        private boolean isReliableTimestampPrecision(long timestamp) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4TestClassDetectionIntegrationTest.groovy

        abstract boolean isSupportsEmptyClassWithRunner()
    
        // TODO: See if there is some way we can implement the custom runner class as a JUnit Jupiter extension
        def "detects test classes"() {
            given:
            file('src/test/java/org/gradle/AbstractHasRunWith.java') << """
                package org.gradle;
    
                ${testFrameworkImports}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/jvm/JavaModuleDetectorTest.groovy

        TestFileContentCacheFactory cacheFactory = new TestFileContentCacheFactory()
        JavaModuleDetector moduleDetector = new JavaModuleDetector(cacheFactory, TestFiles.fileCollectionFactory())
    
        def "detects modules on classpath"() {
            def path = path('lib.jar', 'module.jar', 'classes', 'classes-module', 'automaticModule.jar', 'mrjarModule.jar')
    
            expect:
            inferClasspath(path) == ['lib.jar', 'classes']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 07 13:50:48 UTC 2020
    - 4.5K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/ws/RealWebSocketTest.kt

      }
    
      @Test
      fun protocolErrorBeforeCloseSendsFailure() {
        server.sink.write("0a00".decodeHex()).emit() // Invalid non-final ping frame.
        client.processNextFrame() // Detects error, send close, close connection.
        taskFaker.runTasks()
        client.webSocket!!.finishReader()
        assertThat(client.closed).isTrue()
        client.listener.assertFailure(
          ProtocolException::class.java,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 01:59:58 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. architecture/ambient/peer-authentication.md

    ztunnel only supports 2 (custom) xDS resources: [`Workload`](../../pkg/workloadapi/workload.proto) and [`Authorization`](../../pkg/workloadapi/security/authorization.proto). As such, ztunnel does not receive `PeerAuthentication`s directly; when istiod detects a `PeerAuthentication` resource that targets an Ambient captured workload, it computes the effective policy for that workload (taking into account the mesh-wide -> namespace -> workload precedence rules) and sends that policy to ztunnel. The exact...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 09 22:09:18 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/sigchanyzer/sigchanyzer.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package sigchanyzer defines an Analyzer that detects
    // misuse of unbuffered signal as argument to signal.Notify.
    package sigchanyzer
    
    import (
    	"bytes"
    	_ "embed"
    	"go/ast"
    	"go/format"
    	"go/token"
    	"go/types"
    
    	"golang.org/x/tools/go/analysis"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/additional/continuous_builds.adoc

    If file system watching does not work on your system, then continuous build won't work either.
    In particular, continuous build does not work when using `--no-daemon`.
    
    When Gradle detects a change to the inputs, it will not trigger the build immediately.
    Instead, it will wait until no additional changes are detected for a certain period of time - the quiet period.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top