Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for predates (0.23 sec)

  1. src/net/http/h2_bundle.go

    		return s.group.Now()
    	}
    	return time.Now()
    }
    
    // newTimer creates a new time.Timer, or a synthetic timer in tests.
    func (s *http2Server) newTimer(d time.Duration) http2timer {
    	if s.group != nil {
    		return s.group.NewTimer(d)
    	}
    	return http2timeTimer{time.NewTimer(d)}
    }
    
    // afterFunc creates a new time.AfterFunc timer, or a synthetic timer in tests.
    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. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

    static ConvertOp CastValueToI64(Location loc, Value value,
                                    PatternRewriter *rewriter) {
      return rewriter->create<ConvertOp>(loc, value, rewriter->getIntegerType(64));
    }
    
    // Creates an unpack op along the 0th dimension of the tensor. The `value` input
    // must be a ranked tensor.
    static TF::UnpackOp UnpackTensorAlongZeroDim(Location loc, Value value,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      repeated NodeSelectorTerm nodeSelectorTerms = 1;
    }
    
    // A node selector requirement is a selector that contains values, a key, and an operator
    // that relates the key and values.
    message NodeSelectorRequirement {
      // The label key that the selector applies to.
      optional string key = 1;
    
      // Represents a key's relationship to a set of values.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// persistent volumes at the same time.
    	//
    	// +optional
    	Ephemeral *EphemeralVolumeSource
    }
    
    // PersistentVolumeSource is similar to VolumeSource but meant for the administrator who creates PVs.
    // Exactly one of its members must be set.
    type PersistentVolumeSource struct {
    	// GCEPersistentDisk represents a GCE Disk resource that is attached to a
    	// kubelet's host machine and then exposed to the pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	return map_NodeSelector
    }
    
    var map_NodeSelectorRequirement = map[string]string{
    	"":         "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.",
    	"key":      "The label key that the selector applies to.",
    	"operator": "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // +listType=atomic
      repeated NodeSelectorTerm nodeSelectorTerms = 1;
    }
    
    // A node selector requirement is a selector that contains values, a key, and an operator
    // that relates the key and values.
    message NodeSelectorRequirement {
      // The label key that the selector applies to.
      optional string key = 1;
    
      // Represents a key's relationship to a set of values.
    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. CHANGELOG/CHANGELOG-1.8.md

    * Add error count and time-taken metrics for storage operations such as mount and attach, per-volume-plugin. ([#50036](https://github.com/kubernetes/kubernetes/pull/50036), [@wongma7](https://github.com/wongma7))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/types.go

    	// Default false.
    	// +optional
    	ReadOnly bool `json:"readOnly,omitempty" protobuf:"varint,2,opt,name=readOnly"`
    }
    
    // PersistentVolumeSource is similar to VolumeSource but meant for the
    // administrator who creates PVs. Exactly one of its members must be set.
    type PersistentVolumeSource struct {
    	// gcePersistentDisk represents a GCE Disk resource that is attached to a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.28.md

    - Supported `BackoffLimitPerIndex` in Jobs. ([#118009](https://github.com/kubernetes/kubernetes/pull/118009), [@mimowo](https://github.com/mimowo))
    - The `IPTablesOwnershipCleanup` feature (KEP-3178) is now GA; kubelet no longer
      creates the `KUBE-MARK-DROP` chain (which has been unused for several releases)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier_test.go

    	// the return value of tracePacket.
    	outputs []string
    
    	// markMasq tracks whether the packet has been marked for masquerading
    	markMasq bool
    }
    
    // newIPTablesTracer creates an iptablesTracer. nodeIPs are the IPs to treat as local
    // node IPs (for determining whether rules with "--src-type LOCAL" or "--dst-type LOCAL"
    // match).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
Back to top