Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 107 for defeats (0.14 sec)

  1. src/cmd/go/testdata/script/cgo_badmethod_issue57926.txt

    module example.com
    go 1.12
    
    -- a.go --
    package a
    
    /*
    typedef int T;
    */
    import "C"
    
    func (C.T) f() {}
    func (recv *C.T) g() {}
    
    // The check is more education than enforcement,
    // and is easily defeated using a type alias.
    type Alias = C.T
    func (Alias) h() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 12:55:28 UTC 2023
    - 562 bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/ZipEntryCompression.java

    /**
     * Specifies the compression level of an archives contents.
     */
    public enum ZipEntryCompression {
        /** Contents are not compressed */
        STORED,
    
        /** Contents are compressed using the 'deflate' algorithm */
        DEFLATED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 02 16:56:13 UTC 2016
    - 890 bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/Zip.java

        }
    
        /**
         * Returns the compression level of the entries of the archive. If set to {@link ZipEntryCompression#DEFLATED} (the default), each entry is
         * compressed using the DEFLATE algorithm. If set to {@link ZipEntryCompression#STORED} the entries of the archive are left uncompressed.
         *
         * @return the compression level of the archive contents.
         */
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 08:29:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/cgo/internal/testsanitizers/testdata/tsan10.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    // This program hung when run under the C/C++ ThreadSanitizer.
    // TSAN defers asynchronous signals until the signaled thread calls into libc.
    // Since the Go runtime makes direct futex syscalls, Go runtime threads could
    // run for an arbitrarily long time without triggering the libc interceptors.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 798 bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/appends/appends.go

    // Copyright 2023 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 appends defines an Analyzer that detects
    // if there is only one variable in append.
    package appends
    
    import (
    	_ "embed"
    	"go/ast"
    	"go/types"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/passes/inspect"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. 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)
  10. src/cmd/go/testdata/script/mod_sumdb.txt

    go mod edit -require rsc.io/quote@v1.5.2
    ! go mod tidy
    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:'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.2K bytes
    - Viewed (0)
Back to top