Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for TD (0.05 sec)

  1. cmd/batch-handlers.go

    	TraceVersionID() string
    }
    
    // TraceObjName returns name of object being traced
    func (td ObjectToDelete) TraceObjName() string {
    	return td.ObjectName
    }
    
    // TraceVersionID returns version-id of object being traced
    func (td ObjectToDelete) TraceVersionID() string {
    	return td.VersionID
    }
    
    // TraceObjName returns name of object being traced
    func (oi ObjectInfo) TraceObjName() string {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  2. src/crypto/tls/testdata/Client-TLSv10-ClientCert-ECDSA-RSA

    000002d0  bb 06 22 d7 d6 97 39 d1  f4 dc 95 06 b3 a4 a7 00  |.."...9.........|
    000002e0  d1 e5 98 bc 97 12 03 25  03 12 ab 20 4f 00 80 71  |.......%... O..q|
    000002f0  8d 3c 54 44 ba df 73 92  76 16 d1 ec b1 de a2 27  |.<TD..s.v......'|
    00000300  97 b1 e9 31 37 ea a7 5d  a9 00 ce 85 08 5a b3 ac  |...17..].....Z..|
    00000310  ef a6 8d c3 9f a5 ba 97  e8 bc 9f 81 63 77 7b 2e  |............cw{.|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def otherTask = Mock(Task)
            def otherTaskSet = [otherTask] as Set
            def dependentProject = Mock(Project)
            otherTask.project >> dependentProject
    
            when:
            def td = configuration.getTaskDependencyFromProjectDependency(false, "testit")
    
            and:
            rootProject.getTasksByName("testit", true) >> otherTaskSet
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/testdata/ppc64.s

    	SLBMFEE R3, R4                  // 7c801f26
    	SLBMFEV R3, R4                  // 7c801ea6
    	SLBMTE R3, R4                   // 7c801b24
    
    	TW $31, R0, R0                  // 7fe00008
    	TD $31, R0, R0                  // 7fe00088
    	DARN $1, R5                     // 7ca105e6
    
    	DCBF (R3)(R4)                   // 7c0418ac
    	DCBF (R3)(R0)                   // 7c0018ac
    	DCBF (R3)                       // 7c0018ac
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. src/database/sql/sql_test.go

    	}
    }
    
    func waitCondition(t testing.TB, fn func() bool) bool {
    	timeout := 5 * time.Second
    
    	type deadliner interface {
    		Deadline() (time.Time, bool)
    	}
    	if td, ok := t.(deadliner); ok {
    		if deadline, ok := td.Deadline(); ok {
    			timeout = time.Until(deadline)
    			timeout = timeout * 19 / 20 // Give 5% headroom for cleanup and error-reporting.
    		}
    	}
    
    	deadline := time.Now().Add(timeout)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    Rt,Zp,h3,m3,g3,y3,ed=C(()=>{l();Rt=X(Kp()),Zp=Rt.default,h3=Rt.default.objectify,m3=Rt.default.parse,g3=Rt.default.async,y3=Rt.default.sync});function Mt(i){return Array.isArray(i)?i.flatMap(e=>z([(0,td.default)({bubble:["screen"]})]).process(e,{parser:Zp}).root.nodes):Mt([i])}var td,za=C(()=>{l();nt();td=X(Bp());ed()});function Bt(i,e,t=!1){if(i==="")return e;let r=typeof e=="string"?(0,rd.default)().astSync(e):e;return r.walkClasses(n=>{let a=n.value,s=t&&a.startsWith("-");n.value=s?`-${i}${a.sli...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  7. src/cmd/internal/obj/arm64/asm7.go

    	case 103: /* VEOR3/VBCAX Va.B16, Vm.B16, Vn.B16, Vd.B16 */
    		ta := (p.From.Reg >> 5) & 15
    		tm := (p.Reg >> 5) & 15
    		td := (p.To.Reg >> 5) & 15
    		tn := ((p.GetFrom3().Reg) >> 5) & 15
    
    		if ta != tm || ta != tn || ta != td || ta != ARNG_16B {
    			c.ctxt.Diag("invalid arrangement: %v", p)
    			break
    		}
    
    		o1 = c.oprrr(p, p.As)
    		ra := int(p.From.Reg)
    		rm := int(p.Reg)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    // The base class to convert TensorFlow FusedBatchNormGrad*Op to HLO
    // BatchNormGradOp for training and a sequence of binary ops for inference.
    // TODO(b/145536565): move to legalize_tf_patterns.td if it applies.
    template <typename FusedBatchNormGradOpT>
    class ConvertFusedBatchNormGradBase
        : public OpRewritePattern<FusedBatchNormGradOpT> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/optimize.mlir

    func.func @dontReplaceOneHotFullyConnectedWithLookupBadIndexTypeWithOptionalAttribute(%arg: tensor<2xi64>) -> tensor<2x5xf32> {
      // Test whether ReplaceOneHotFullyConnectedWithLookup in optimize_patterns.td works as expected.
      %depth = arith.constant dense<3> : tensor<i32>
      %on = arith.constant dense<1.0> : tensor<f32>
      %off = arith.constant dense<0.0> : tensor<f32>
      %filter = arith.constant dense<7.0> : tensor<5x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
Back to top