Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 183 for outlier (0.11 sec)

  1. platforms/documentation/docs/src/docs/css/base.css

    }
    
    .docs-navigation a:focus {
        outline: none;
    }
    
    .docs-navigation a:hover {
        color: #35c1e4;
        text-decoration: none;
    }
    
    .docs-navigation a code {
        color: #02303A;
        overflow-wrap: break-word;
        padding: 0;
        word-break: break-all;
    }
    
    .docs-navigation a.active {
        text-decoration: underline;
        outline: 0;
        border: none;
        outline-style: none;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/crawlinginfo/admin_crawlinginfo_details.jsp

                                                                    data-dismiss="modal">
                                                                <la:message key="labels.crud_button_cancel"/>
                                                            </button>
                                                            <button type="submit" class="btn btn-outline-light"
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 10.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  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. 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. tensorflow/compiler/mlir/lite/tests/tfl_while_outline.mlir

    // Test to verify loop outlining.
    
    // RUN: tf-opt --split-input-file --tfl-while-loop-outline %s | FileCheck %s
    // Check that while loop outlining is nop if re-ran.
    // RUN: tf-opt --tfl-while-loop-outline %s -o %t1
    // RUN: tf-opt --tfl-while-loop-outline %t1 -o %t2
    // RUN: diff %t1 %t2
    
    // CHECK-LABEL: func @while
    func.func @while() -> tensor<1xf32>
        attributes {tf.entry_function = {outputs = "result"}} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. src/cmd/covdata/metamerge.go

    	mm.ResetModeAndGranularity()
    }
    
    // emitMeta encodes and writes out a new coverage meta-data file as
    // part of a merge operation, specifically a merge with the
    // "-pcombine" flag.
    func (mm *metaMerge) emitMeta(outdir string, pcombine bool) [16]byte {
    	fh := md5.New()
    	blobs := [][]byte{}
    	tlen := uint64(unsafe.Sizeof(coverage.MetaFileHeader{}))
    	for _, p := range mm.pkgs {
    		var blob []byte
    		if pcombine {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 17:17:47 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    func ZosJobname() (jobname string, err error) {
    	var pgtha Pgtha
    	pgtha.Pid = uint32(Getpid())
    	pgtha.Accesspid = PGTHA_CURRENT
    	pgtha.Flag1 = PGTHA_PROCESS
    	var out [256]byte
    	var outlen uint32
    	outlen = 256
    	rv, rc, rn := BpxGetthent(&pgtha, &outlen, unsafe.Pointer(&out[0]))
    	if rv == 0 {
    		gthc := []byte{0x87, 0xa3, 0x88, 0x83} // 'gthc' in ebcdic
    		ix := bytes.Index(out[:], gthc)
    		if ix == -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top