Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 6,670 for doens (0.12 sec)

  1. pkg/apis/autoscaling/v1/zz_generated.conversion.go

    	// WARNING: in.Target requires manual conversion: does not exist in peer-type
    	// WARNING: in.MetricName requires manual conversion: does not exist in peer-type
    	// WARNING: in.CurrentValue requires manual conversion: does not exist in peer-type
    	// WARNING: in.Selector requires manual conversion: does not exist in peer-type
    	// WARNING: in.AverageValue requires manual conversion: does not exist in peer-type
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 43.7K bytes
    - Viewed (0)
  2. test/fixedbugs/issue13799.go

    	}
    }
    
    func test2(iter int) {
    
    	const maxI = 500
    	m := make(map[int][]int) // ERROR "make\(map\[int\]\[\]int\) does not escape$"
    
    	// var fn func()
    	for i := 0; i < maxI; i++ {
    		var fn func() // this makes it work, because fn stays off heap
    		j := 0
    		fn = func() { // ERROR "func literal does not escape$"
    			m[i] = append(m[i], 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/model/CalculatedValue.java

         * Does not calculate the value on demand and does not block if the value is currently being calculated.
         *
         * <p>Rethrows any exception that happened while calculating the value</p>
         */
        T get() throws IllegalStateException;
    
        /**
         * Returns the result of calculating the value, failing if it has not been calculated.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. test/fixedbugs/issue27557.go

    	f := t.noescape // ERROR "t.noescape does not escape"
    	f()
    }
    
    func f2() {
    	var t T       // ERROR "moved to heap"
    	f := t.escape // ERROR "t.escape does not escape"
    	f()
    }
    
    func f3() {
    	var t T        // ERROR "moved to heap"
    	f := t.returns // ERROR "t.returns does not escape"
    	sink = f()
    }
    
    type T struct{}
    
    func (t *T) noescape()   {}           // ERROR "t does not escape"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 28 21:41:07 UTC 2021
    - 949 bytes
    - Viewed (0)
  5. pkg/apis/autoscaling/v2beta1/zz_generated.conversion.go

    	// WARNING: in.Target requires manual conversion: does not exist in peer-type
    	// WARNING: in.MetricName requires manual conversion: does not exist in peer-type
    	// WARNING: in.CurrentValue requires manual conversion: does not exist in peer-type
    	// WARNING: in.Selector requires manual conversion: does not exist in peer-type
    	// WARNING: in.AverageValue requires manual conversion: does not exist in peer-type
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 42.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/FormattingValidationProblemCollectorTest.groovy

            def collector = new FormattingValidationProblemCollector("<thing>", ModelType.of(String))
            collector.add("does not extend RuleSource")
            collector.add("does not have any rule method")
    
            expect:
            collector.format() == '''Type java.lang.String is not a valid <thing>:
    - does not extend RuleSource
    - does not have any rule method'''
        }
    
        static class SuperClass {
            private String value
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/util/internal/NameMatcherTest.groovy

        }
    
        def "does not select items when no matches"() {
            expect:
            doesNotMatch("name")
            doesNotMatch("name", "other")
            doesNotMatch("name", "na")
            doesNotMatch("sN", "otherName")
            doesNotMatch("sA", "someThing")
            doesNotMatch("soN", "saN")
            doesNotMatch("soN", "saName")
        }
    
        def "does not select items when multiple camel case matches"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  8. src/internal/types/testdata/examples/inference2.go

    	v6 = f4
    	v7 = f4 // ERROR "inferred type func(int, int) for func(P, P) does not match type func(int, string) of v7"
    	v8 = f5
    	v9 = f5 // ERROR "inferred type func(string) []string for func(P) []P does not match type func(string) []int of v9"
    
    	// non-trivial LHS
    	var a [2]func(string) []int
    	a[0] = f5 // ERROR "inferred type func(string) []string for func(P) []P does not match type func(string) []int of a[0]"
    }
    
    // Return statements
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 12 18:44:59 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. pkg/util/removeall/removeall.go

    // using the provided remove function. It removes everything it can but returns
    // the first error it encounters. If the path does not exist, RemoveAll
    // returns nil (no error).
    // It makes sure it does not cross mount boundary, i.e. it does *not* remove
    // files from another filesystems. Like 'rm -rf --one-file-system'.
    // It is copied from RemoveAll() sources, with IsLikelyNotMountPoint
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 16:41:02 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  10. test/fixedbugs/issue38356.go

    func f1(x, y float64, z int) float64 {
    	a := x + y  // generate flags
    	if z == 0 { // create basic block that does not clobber flags
    		return a
    	}
    	if a > 0 { // use flags in different basic block
    		return y
    	}
    	return x
    }
    
    func f2(x, y float64, z int) float64 {
    	a := x - y  // generate flags
    	if z == 0 { // create basic block that does not clobber flags
    		return a
    	}
    	if a > 0 { // use flags in different basic block
    		return y
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 14 19:01:47 UTC 2020
    - 1.1K bytes
    - Viewed (0)
Back to top