Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 461 for outlier (0.25 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

      // outlined, as the constant operand is replaced by an argument.
      pm.addPass(mlir::createInlinerPass({}, NoCanonicalization));
      // Lift resource operations out of device computation. This step needs to be
      // done after inlining.
      pm.addPass(mlir::TFDevice::CreateResourceOpLiftingPass());
      // Outline clusters into cluster functions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/failureurl/admin_failureurl.jsp

                    </div>
                </div>
            </div>
            <section class="content">
                <div class="row">
                    <div class="col-12">
                        <div class="card card-outline card-primary">
                            <div class="card-header">
                                <h3 class="card-title">
                                    <la:message key="labels.failure_url_configuration"/>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 13.3K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/doc.go

    // iteration variable of an enclosing loop, and the loop calls the function
    // in such a way (e.g. with go or defer) that it may outlive the loop
    // iteration and possibly observe the wrong value of the variable.
    //
    // Note: An iteration variable can only outlive a loop iteration in Go versions <=1.21.
    // In Go 1.22 and later, the loop variable lifetimes changed to create a new
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  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. test/fixedbugs/issue33724.go

    	"strings"
    )
    
    type Inner struct {
    	Err int
    }
    
    func (i *Inner) NotExpectedInStackTrace() int {
    	if i == nil {
    		return 86
    	}
    	return 17 + i.Err
    }
    
    type Outer struct {
    	Inner
    }
    
    func ExpectedInStackTrace() {
    	var o *Outer
    	println(o.NotExpectedInStackTrace())
    }
    
    func main() {
        defer func() {
            if r := recover(); r != nil {
            	stacktrace := string(debug.Stack())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 15 16:43:44 UTC 2019
    - 873 bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/esreq/admin_esreq.jsp

    						<la:info id="msg" message="true">
    							<div class="alert alert-info">${msg}</div>
    						</la:info>
    						<la:errors />
    					</div>
    					<div class="col-md-12">
    						<div class="card card-outline card-primary">
    							<div class="card-header">
    								<h3 class="card-title">
    									<la:message key="labels.esreq_configuration" />
    								</h3>
    							</div>
    							<div class="card-body">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 20 09:26:42 UTC 2020
    - 2.3K bytes
    - Viewed (0)
Back to top