Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 66 of 66 for Region (0.1 sec)

  1. src/net/http/server.go

    // StripPrefix returns a handler that serves HTTP requests by removing the
    // given prefix from the request URL's Path (and RawPath if set) and invoking
    // the handler h. StripPrefix handles a request for a path that doesn't begin
    // with prefix by replying with an HTTP 404 not found error. The prefix must
    // match exactly: if the prefix in the request contains escaped characters
    // the reply is also an HTTP 404 not found error.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

          tf_device.return %2 : tensor<2xi32>
        }
    
        func.return %1 : tensor<2xi32>
      }
    
      // Tests extraction of an outside compiled cluster that contains ops wrapped
      // inside multiple regions of nested tf.IfRegion and tf.WhileRegion.
    
      // CHECK-LABEL: func @outside_compiled_ops_with_multiple_region_single_cluster
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    	} else {
    		switch form {
    		case D_FORM:
    			rel.Type = objabi.R_ADDRPOWER
    		case DS_FORM:
    			rel.Type = objabi.R_ADDRPOWER_DS
    		}
    	}
    	return
    }
    
    // Determine the mask begin (mb) and mask end (me) values
    // for a valid word rotate mask. A valid 32 bit mask is of
    // the form 1+0*1+ or 0*1+0*.
    //
    // Note, me is inclusive.
    func decodeMask32(mask uint32) (mb, me uint32, valid bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/asmz.go

    	op_TBEDR   uint32 = 0xB350 // FORMAT_RRF5       CONVERT HFP TO BFP (long to short)
    	op_TBEGIN  uint32 = 0xE560 // FORMAT_SIL        TRANSACTION BEGIN
    	op_TBEGINC uint32 = 0xE561 // FORMAT_SIL        TRANSACTION BEGIN
    	op_TCDB    uint32 = 0xED11 // FORMAT_RXE        TEST DATA CLASS (long BFP)
    	op_TCEB    uint32 = 0xED10 // FORMAT_RXE        TEST DATA CLASS (short BFP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    	// uses cgo as well, cgo will be processing both and will
    	// translate both into x.cgo1.go in the objdir, overwriting one.
    	// Rename x.go to _x_swig.go to avoid this problem.
    	// We ignore files in the original dir that begin with underscore
    	// so _x_swig.go cannot conflict with an original file we were
    	// going to compile.
    	goFile = objdir + goFile
    	newGoFile := objdir + "_" + base + "_swig.go"
    	if cfg.BuildX || cfg.BuildN {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    signature for a function implemented outside Go, such as an assembly routine.
    </p>
    
    <pre>
    func min(x int, y int) int {
    	if x &lt; y {
    		return x
    	}
    	return y
    }
    
    func flushICache(begin, end uintptr)  // implemented externally
    </pre>
    
    <h3 id="Method_declarations">Method declarations</h3>
    
    <p>
    A method is a <a href="#Function_declarations">function</a> with a <i>receiver</i>.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top