Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for Region (0.12 sec)

  1. api/openapi-spec/v3/apis__apiregistration.k8s.io__v1_openapi.json

                  "uniqueItems": true
                }
              },
              {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 135.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/ops.mlir

      }) : (tensor<i1>) -> (tensor<1xf32>)
      func.return %0 : tensor<1xf32>
    }
    
    func.func @if_then(%arg0: tensor<i1>, %arg1: tensor<1xf32>) -> tensor<1xf32> {
      // expected-error @+1 {{'tfl.if' op expected 2 regions}}
      %0 = "tfl.if"(%arg0) ({
        %1 = "tfl.sub"(%arg1, %arg1) {fused_activation_function = "NONE"} : (tensor<1xf32>, tensor<1xf32>) -> tensor<1xf32>
        "tfl.yield"(%1) : (tensor<1xf32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     * <h4>Automatically closing</h4>
     *
     * You can extract a {@link Future} that represents the result of the last step in the pipeline by
     * calling {@link #finishToFuture()}. All objects the pipeline has captured for closing will begin
     * to be closed asynchronously <b>after</b> the returned {@code Future} is done: the future
     * completes before closing starts, rather than once it has finished.
     *
     * <pre>{@code
     * FluentFuture<UserName> userName =
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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