Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 547 for detectedBy (0.17 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/PluginDetectionIntegrationTest.groovy

                apply plugin: '$appliedBy'
                operations << "applied"
    
                assert plugins["$detectedBy"]
                assert plugins.getPlugin("$detectedBy")
                assert pluginManager.hasPlugin("$detectedBy")
                assert pluginManager.findPlugin("$detectedBy").id == "$detectedBy"
    
                task verify {
                    doLast {
                        assert operations[0] == 'applying'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_fuzz_test_race.txt

    go test -fuzz=xxx -race -v
    ! stderr 'race detected during execution of test'
    
    # Test with just race instrumentation enabled
    go test -race -v
    ! stderr 'race detected during execution of test'
    
    # Test with coverage and race instrumentation enabled, and a matching fuzz
    # pattern
    go test -fuzz=FuzzRace -race -v -fuzztime=200x
    ! stderr 'race detected during execution of test'
    
    -- go.mod --
    module test
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 966 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/cover_import_main_loop.txt

    [compiler:gccgo] skip # gccgo has no cover tool
    
    ! go test -n importmain/test
    stderr 'not an importable package' # check that import main was detected
    ! go test -n -cover importmain/test
    stderr 'not an importable package' # check that import main was detected
    
    -- go.mod --
    module importmain
    
    go 1.16
    -- ismain/main.go --
    package main
    
    import _ "importmain/test"
    
    func main() {}
    -- test/test.go --
    package test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 532 bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/ConfigurationCycleIntegrationTest.groovy

            failure.assertHasCause("""A cycle has been detected in model rule dependencies. References forming the cycle:
    first
    \\- Rules#first(String)
       \\- second
          \\- second { ... } @ build.gradle line 26, column 17
             \\- third
                \\- Rules#third(String)
                   \\- first""")
        }
    
        def "cycles involving multiple rules of same phase are detected"() {
            when:
            buildScript '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/ShowToolchainsTaskTest.groovy

         | Detected by:        {description}TestSource{normal}
    
    {identifier} + AdoptOpenJDK JRE 14+2{normal}
         | Location:           {description}path{normal}
         | Language Version:   {description}14{normal}
         | Vendor:             {description}AdoptOpenJDK{normal}
         | Architecture:       {description}archName{normal}
         | Is JDK:             {description}false{normal}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:55 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. src/crypto/aes/modes_test.go

    func (*testAEAD) Open(a, b, c, d []byte) ([]byte, error) { return []byte{}, nil }
    func (*testAEAD) InAESPackage() bool                     { return true }
    
    // Test the gcmAble interface is detected correctly by the cipher package.
    func TestGCMAble(t *testing.T) {
    	b := cipher.Block(&testBlock{})
    	if _, ok := b.(gcmAble); !ok {
    		t.Fatalf("testBlock does not implement the gcmAble interface")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 14 15:32:26 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  7. src/internal/cpu/cpu_s390x_test.go

    			mandatory[feature] = true
    		}
    		if flag, ok := mapping[feature]; ok {
    			if !*flag {
    				t.Errorf("feature '%v' not detected", feature)
    			}
    		} else {
    			t.Logf("no entry for '%v'", feature)
    		}
    	}
    	for k, v := range mandatory {
    		if !v {
    			t.Errorf("mandatory feature '%v' not detected", k)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 19:12:23 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/gotoolchain_loop.txt

    # Basic switch should work.
    env TESTGO_VERSION_SWITCH=switch
    go version
    stdout go1.21.99
    
    # Toolchain target mismatch should be detected.
    env TESTGO_VERSION_SWITCH=mismatch
    ! go version
    stderr '^go: toolchain go1.21.1 invoked to provide go1.21.99$'
    
    # Toolchain loop should be detected.
    env TESTGO_VERSION_SWITCH=loop
    ! go version
    stderr -count=10 '^go: switching from go1.21.1 to go1.21.99 \[depth 9[0-9]\]$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 31 15:20:23 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/IncrementalChangesContext.java

         */
        public ImmutableList<String> getRebuildReasons() {
            return rebuildReasons;
        }
    
        /**
         * Returns changes detected between the execution state after the last execution and before the current execution.
         * Empty if changes couldn't be detected (e.g. because history was unavailable).
         */
        public Optional<ExecutionStateChanges> getChanges() {
            return Optional.ofNullable(executionStateChanges);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 17:10:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. pkg/registry/core/service/portallocator/controller/metrics.go

    			Name:           "port_errors_total",
    			Help:           "Number of errors detected on ports by the repair loop broken down by type of error: leak, repair, full, outOfRange, duplicate, unknown",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"type"},
    	)
    	// nodePortRepairReconcileErrors indicates the number of times the repair loop has failed to repair
    	// the errors it detected.
    	nodePortRepairReconcileErrors = metrics.NewCounter(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 30 15:46:06 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top