Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 742 for recovered (0.21 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenBrokenRemoteResolveIntegrationTest.groovy

            succeeds("showBroken")
    
            when:
            server.resetExpectations()
    
            then:
            succeeds("showBroken")
        }
    
        @Unroll("recovers from initial failed POM download (max retries = #retries)")
        void "recovers from initial failed POM download"() {
            withMaxHttpRetryCount(retries)
    
            given:
            def module = mavenHttpRepo.module('group', 'projectA', '1.3').publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12K bytes
    - Viewed (0)
  2. src/crypto/rand/util_test.go

    		}
    		if p.Cmp(p0) != 0 {
    			return
    		}
    	}
    	t.Error("Prime always generated the same prime given the same input")
    }
    
    func TestInt(t *testing.T) {
    	// start at 128 so the case of (max.BitLen() % 8) == 0 is covered
    	for n := 128; n < 140; n++ {
    		b := new(big.Int).SetInt64(int64(n))
    		if i, err := rand.Int(rand.Reader, b); err != nil {
    			t.Fatalf("Can't generate random value: %v, %v", i, err)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 01:35:39 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. src/cmd/cover/func.go

    		for _, f := range funcs {
    			c, t := f.coverage(profile)
    			fmt.Fprintf(tabber, "%s:%d:\t%s\t%.1f%%\n", fn, f.startLine, f.name, percent(c, t))
    			total += t
    			covered += c
    		}
    	}
    	fmt.Fprintf(tabber, "total:\t(statements)\t%.1f%%\n", percent(covered, total))
    
    	return nil
    }
    
    // findFuncs parses the file and returns a slice of FuncExtent descriptors.
    func findFuncs(name string) ([]*FuncExtent, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  4. hack/lib/golang.sh

              "${build_args[@]}" \
              -tags coverage \
              "${package}"
          else
            uncovered+=("${package}")
          fi
        done
        if [[ "${#uncovered[@]}" != 0 ]]; then
          V=2 kube::log::info "Building ${uncovered[*]} without coverage..."
          GOPROXY=off go install "${build_args[@]}" "${uncovered[@]}"
        else
          V=2 kube::log::info "Nothing to build without coverage."
        fi
      else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  5. src/runtime/stack_test.go

    func TestPanicUseStack(t *testing.T) {
    	pc := make([]uintptr, 10000)
    	defer func() {
    		recover()
    		Callers(0, pc) // force stack walk
    		useStackAndCall(100, func() {
    			defer func() {
    				recover()
    				Callers(0, pc) // force stack walk
    				useStackAndCall(200, func() {
    					defer func() {
    						recover()
    						Callers(0, pc) // force stack walk
    					}()
    					panic(3)
    				})
    			}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  6. src/syscall/fs_js.go

    	return err
    }
    
    func Getcwd(buf []byte) (n int, err error) {
    	defer recoverErr(&err)
    	cwd := jsProcess.Call("cwd").String()
    	n = copy(buf, cwd)
    	return
    }
    
    func Chdir(path string) (err error) {
    	if err := checkPath(path); err != nil {
    		return err
    	}
    	defer recoverErr(&err)
    	jsProcess.Call("chdir", path)
    	return
    }
    
    func Fchdir(fd int) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 11 18:19:17 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  7. licenses/github.com/hashicorp/hcl/LICENSE

         provided that You also comply with the requirements of this License for the
         Covered Software. If the Larger Work is a combination of Covered Software
         with a work governed by one or more Secondary Licenses, and the Covered
         Software is not Incompatible With Secondary Licenses, this License permits
         You to additionally distribute such Covered Software under the terms of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 15.6K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/builtins0.go

    }
    
    func recover1() {
    	_ = recover()
    	_ = recover(10) // ERROR "too many arguments"
    	recover()
    
    	var s []int
    	recover(s... /* ERROR "invalid use of ..." */ )
    }
    
    func recover2() {
    	f1 := func() (x int) { return }
    	f2 := func() (x, y int) { return }
    	_ = recover(f0 /* ERROR "used as value" */ ())
    	_ = recover(f1()) // ERROR "too many arguments"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  9. platforms/jvm/jacoco/src/testFixtures/groovy/org/gradle/testing/jacoco/plugins/fixtures/JacocoReportXmlFixture.groovy

                    def covered = 0
                    if (it.counter.size() > 0) {
                        def classCounter = it.counter.find { it.@type == "CLASS" }
                        missed = Integer.parseInt(******@****.***ng())
                        covered = Integer.parseInt(classCounter.@covered.toString())
                    }
    
                    return new Coverage(name, covered, missed)
                })
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. licenses/github.com/hashicorp/errwrap/LICENSE

         provided that You also comply with the requirements of this License for the
         Covered Software. If the Larger Work is a combination of Covered Software
         with a work governed by one or more Secondary Licenses, and the Covered
         Software is not Incompatible With Secondary Licenses, this License permits
         You to additionally distribute such Covered Software under the terms of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 15.6K bytes
    - Viewed (0)
Back to top