Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 161 for pT (0.02 sec)

  1. src/main/webapp/js/admin/plugins/form-validator/lang/pt.js

    ion"==typeof define&&define.amd?define(["jquery"],function(a){return b(a)}):"object"==typeof module&&module.exports?module.exports=b(require("jquery")):b(a.jQuery)}(this,function(a){!function(a,b){"use strict";a.formUtils.registerLoadedModule("lang/pt"),a(b).bind("validatorsLoaded",function(){a.formUtils.LANG={errorTitle:"O formulário não pode ser enviado!",requiredField:"Campo de preenchimento obrigatório",requiredFields:"Você ainda não preencheu todos os campos obrigatórios",badTime:"A hora digitada...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  2. src/image/draw/clip_test.go

    		false,
    		image.Rect(20, 0, 46, 47),
    		image.Pt(20, 0),
    		image.Pt(20, 0),
    	},
    	{
    		"clip sr and mr",
    		image.Rect(0, 0, 100, 100),
    		image.Rect(0, 0, 100, 100),
    		image.Rect(23, 23, 55, 86),
    		image.Rect(44, 44, 87, 58),
    		image.Pt(10, 10),
    		image.Pt(11, 11),
    		false,
    		image.Rect(33, 33, 45, 47),
    		image.Pt(43, 43),
    		image.Pt(44, 44),
    	},
    }
    
    func TestClip(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. src/crypto/cipher/cipher_test.go

    		cbce.CryptBlocks(ct, pt[:0])
    		assertEqual("CBC encrypt", ct, pt)
    
    		cbcd := cipher.NewCBCDecrypter(b, iv)
    		cbcd.CryptBlocks(ct, pt[:0])
    		assertEqual("CBC decrypt", ct, pt)
    
    		cfbe := cipher.NewCFBEncrypter(b, iv)
    		cfbe.XORKeyStream(ct, pt[:0])
    		assertEqual("CFB encrypt", ct, pt)
    
    		cfbd := cipher.NewCFBDecrypter(b, iv)
    		cfbd.XORKeyStream(ct, pt[:0])
    		assertEqual("CFB decrypt", ct, pt)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 21:42:23 UTC 2016
    - 2.2K bytes
    - Viewed (0)
  4. test/fixedbugs/issue4316.go

    	if countArg == nil {
    		countResult = 0
    		return
    	}
    	countArg = *countArg
    	countPeano()
    	countResult++
    }
    
    var s = "(())"
    var pT = 0
    
    func p() {
    	if pT >= len(s) {
    		return
    	}
    	if s[pT] == '(' {
    		pT += 1
    		p()
    		if pT < len(s) && s[pT] == ')' {
    			pT += 1
    		} else {
    			return
    		}
    		p()
    	}
    }
    
    func main() {
    	countArg = makePeano(4096)
    	countPeano()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 972 bytes
    - Viewed (0)
  5. test/fixedbugs/bug322.dir/main.go

    	// var i1 I = t
    	// i1.M()
    	
    	// This combination is illegal because
    	// PM requires a pointer receiver.
    	// var pi1 PI = t
    	// pi1.PM()
    
    	var pt = &t
    	pt.M()
    	pt.PM()
    
    	var i2 I = pt
    	i2.M()
    
    	var pi2 PI = pt
    	pi2.PM()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 24 23:48:19 UTC 2011
    - 540 bytes
    - Viewed (0)
  6. src/crypto/internal/boring/ecdh.go

    		return nil, fail("EC_KEY_get0_private_key")
    	}
    	pt := C._goboringcrypto_EC_POINT_new(group)
    	if pt == nil {
    		return nil, fail("EC_POINT_new")
    	}
    	if C._goboringcrypto_EC_POINT_mul(group, pt, kbig, nil, nil, nil) == 0 {
    		C._goboringcrypto_EC_POINT_free(pt)
    		return nil, fail("EC_POINT_mul")
    	}
    	bytes, err := pointBytesECDH(k.curve, group, pt)
    	if err != nil {
    		C._goboringcrypto_EC_POINT_free(pt)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 17:51:31 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/envoyfilter/monitoring.go

    func IncrementEnvoyFilterErrorMetric(pt PatchType) {
    	if !features.EnableEnvoyFilterMetrics {
    		return
    	}
    	envoyFilterStatus.With(patchType.Value(string(pt))).With(resultType.Value(string(Error))).Record(1)
    }
    
    func RecordMetrics() {
    	if !features.EnableEnvoyFilterMetrics {
    		return
    	}
    	envoyFilterMutex.RLock()
    	defer envoyFilterMutex.RUnlock()
    	for name, pmap := range envoyFilterStatusMap {
    		for pt, applied := range pmap {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. test/typeparam/settable.go

    	*B
    }
    
    // Takes two type parameters where PT = *T
    func fromStrings1[T any, PT Setter[T]](s []string) []T {
    	result := make([]T, len(s))
    	for i, v := range s {
    		// The type of &result[i] is *T which is in the type list
    		// of Setter, so we can convert it to PT.
    		p := PT(&result[i])
    		// PT has a Set method.
    		p.Set(v)
    	}
    	return result
    }
    
    func fromStrings1a[T any, PT Setter[T]](s []string) []PT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:48:58 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  9. test/interface/embed.go

    type T int64
    func (t T) M() int64 { return int64(t) }
    var t = T(Value)
    var pt = &t
    var ti Inter = t
    
    type S struct { Inter }
    var s = S{ ti }
    var ps = &s
    
    var i Inter
    
    var ok = true
    
    func check(s string, v int64) {
    	if v != Value {
    		println(s, v)
    		ok = false
    	}
    }
    
    func main() {
    	check("t.M()", t.M())
    	check("pt.M()", pt.M())
    	check("ti.M()", ti.M())
    	check("s.M()", s.M())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Feb 19 06:33:41 UTC 2012
    - 924 bytes
    - Viewed (0)
  10. test/interface/embed2.go

    func main() {
    	check("t.M()", t.M())
    	check("pt.M()", pt.M())
    	check("ti.M()", ti.M())
    	check("pti.M()", pti.M()) // ERROR "pointer to interface, not interface|no field or method M"
    	check("s.M()", s.M())
    	check("ps.M()", ps.M())
    
    	i = t
    	check("i = t; i.M()", i.M())
    	check("i = t; pi.M()", pi.M()) // ERROR "pointer to interface, not interface|no field or method M"
    
    	i = pt
    	check("i = pt; i.M()", i.M())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 03 17:55:56 UTC 2020
    - 1.5K bytes
    - Viewed (0)
Back to top