Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 9,707 for fals (0.18 sec)

  1. releasenotes/notes/endpoints-false-negative.yaml

    dwq <******@****.***> 1702923949 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 18:25:49 UTC 2023
    - 176 bytes
    - Viewed (0)
  2. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/AbiExtractingClasspathResourceHasherTest.groovy

            1 * apiClassExtractor2.appendConfigurationToHasher(_) >> { args -> args[0].putString("second") }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/20398")
        def "falls back to full file hash when abi extraction fails for a regular file"() {
            def apiClassExtractor = Mock(ApiClassExtractor)
    
            def resourceHasher = AbiExtractingClasspathResourceHasher.withFallback(apiClassExtractor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  3. src/internal/poll/copy_file_range_linux.go

    			return 0, false, nil
    		case nil:
    			if n == 0 {
    				// If we did not read any bytes at all,
    				// then this file may be in a file system
    				// where copy_file_range silently fails.
    				// https://lore.kernel.org/linux-fsdevel/******@****.***/T/#m05753578c7f7882f6e9ffe01f981bc223edef2b0
    				if written == 0 {
    					return 0, false, nil
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 17:40:10 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. pkg/backoff/exponential_test.go

    	return t
    }
    
    func TestRetry(t *testing.T) {
    	o := DefaultOption()
    	o.InitialInterval = 1 * time.Microsecond
    	ebf := NewExponentialBackOff(o)
    
    	// Run a task that fails the first time and retries.
    	wg := sync.WaitGroup{}
    	wg.Add(2)
    	failed := false
    	err := ebf.RetryWithContext(context.TODO(), func() error {
    		defer wg.Done()
    		if failed {
    			return nil
    		}
    		failed = true
    		return errors.New("fake error")
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 05 16:03:30 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/BuildScanConfigIntegrationTest.groovy

            then:
            scanPlugin.assertEnabled(output, false)
            scanPlugin.assertDisabled(output, false)
        }
    
        def "not disabled with -Dscan=false"() {
            when:
            succeeds "t", "-Dscan=false"
    
            then:
            scanPlugin.assertEnabled(output, false)
            scanPlugin.assertDisabled(output, false)
        }
    
        def "warns if scan requested but no scan plugin applied"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/locking/AbstractValidatingLockingIntegrationTest.groovy

            when:
            fails 'checkDeps'
    
            then:
            failure.assertHasCause("Could not resolve all files for configuration ':lockedConf'.")
            failure.assertHasCause("Resolved 'org:bar:1.0' which is not part of the dependency lock state")
    
            where:
            unique << [true, false]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/InvalidConfigurationResolutionIntegrationTest.groovy

                        implementation
                        compile.canBeDeclared = false
                        compile.canBeConsumed = false
                        compile.canBeResolved = false
                        compileOnly.canBeResolved = false
                        apiElements {
                            assert canBeConsumed
                            canBeResolved = false
                            extendsFrom compile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. src/internal/stringslite/strings.go

    		i := 0
    		t := len(s) - n + 1
    		fails := 0
    		for i < t {
    			if s[i] != c0 {
    				// IndexByte is faster than bytealg.IndexString, so use it as long as
    				// we're not getting lots of false positives.
    				o := IndexByte(s[i+1:t], c0)
    				if o < 0 {
    					return -1
    				}
    				i += o + 1
    			}
    			if s[i+1] == c1 && s[i:i+n] == substr {
    				return i
    			}
    			fails++
    			i++
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 04 01:23:42 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/ResolvingFromSingleCustomPluginRepositorySpec.groovy

                  id "org.example.plugin"
              }
            """
    
            when:
            fails("pluginTask")
    
            then:
            failure.assertHasNoCause(repoType)
    
            where:
            repoType << [IVY, MAVEN]
        }
    
        @Requires(UnitTestPreconditions.Online)
        def "Fails gracefully if a plugin is not found in #repoType repo"() {
            given:
            publishTestPlugin(repoType)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:30:55 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/google/pprof/internal/driver/driver_focus.go

    		labelFilter := func(vals []int64, unit string) bool {
    			for _, val := range vals {
    				if numFilter(val, unit) {
    					return true
    				}
    			}
    			return false
    		}
    		numLabelUnit := func(key string) string {
    			return numLabelUnits[key]
    		}
    		if wantKey == "" {
    			return func(s *profile.Sample) bool {
    				for key, vals := range s.NumLabel {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 23:33:06 UTC 2020
    - 6.4K bytes
    - Viewed (0)
Back to top