Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 360 for outReg (0.16 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/internal/model/ObjectFactoryExtensionsIntegrationTest.groovy

                    }
                }
    
                class Outer {
                    Thing thing
    
                    @javax.inject.Inject
                    ObjectFactory getObjects() { null }
                }
    
                def outer = project.objects.newInstance(Outer)
                task createExtensionThing {
                    doLast {
                        outer.extensions.create("extensionThing", Thing, "foo")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 13 21:29:11 UTC 2021
    - 3K bytes
    - Viewed (0)
  2. test/fixedbugs/bug070.go

    func main() {
    	var i, k int
    	var r string
    outer:
    	for k = 0; k < 2; k++ {
    		r += fmt.Sprintln("outer loop top k", k)
    		if k != 0 {
    			panic("k not zero")
    		} // inner loop breaks this one every time
    		for i = 0; i < 2; i++ {
    			if i != 0 {
    				panic("i not zero")
    			} // loop breaks every time
    			r += fmt.Sprintln("inner loop top i", i)
    			if true {
    				r += "do break\n"
    				break outer
    			}
    		}
    	}
    	r += "broke\n"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:49:30 UTC 2012
    - 715 bytes
    - Viewed (0)
  3. test/typeparam/issue51303.go

    	var z L
    outer:
    	for _, xe := range x {
    		fmt.Println("xe", xe)
    		for _, ye := range y {
    			fmt.Println("ye", ye)
    			fmt.Println("x", x)
    			if x.Equal(xe, ye) {
    				fmt.Println("appending")
    				z = append(z, xe)
    				continue outer
    			}
    		}
    	}
    	return z
    }
    
    func SetEq[S []E, E comparable](x, y S) bool {
    	fmt.Println("SetEq", x, y)
    outer:
    	for _, xe := range x {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  4. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/source/TypeNameResolverTest.groovy

            then:
            name == 'org.gradle.SomeClass.Outer.Sibling'
            _ * classMetaData.innerClassNames >> []
            _ * classMetaData.outerClassName >> 'org.gradle.SomeClass.Outer'
            _ * metaDataRepository.get('org.gradle.SomeClass.Outer') >> outerClass
            _ * outerClass.innerClassNames >> ['org.gradle.SomeClass.Outer.Sibling']
        }
    
        def resolvesUnqualifiedNameToJavaLangPackage() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 6K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/NestedConfigureDslIntegrationTest.groovy

        def "can read property from configure closure outer scope"() {
            buildFile """
    ext.prop = "value"
    tasks.help {
        println "1: " + prop
        1.times {
            println "2: " + prop
        }
    }
    """
    
            expect:
            succeeds()
            outputContains("1: value")
            outputContains("2: value")
        }
    
        def "can set property in configure closure outer scope"() {
            buildFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. src/runtime/chanbarrier_test.go

    	t.Parallel()
    	testChanSendBarrier(false)
    }
    
    func testChanSendBarrier(useSelect bool) {
    	var wg sync.WaitGroup
    	outer := 100
    	inner := 100000
    	if testing.Short() || runtime.GOARCH == "wasm" {
    		outer = 10
    		inner = 1000
    	}
    	for i := 0; i < outer; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			var garbage []byte
    			for j := 0; j < inner; j++ {
    				_, err := doRequest(useSelect)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

          c++;
        }
      }
    
      // Create out_eq by merging lhs and rhs.
      // In XlaDotv2 style - batch dim - leftover from lhs - leftover from rhs.
      for (auto c : lhs_batch_dims) {
        absl::StrAppend(&out_eq, std::string(1, c));
      }
      for (auto c : lhs_eq) {
        if (!absl::StrContains(out_eq, c) && !absl::StrContains(rhs_eq, c)) {
          absl::StrAppend(&out_eq, std::string(1, c));
        }
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/expressionInfoProvider/isUsedAsExpression/loopLabelBreakUsed.kt

    fun test() {
    
        outer@while(true) {
            inner@while(false) {
                val x = <expr>break@outer</expr>
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Oct 05 15:06:52 UTC 2022
    - 129 bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/reflect/TypeTokenSubtypeTest.java

        @TestSubtype
        public Mall<Outdoor>.Shop<Electronics> ownerTypeIsSubtype(
            Outlet<Outdoor>.Shop<Electronics> shop) {
          return isSubtype(shop);
        }
    
        @TestSubtype(suppressGetSupertype = true, suppressGetSubtype = true)
        public Mall<? extends Outdoor>.Shop<Electronics> ownerTypeIsSubtype_supertypeWithWildcard(
            Outlet<Outdoor>.Shop<Electronics> shop) {
          return isSubtype(shop);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  10. src/crypto/internal/boring/aes.go

    	}
    
    	outLen := C.size_t(len(ciphertext) - gcmTagSize)
    	ok := C.EVP_AEAD_CTX_open_wrapper(
    		&g.ctx,
    		base(dst[n:]), outLen,
    		base(nonce), C.size_t(len(nonce)),
    		base(ciphertext), C.size_t(len(ciphertext)),
    		base(additionalData), C.size_t(len(additionalData)))
    	runtime.KeepAlive(g)
    	if ok == 0 {
    		return nil, errOpen
    	}
    	return dst[:n+int(outLen)], nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top