Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for derp (0.03 sec)

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

    //
    // +protobuf.options.marshal=false
    // +protobuf.as=Timestamp
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    type Time struct {
    	time.Time `protobuf:"-"`
    }
    
    // DeepCopyInto creates a deep-copy of the Time value.  The underlying time.Time
    // 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) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/remove_unused_arguments.cc

            }
            used_argument[i] = operand.get();
          }
        }
      }
      return invariant;
    }
    
    Operation* GetAnyReturn(Region* region) {
      Operation* result;
      // We only go one level deep, since "returns" in nested functions
      // and return-as-yield CF don't belong to us.
      for (Block& block : region->getBlocks()) {
        for (Operation& op : block.getOperations()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  3. src/encoding/pem/pem.go

    type Block struct {
    	Type    string            // The type, taken from the preamble (i.e. "RSA PRIVATE KEY").
    	Headers map[string]string // Optional headers.
    	Bytes   []byte            // The decoded bytes of the contents. Typically a DER encoded ASN.1 structure.
    }
    
    // getLine results the first \r\n or \n delineated line from the given byte
    // array. The line does not include trailing whitespace or the trailing new
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top