Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for setIvy (0.92 sec)

  1. src/crypto/tls/conn.go

    	return
    }
    
    func roundUp(a, b int) int {
    	return a + (b-a%b)%b
    }
    
    // cbcMode is an interface for block ciphers using cipher block chaining.
    type cbcMode interface {
    	cipher.BlockMode
    	SetIV([]byte)
    }
    
    // decrypt authenticates and decrypts the record if protection is active at
    // this stage. The returned plaintext might overlap with the input.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. src/reflect/all_test.go

    		got := e.Interface()
    		if got != want {
    			t.Errorf("%q: want (%T) %v, got (%T) %v", k.String(), want, want, got, got)
    		}
    		if setkey, key := valueToString(k), valueToString(iter.Key()); setkey != key {
    			t.Errorf("MapIter.Key() = %q, MapIter.SetKey() = %q", key, setkey)
    		}
    		if setval, val := valueToString(e), valueToString(iter.Value()); setval != val {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  3. src/reflect/value.go

    	ktype := t.Key
    
    	iter.m.mustBeExported() // do not let unexported m leak
    	key := Value{ktype, iterkey, iter.m.flag | flag(ktype.Kind()) | flagIndir}
    	key = key.assignTo("reflect.MapIter.SetKey", v.typ(), target)
    	typedmemmove(v.typ(), v.ptr, key.ptr)
    }
    
    // Value returns the value of iter's current map entry.
    func (iter *MapIter) Value() Value {
    	if !iter.hiter.initialized() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

          </match>
        </magic>
      </mime-type>
    
      <mime-type type="application/set-payment"/>
      <mime-type type="application/set-payment-initiation">
        <glob pattern="*.setpay"/>
      </mime-type>
      <mime-type type="application/set-registration"/>
      <mime-type type="application/set-registration-initiation">
        <glob pattern="*.setreg"/>
      </mime-type>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
Back to top