Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 38 of 38 for addSdk (0.21 sec)

  1. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          <match value="-lh5-" type="string" offset="2"/>
          <match value="-lh6-" type="string" offset="2"/>
          <match value="-lh7-" type="string" offset="2"/>
        </magic>
        <!-- FESS added -->
        <glob pattern="*.lha"/>
        <glob pattern="*.lzh"/>
      </mime-type>
    
      <mime-type type="application/x-lharc">
        <magic priority="50">
          <match value="-lh0-" type="string" offset="2"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	case s.hasOpenDefers && (base.Ctxt.Flag_shared || base.Ctxt.Flag_dynlink) && base.Ctxt.Arch.Name == "386":
    		// Don't support open-coded defers for 386 ONLY when using shared
    		// libraries, because there is extra code (added by rewriteToUseGot())
    		// preceding the deferreturn/ret code that we don't track correctly.
    		s.hasOpenDefers = false
    	}
    	if s.hasOpenDefers && s.instrumentEnterExit {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    		} else {
    			delete(p.conns, key)
    		}
    	}
    	delete(p.keys, cc)
    }
    
    func (p *http2clientConnPool) closeIdleConnections() {
    	p.mu.Lock()
    	defer p.mu.Unlock()
    	// TODO: don't close a cc if it was just added to the pool
    	// milliseconds ago and has never been used. There's currently
    	// a small race window with the HTTP/1 Transport's integration
    	// where it can add an idle conn just before using it, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-67602`](https://youtrack.jetbrains.com/issue/KT-67602) Compose gradle plugin: a deprecated plugin option 'experimentalStrongSkipping' is added by default that causes a warning
    - [`KT-67200`](https://youtrack.jetbrains.com/issue/KT-67200) Compose gradle plugin: 'suppressKotlinVersionCompatibilityCheck' option is duplicated if added as a kotlin option for the KotlinCompile task and kapt is used
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  5. docs/en/docs/release-notes.md

    The key updated docs are:
    
    * Python Types Intro:
        * [Type Hints with Metadata Annotations](https://fastapi.tiangolo.com/python-types/#type-hints-with-metadata-annotations).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    //   "\08\02*\08\08\01\1A\01\01\22\01\00"
    
    // CHECK-LABEL: infeed_dequeue_tuple_sharding
    func.func @infeed_dequeue_tuple_sharding() -> tensor<8xi32> {
      // CHECK: "mhlo.infeed"
      // An additional sharding is added at the end to account for token result.
      // Proto debug string:
      //   type: TUPLE
      //   tuple_shardings {
      //     type: MAXIMAL
      //     tile_assignment_dimensions: 1
      //     tile_assignment_devices: 0
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite386.go

    		v.AddArg3(base, val, mem)
    		return true
    	}
    	return false
    }
    func rewriteValue386_Op386ADDSD(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (ADDSD x l:(MOVSDload [off] {sym} ptr mem))
    	// cond: canMergeLoadClobber(v, l, x) && clobber(l)
    	// result: (ADDSDload x [off] {sym} ptr mem)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			x := v_0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 21:05:46 UTC 2023
    - 262.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/rewriteARM.go

    			v.AddArg3(x, y, a)
    			return true
    		}
    		break
    	}
    	return false
    }
    func rewriteValueARM_OpARMADDD(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	// match: (ADDD a (MULD x y))
    	// cond: a.Uses == 1 && buildcfg.GOARM.Version >= 6
    	// result: (MULAD a x y)
    	for {
    		for _i0 := 0; _i0 <= 1; _i0, v_0, v_1 = _i0+1, v_1, v_0 {
    			a := v_0
    			if v_1.Op != OpARMMULD {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
Back to top