Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 104 for useAbs (0.14 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    	if !CanUse1InsnTLS(ctxt) {
    		useTLS := func(p *obj.Prog) bool {
    			// Only need to mark the second instruction, which has
    			// REG_TLS as Index. (It is okay to interrupt and restart
    			// the first instruction.)
    			return p.From.Index == REG_TLS
    		}
    		obj.MarkUnsafePoints(ctxt, s.Func().Text, newprog, useTLS, nil)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    	// without unlocking it. It does that when the user passes a *RawBytes scan
    	// target. In that case, we need to prevent awaitDone from closing the Rows
    	// while the user's still using the memory. See go.dev/issue/60304.
    	//
    	// It is only used by Scan, Next, and NextResultSet which are expected
    	// not to be called concurrently.
    	closemuScanHold bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.5.md

    - **Node**
      - [alpha] Added ability to preserve access to host userns when userns remapping is enabled in container runtime ([kubernetes/features#127](https://github.com/kubernetes/enhancements/issues/127))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/generic.rules

    	&& isSameCall(sym, "runtime.memmove")
    	&& s1.Uses == 1 && s2.Uses == 1 && s3.Uses == 1
    	&& isInlinableMemmove(dst, src, int64(sz), config)
    	&& clobber(s1, s2, s3, call)
    	=> (Move {types.Types[types.TUINT8]} [int64(sz)] dst src mem)
    
    // Match post-expansion calls, register version.
    (SelectN [0] call:(StaticCall {sym} dst src (Const(64|32) [sz]) mem))
    	&& sz >= 0
    	&& call.Uses == 1 // this will exclude all calls with results
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  5. cluster/gce/gci/configure-helper.sh

      # so drop them.
      - level: None
        users: ["system:kube-proxy"]
        verbs: ["watch"]
        resources:
          - group: "" # core
            resources: ["endpoints", "services", "services/status"]
      - level: None
        # Ingress controller reads 'configmaps/ingress-uid' through the unsecured port.
        # TODO(#46983): Change this to the ingress controller service account.
        users: ["system:unsecured"]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (MULW (NEG  x) y) => (MNEGW x y)
    
    // madd/msub
    (ADD a l:(MUL  x y)) && l.Uses==1 && clobber(l) => (MADD a x y)
    (SUB a l:(MUL  x y)) && l.Uses==1 && clobber(l) => (MSUB a x y)
    (ADD a l:(MNEG x y)) && l.Uses==1 && clobber(l) => (MSUB a x y)
    (SUB a l:(MNEG x y)) && l.Uses==1 && clobber(l) => (MADD a x y)
    
    (ADD a l:(MULW  x y)) && v.Type.Size() <= 4 && l.Uses==1 && clobber(l) => (MADDW a x y)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  7. pkg/api/pod/util_test.go

    						RequiredDuringSchedulingIgnoredDuringExecution: []api.PodAffinityTerm{},
    					},
    				},
    			},
    		},
    		{
    			name:    "[PodAffinity/required] feature disabled, only old pod uses MatchLabelKeys/MismatchLabelKeys field",
    			enabled: false,
    			oldPodSpec: &api.PodSpec{
    				Affinity: &api.Affinity{
    					PodAffinity: &api.PodAffinity{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    DETAIL: FIELD | CONSTR | METHOD org/hamcrest/class-use/BaseDescription.html Overview Package Class Use Tree Deprecated Index Help PREV NEXT FRAMES NO FRAMES All Classes Uses of Class org.hamcrest.BaseDescription Packages that use BaseDescription org.hamcrest The stable API defining Matcher and its associated interfaces and classes. Uses of BaseDescription in org.hamcrest Subclasses of BaseDescription in org.hamcrest class StringDescription A Description that is stored as a string. Overview Package Class...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 236.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      llvm::append_range(worklist, op->getUsers());
    
      // Look for any `AssignVariableOp` that uses the result of this op.
      while (!worklist.empty()) {
        mlir::Operation* const use = worklist.pop_back_val();
    
        // Follow the `CastOp`/`IdentityOp`'s users to handle the `RestoreV2` ->
        // (optionally `IdentityOp`) -> `CastOp` `AssignVariableOp` case.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewriteMIPS.go

    	// cond: (is16Bit(int64(off1+off2)) || x.Uses == 1)
    	// result: (MOVBUload [off1+off2] {sym} ptr mem)
    	for {
    		off1 := auxIntToInt32(v.AuxInt)
    		sym := auxToSym(v.Aux)
    		x := v_0
    		if x.Op != OpMIPSADDconst {
    			break
    		}
    		off2 := auxIntToInt32(x.AuxInt)
    		ptr := x.Args[0]
    		mem := v_1
    		if !(is16Bit(int64(off1+off2)) || x.Uses == 1) {
    			break
    		}
    		v.reset(OpMIPSMOVBUload)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 14:43:03 UTC 2023
    - 176.6K bytes
    - Viewed (0)
Back to top