Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 90 for _objects (0.44 sec)

  1. src/reflect/value.go

    	case Pointer:
    		ptr := v.ptr
    		if v.flag&flagIndir != 0 {
    			if v.typ().IfaceIndir() {
    				// This is a pointer to a not-in-heap object. ptr points to a uintptr
    				// in the heap. That uintptr is the address of a not-in-heap object.
    				// In general, pointers to not-in-heap objects can be total junk.
    				// But Elem() is asking to dereference it, so the user has asserted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // Key: node_id.
      // Value: all object names that node_id appears as.
      // Each object name corresponds to a unique path from the root of the object
      // graph.
      // The common intuitive case is when there is only one name for a given
      // object, which corresponds to the object graph being a tree.
      //
      // But, there cases where the object graph is a general graph. For
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. samples/addons/grafana.yaml

    iod\"}\n  [$__rate_interval])\n)","legendFormat":"Bytes ({{pod}})"},{"datasource":{"type":"prometheus","uid":"$datasource"},"expr":"sum by (pod) (\n  rate(\n    go_memstats_mallocs_total{app=\"istiod\"}\n  [$__rate_interval])\n)","legendFormat":"Objects ({{pod}})"}],"title":"Memory Allocations","type":"timeseries"},{"datasource":{"type":"datasource","uid":"-- Mixed --"},"description":"CPU usage of each running instance","fieldConfig":{"defaults":{"custom":{"fillOpacity":10,"gradientMode":"hue","...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/bootstrap.min.js.map

    return false\n  }\n\n  _getConfig(config) {\n    const dataAttributes = $(this.element).data()\n\n    Object.keys(dataAttributes)\n      .forEach((dataAttr) => {\n        if (DISALLOWED_ATTRIBUTES.indexOf(dataAttr) !== -1) {\n          delete dataAttributes[dataAttr]\n        }\n      })\n\n    config = {\n      ...this.constructor.Default,\n      ...dataAttributes,\n      ...typeof config === 'object' && config ? config : {}\n    }\n\n    if (typeof config.delay === 'number') {\n      config.delay...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 185.8K bytes
    - Viewed (0)
  5. src/main/webapp/js/bootstrap.min.js.map

    fallbackPlacement : '(string|array)',\n  boundary          : '(string|element)',\n  sanitize          : 'boolean',\n  sanitizeFn        : '(null|function)',\n  whiteList         : 'object',\n  popperConfig      : '(null|object)'\n}\n\nconst AttachmentMap = {\n  AUTO   : 'auto',\n  TOP    : 'top',\n  RIGHT  : 'right',\n  BOTTOM : 'bottom',\n  LEFT   : 'left'\n}\n\nconst Default = {\n  animation         : true,\n  template          : '<div class=\"tooltip\" role=\"tooltip\">' +\n                    '<div class=\"arrow\"></div>'...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jan 11 06:54:28 UTC 2020
    - 189.9K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    			// Earlier timer to wait for.
    			pollUntil = w
    		}
    	}
    
    	// We have nothing to do.
    	//
    	// If we're in the GC mark phase, can safely scan and blacken objects,
    	// and have work to do, run idle-time marking rather than give up the P.
    	if gcBlackenEnabled != 0 && gcMarkWorkAvailable(pp) && gcController.addIdleMarkWorker() {
    		node := (*gcBgMarkWorkerNode)(gcBgMarkWorkerPool.pop())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      Alice did not feel encouraged to ask any more questions about
    it, so she turned to the Mock Turtle, and said `What else had you
    to learn?'
    
      `Well, there was Mystery,' the Mock Turtle replied, counting
    off the subjects on his flappers, `--Mystery, ancient and modern,
    with Seaography:  then Drawling--the Drawling-master was an old
    conger-eel, that used to come once a week:  HE taught us
    Drawling, Stretching, and Fainting in Coils.'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      Alice did not feel encouraged to ask any more questions about
    it, so she turned to the Mock Turtle, and said `What else had you
    to learn?'
    
      `Well, there was Mystery,' the Mock Turtle replied, counting
    off the subjects on his flappers, `--Mystery, ancient and modern,
    with Seaography:  then Drawling--the Drawling-master was an old
    conger-eel, that used to come once a week:  HE taught us
    Drawling, Stretching, and Fainting in Coils.'
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  9. doc/go1.17_spec.html

    </p>
    
    <pre>
    make([]int, 50, 100)
    new([100]int)[0:50]
    </pre>
    
    <p>
    Like arrays, slices are always one-dimensional but may be composed to construct
    higher-dimensional objects.
    With arrays of arrays, the inner arrays are, by construction, always the same length;
    however with slices of slices (or arrays of slices), the inner lengths may vary dynamically.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  10. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    nyan.to
    at.vg
    blog.vu
    dev.vu
    me.vu
    
    // V.UA Domain Administrator : https://domain.v.ua/
    // Submitted by Serhii Rostilo <******@****.***>
    v.ua
    
    // Vultr Objects : https://www.vultr.com/products/object-storage/
    // Submitted by Niels Maumenee <******@****.***>
    *.vultrobjects.com
    
    // Waffle Computer Inc., Ltd. : https://docs.waffleinfo.com
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
Back to top