Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,343 for detects (0.34 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/testinggoroutine/doc.go

    //
    // Functions that abruptly terminate a test, such as the Fatal, Fatalf, FailNow, and
    // Skip{,f,Now} methods of *testing.T, must be called from the test goroutine itself.
    // This checker detects calls to these functions that occur within a goroutine
    // started by the test. For example:
    //
    //	func TestFoo(t *testing.T) {
    //	    go func() {
    //	        t.Fatal("oops") // error: (*T).Fatal called from non-test goroutine
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 853 bytes
    - Viewed (0)
  2. pkg/kubelet/userns/inuserns/inuserns_linux.go

    limitations under the License.
    */
    
    package inuserns
    
    import libcontaineruserns "github.com/opencontainers/runc/libcontainer/userns"
    
    // RunningInUserNS detects whether the current process is running in a user namespace.
    func RunningInUserNS() bool {
    	return libcontaineruserns.RunningInUserNS()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 01:42:20 UTC 2024
    - 833 bytes
    - Viewed (0)
  3. test/fixedbugs/issue33275_run.go

    // license that can be found in the LICENSE file.
    
    // Make sure we don't get an index out of bounds error
    // while trying to print a map that is concurrently modified.
    // The runtime might complain (throw) if it detects the modification,
    // so we have to run the test as a subprocess.
    
    package main
    
    import (
    	"os/exec"
    	"strings"
    )
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 717 bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/btree/BlockPointerTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.cache.internal.btree
    
    import spock.lang.Specification
    
    class BlockPointerTest extends Specification {
    
        def "detects corrupt pointers"() {
            when:
            BlockPointer.pos(-10)
            then:
            def e = thrown(CorruptedCacheException)
            e.message.contains("-10")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 926 bytes
    - Viewed (0)
  5. src/main/java/jcifs/FileNotifyInformation.java

        public static final int FILE_NOTIFY_CHANGE_ATTRIBUTES = 0x00000004;
    
        /**
         * Any file-size change in the watched directory or subtree causes a change notification wait operation to return.
         * The operating system detects a change in file size only when the file is written to the disk. For operating
         * systems that use extensive caching, detection occurs only when the cache is sufficiently flushed.s
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/BuildScriptChangesContinuousBuildIntegrationTest.groovy

    package org.gradle.launcher.continuous
    
    import org.gradle.integtests.fixtures.AbstractContinuousIntegrationTest
    
    class BuildScriptChangesContinuousBuildIntegrationTest extends AbstractContinuousIntegrationTest {
    
        def "detects changes to #buildFileName scripts"() {
            given:
            def markerFile = file("input/marker")
            markerFile.text = "original"
    
            file(buildFileName) << """
                tasks.register("myTask") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/TaskFromPluginValidationIntegrationTest.groovy

    class TaskFromPluginValidationIntegrationTest extends AbstractIntegrationSpec implements ValidationMessageChecker {
    
        def setup() {
            expectReindentedValidationMessage()
        }
    
        def "detects that a problem is from a task declared in a precompiled script plugin"() {
            withPrecompiledScriptPlugins()
            def pluginFile = file("buildSrc/src/main/groovy/test.gradle.demo.plugin.gradle")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_sumdb.txt

    stderr 'go: rsc.io/quote@v1.5.2: verifying go.mod: checksum mismatch'
    stderr 'SECURITY ERROR\n'
    
    rm go.sum
    
    # switching to truthful sumdb detects timeline inconsistency
    cp go.mod.orig go.mod
    env GOSUMDB=$sumdb
    ! go get rsc.io/fortune
    stderr 'SECURITY ERROR\ngo.sum database server misbehavior detected!'
    stderr 'proof of misbehavior:'
    
    # removing the cached wrong tree head and cached tiles clears the bad data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/build_lifecycle.adoc

    [[sec:build_phases]]
    == Build Phases
    
    A Gradle build has three distinct phases.
    
    image::author-gradle-1.png[]
    
    Gradle runs these phases in order:
    
    Phase 1. Initialization::
    - Detects the `settings.gradle(.kts)` file.
    - Creates a link:{groovyDslPath}/org.gradle.api.initialization.Settings.html[`Settings`] instance.
    - Evaluates the settings file to determine which projects (and included builds) make up the build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 11:17:49 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  10. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/ChangesDuringTheBuildFileSystemWatchingIntegrationTest.groovy

                task waitForUserChanges {
                    doLast {
                        ${server.callFromBuild("userInput")}
                    }
                }
            """
        }
    
        def "detects input file change just before the task is executed"() {
            def inputFile = file("input.txt")
            buildFile << """
                def inputFile = file("input.txt")
                def outputFile = file("build/output.txt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top