Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 36 of 36 for unwrapped (0.12 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/micro_time.go

    // copy-by-assign, despite the presence of (unexported) Pointer fields.
    func (t *MicroTime) DeepCopyInto(out *MicroTime) {
    	*out = *t
    }
    
    // NewMicroTime returns a wrapped instance of the provided time
    func NewMicroTime(time time.Time) MicroTime {
    	return MicroTime{time}
    }
    
    // DateMicro returns the MicroTime corresponding to the supplied parameters
    // by wrapping time.Date.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/pin_ops_with_side_effects.cc

      // this is an assumption flatbuffer_export makes, and this pass is
      // operating on IRs ready for exporting.
      for (Operation &op : fn.getBody().front().without_terminator()) {
        // We have to recurse, since we might have wrapped a side-effectful operator
        // in a tfl::CustomTfOp.
        if (op.walk([&](Operation *inner_op) {
                return op_has_side_effects_(inner_op) ? WalkResult::interrupt()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/base/base.go

    	// A plain interface check is not good enough because there might be
    	// other kinds of structured errors that are logically one unit and that
    	// add other context: only handling the wrapped errors would lose
    	// that context.
    	if err != nil && reflect.TypeOf(err).String() == "*errors.joinError" {
    		for _, e := range err.(interface{ Unwrap() []error }).Unwrap() {
    			Error(e)
    		}
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/time.go

    // type is effectively immutable in the time API, so it is safe to
    // copy-by-assign, despite the presence of (unexported) Pointer fields.
    func (t *Time) DeepCopyInto(out *Time) {
    	*out = *t
    }
    
    // NewTime returns a wrapped instance of the provided time
    func NewTime(time time.Time) Time {
    	return Time{time}
    }
    
    // Date returns the Time corresponding to the supplied parameters
    // by wrapping time.Date.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. src/crypto/aes/gcm_ppc64x.go

    	nonceSize int
    	// tagSize contains the size of the tag, in bytes.
    	tagSize int
    }
    
    func counterCryptASM(nr int, out, in []byte, counter *[gcmBlockSize]byte, key *uint32)
    
    // NewGCM returns the AES cipher wrapped in Galois Counter Mode. This is only
    // called by [crypto/cipher.NewGCM] via the gcmAble interface.
    func (c *aesCipherAsm) NewGCM(nonceSize, tagSize int) (cipher.AEAD, error) {
    	var h1, h2 uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/toolchain/switch.go

    // to resolve them.
    //
    // The client calls [Switcher.Error] repeatedly with errors encountered
    // and then calls [Switcher.Switch]. If the errors included any
    // *gover.TooNewErrors (potentially wrapped) and switching is
    // permitted by GOTOOLCHAIN, Switch switches to a new toolchain.
    // Otherwise Switch prints all the errors using base.Error.
    //
    // See https://go.dev/doc/toolchain#switch.
    type Switcher struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top