Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 126 for indices (0.13 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    	}, 30*time.Second, p.stop)
    }
    
    // queueingStrategy indicates how the scheduling queue should enqueue the Pod from unschedulable pod pool.
    type queueingStrategy int
    
    const (
    	// queueSkip indicates that the scheduling queue should skip requeuing the Pod to activeQ/backoffQ.
    	queueSkip queueingStrategy = iota
    	// queueAfterBackoff indicates that the scheduling queue should requeue the Pod after backoff is completed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	// requireStructuralSchema indicates that any schemas present must be structural
    	requireStructuralSchema bool
    	// requirePrunedDefaults indicates that defaults must be pruned
    	requirePrunedDefaults bool
    	// requireAtomicSetType indicates that the items type for a x-kubernetes-list-type=set list must be atomic.
    	requireAtomicSetType bool
    	// requireMapListKeysMapSetValidation indicates that:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  3. src/net/http/request.go

    // Is lets http.ErrNotSupported match errors.ErrUnsupported.
    func (pe *ProtocolError) Is(err error) bool {
    	return pe == ErrNotSupported && err == errors.ErrUnsupported
    }
    
    var (
    	// ErrNotSupported indicates that a feature is not supported.
    	//
    	// It is returned by ResponseController methods to indicate that
    	// the handler does not support the method, and by the Push method
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	SetElementOrder bool
    	// IgnoreChangesAndAdditions indicates if we keep the changes and additions in the patch.
    	IgnoreChangesAndAdditions bool
    	// IgnoreDeletions indicates if we keep the deletions in the patch.
    	IgnoreDeletions bool
    	// We introduce a new value retainKeys for patchStrategy.
    	// It indicates that all fields needing to be preserved must be
    	// present in the `retainKeys` list.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  5. src/runtime/mgcmark.go

    	// a syscall, so its overhead is nontrivial). Higher values
    	// make the system less responsive to incoming work.
    	drainCheckThreshold = 100000
    
    	// pagesPerSpanRoot indicates how many pages to scan from a span root
    	// at a time. Used by special root marking.
    	//
    	// Higher values improve throughput by increasing locality, but
    	// increase the minimum latency of a marking operation.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// InitContainersToStart keeps a list of indexes for the init containers to
    	// start, where the index is the index of the specific init container in the
    	// pod spec (pod.Spec.InitContainers).
    	// NOTE: This is a field for SidecarContainers feature. Either this or
    	// NextInitContainerToStart will be set.
    	InitContainersToStart []int
    	// ContainersToStart keeps a list of indexes for the containers to start,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  7. pkg/apis/admissionregistration/types.go

    type ReinvocationPolicyType string
    
    var (
    	// NeverReinvocationPolicy indicates that the webhook must not be called more than once in a
    	// single admission evaluation.
    	NeverReinvocationPolicy ReinvocationPolicyType = "Never"
    	// IfNeededReinvocationPolicy indicates that the webhook may be called at least one
    	// additional time as part of the admission evaluation if the object being admitted is
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/route/route.go

    	}
    
    	return model.BuildSubsetKey(model.TrafficDirectionOutbound, destination.Subset, h, port)
    }
    
    type RouteOptions struct {
    	// IsTLS indicates if the route is intended for a TLS listener
    	IsTLS bool
    	// IsHTTP3AltSvcHeaderNeeded indicates if HTTP3 alt-svc header needs to be inserted
    	IsHTTP3AltSvcHeaderNeeded bool
    	Mesh                      *meshconfig.MeshConfig
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  9. src/html/template/exec_test.go

    	{"out of range", "{{slice .SI 2 2 5}}", "", tVal, false},
    	{"len(s) < indexes < cap(s)", "{{slice .SICap 6 10}}", "[0 0 0 0]", tVal, true},
    	{"len(s) < indexes < cap(s)", "{{slice .SICap 6 10 10}}", "[0 0 0 0]", tVal, true},
    	{"indexes > cap(s)", "{{slice .SICap 10 11}}", "", tVal, false},
    	{"indexes > cap(s)", "{{slice .SICap 6 10 11}}", "", tVal, false},
    	{"array[:]", "{{slice .AI}}", "[3 4 5]", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tpu_cluster_formation.mlir

      %1 = "tf.ResourceGatherNd"(%arg0, %0) {
        Tindices = i32
      } : (tensor<*x!tf_type.resource<tensor<80xf32>>>, tensor<i32>) -> tensor<1x80xf32>
      %2 = "tf.Add"(%1, %1) {
        _xla_compile_device_type = "TPU", _replication_info = "cluster",
        device = "/task:0/device:TPU:0", dtype = f32
      } : (tensor<1x80xf32>, tensor<1x80xf32>) -> tensor<1x80xf32>
      %3 = "tf.ResourceGatherNd"(%arg0, %0) {
        Tindices = i32
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top