Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for logout (0.44 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def TPUDynamicLayoutPass : Pass<"tf-tpu-dynamic-layout-pass", "ModuleOp"> {
      let summary = "Inserts TPU layout ops to determine layout at run time.";
      let constructor = "TFTPU::CreateTPUDynamicLayoutPass()";
      let description = [{
        A pass that allows TPU input layout to be determined after JIT compilation.
        This is done by adding run-time ops that interpret compilation result and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. go.sum

    github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE=
    github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk=
    github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A=
    github.com/go-logfmt/logfmt v0.6.0 h1:wGYYu3uicYdqXVgoYbvnkrPVXkuLM1p1ifugDMEdRi4=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    			if toc := ldr.Lookup(".TOC.", i); toc != 0 {
    				ldr.SetSymValue(toc, tocAddr)
    			}
    		}
    	}
    
    	return order
    }
    
    // layout assigns file offsets and lengths to the segments in order.
    // Returns the file size containing all the segments.
    func (ctxt *Link) layout(order []*sym.Segment) uint64 {
    	var prev *sym.Segment
    	for _, seg := range order {
    		if prev == nil {
    			seg.Fileoff = uint64(HEADR)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. src/net/http/serve_test.go

    				_, _, line, _ := runtime.Caller(0)
    				lastLine <- line
    				<-exitHandler
    			})
    
    			if !tt.mustTimeout {
    				exitHandler <- true
    			}
    
    			logBuf := new(strings.Builder)
    			srvLog := log.New(logBuf, "", 0)
    			// When expecting to timeout, we'll keep the duration short.
    			dur := 20 * time.Millisecond
    			if !tt.mustTimeout {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            def forbiddenPath = ".transforms/not-allowed.txt"
    
            buildFile << """
                subprojects {
                    task badTask {
                        def projectLayout = project.layout
                        outputs.file { projectLayout.buildDirectory.file("${forbiddenPath}") } withPropertyName "output"
                        doLast { }
                    }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    // installed commands. If the GOBIN environment variable is
    // set, commands are installed to the directory it names instead
    // of DIR/bin. GOBIN must be an absolute path.
    //
    // Here's an example directory layout:
    //
    //	GOPATH=/home/user/go
    //
    //	/home/user/go/
    //	    src/
    //	        foo/
    //	            bar/               (go code in package bar)
    //	                x.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top