Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,114 for checkPkg (0.13 sec)

  1. testing/smoke-ide-test/build.gradle.kts

    import gradlebuild.integrationtests.addDependenciesAndConfigurations
    import gradlebuild.integrationtests.tasks.SmokeIdeTest
    
    plugins {
        id("gradlebuild.internal.java")
    }
    
    description = "Tests are checking Gradle behavior during IDE synchronization process"
    
    val smokeIdeTestSourceSet = sourceSets.create("smokeIdeTest") {
        compileClasspath += sourceSets.main.get().output
        runtimeClasspath += sourceSets.main.get().output
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 18:13:31 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/install_move_not_stale.txt

    # Check to see that the distribution is not stale
    # even when it's been moved to a different directory.
    # Simulate that by creating a symlink to the tree.
    
    # We use net instead of std because stale std has
    # the behavior of checking that all std targets
    # are stale rather than any of them.
    
    [!symlink] skip
    [short] skip
    
    go build net
    ! stale net
    
    symlink new -> $GOROOT
    env OLDGOROOT=$GOROOT
    env GOROOT=$WORK${/}gopath${/}src${/}new
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:51:12 UTC 2022
    - 625 bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/GlobalLoggingManipulationIntegrationTest.groovy

            toolingApi.withConnection { connection -> connection.newBuild().run() }
    
            then:
            noExceptionThrown()
        }
    
        def "tooling api restores java logging at end of build"() {
            //(SF) checking if the logger level was not overridden.
            //this gives some confidence that the LogManager was not reset
            given:
            LogManager.getLogManager().getLogger("").setLevel(OFF);
            buildFile << "task hey"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6K bytes
    - Viewed (0)
  4. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/android/AndroidIncrementalExecutionPerformanceTest.groovy

        static void beforeBuild(File workingDir) {
            workingDir.listFiles().findAll { new File(it, "settings.gradle").exists() }.forEach { projectDir ->
                // Workaround for Android Gradle plugin checking for the presence of these directories at configuration time,
                // which invalidates configuration cache if their presence changes. Create these directories before the first build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:24:57 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. test/typeparam/tparam1.go

    // errorcheck
    
    // 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.
    
    // Basic type parameter list type-checking (not syntax) errors.
    
    package tparam1
    
    // The predeclared identifier "any" may be used in place of interface{}.
    var _ any
    
    func _(_ any)
    
    type _[_ any] struct{}
    
    const N = 10
    
    type (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  6. test/fixedbugs/issue20298.go

    // license that can be found in the LICENSE file.
    
    // Issue 20298: "imported and not used" error report order was non-deterministic.
    // This test works by limiting the number of errors (-e=0)
    // and checking that the errors are all at the beginning.
    
    package p
    
    import (
    	"bufio"       // ERROR "imported and not used"
    	"bytes"       // ERROR "imported and not used"
    	"crypto/x509" // ERROR "imported and not used"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 21:14:56 UTC 2017
    - 984 bytes
    - Viewed (0)
  7. src/testing/cover.go

    	Col1  uint16 // Column number for block end.
    	Stmts uint16 // Number of statements included in this block.
    }
    
    var cover Cover
    
    // Cover records information about test coverage checking.
    // NOTE: This struct is internal to the testing infrastructure and may change.
    // It is not covered (yet) by the Go 1 compatibility guidelines.
    type Cover struct {
    	Mode            string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:37:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. src/internal/types/testdata/fixedbugs/issue50427.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package p
    
    // The parser no longer parses type parameters for methods.
    // In the past, type checking the code below led to a crash (#50427).
    
    type T interface{ m[ /* ERROR "must have no type parameters" */ P any]() }
    
    func _(t T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 731 bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/healthz/doc.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package healthz implements basic http server health checking.
    // Usage:
    //
    //	import "k8s.io/apiserver/pkg/server/healthz"
    //	healthz.InstallHandler(mux)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 792 bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/issue42018_windows.go

    */
    import "C"
    
    import (
    	"testing"
    	"unsafe"
    )
    
    func test42018(t *testing.T) {
    	// Test that Windows handles are marked go:notinheap, by growing the
    	// stack and checking for pointer adjustments. Trick from
    	// test/fixedbugs/issue40954.go.
    	var i int
    	handle := C.HANDLE(unsafe.Pointer(uintptr(unsafe.Pointer(&i))))
    	recurseHANDLE(100, handle, uintptr(unsafe.Pointer(&i)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top