Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for iterated (0.22 sec)

  1. src/net/http/h2_bundle.go

    		parent.kids = n
    	}
    }
    
    func (n *http2priorityNode) addBytes(b int64) {
    	n.bytes += b
    	for ; n != nil; n = n.parent {
    		n.subtreeBytes += b
    	}
    }
    
    // walkReadyInOrder iterates over the tree in priority order, calling f for each node
    // with a non-empty write queue. When f returns true, this function returns true and the
    // walk halts. tmp is used as scratch space for sorting.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  2. doc/go_spec.html

    </p>
    
    <pre>
    6
    6
    6
    </pre>
    
    <h4 id="For_range">For statements with <code>range</code> clause</h4>
    
    <p>
    A "for" statement with a "range" clause
    iterates through all entries of an array, slice, string or map, values received on
    a channel, or integer values from zero to an upper limit [<a href="#Go_1.22">Go 1.22</a>].
    For each entry it assigns <i>iteration values</i>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  3. pkg/apis/core/types.go

    	//
    	// If this field is set to IfPossible or Enabled, MountPropagation must be set to
    	// None (or be unspecified, which defaults to None).
    	//
    	// If this field is not specified, it is treated as an equivalent of Disabled.
    	//
    	// +featureGate=RecursiveReadOnlyMounts
    	// +optional
    	RecursiveReadOnly *RecursiveReadOnlyMode
    	// Required. If the path is not an absolute path (e.g. some/path) it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"allocatedResources": "AllocatedResources represents the compute resources allocated for this container by the node. Kubelet sets this value to Container.Resources.Requests upon successful pod admission and after successfully...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function tx(i,e){if(!!i){if(typeof i=="string")return qc(i,e);var...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // loses state temporarily. In both cases, startup probes will run again.
      // Is always true when no startupProbe is defined and container is running and
      // has passed the postStart lifecycle hook. The null value must be treated the
      // same as false.
      // +optional
      optional bool started = 9;
    
      // AllocatedResources represents the compute resources allocated for this container by the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	//
    	// If this field is set to IfPossible or Enabled, MountPropagation must be set to
    	// None (or be unspecified, which defaults to None).
    	//
    	// If this field is not specified, it is treated as an equivalent of Disabled.
    	//
    	// +featureGate=RecursiveReadOnlyMounts
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.28.md

    - Fixed attaching volumes after detach errors. Now volumes that failed to detach are not treated as attached, Kubernetes will make sure they are fully attached before they can be used by pods. ([#120595](https://github.com/kubernetes/kubernetes/pull/120595), [@jsafrane](https://github.com/jsafrane)) [SIG Apps and Storage]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    // This file implements logic for lowering TensorFlow dialect to XLA dialect.
    #include <algorithm>
    #include <cctype>
    #include <cmath>
    #include <cstddef>
    #include <cstdint>
    #include <iterator>
    #include <limits>
    #include <numeric>
    #include <optional>
    #include <string>
    #include <utility>
    #include <vector>
    
    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/STLExtras.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top