Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 128 for componentX (0.2 sec)

  1. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // If the finalizer list is processed in order, then this can lead to a situation
      // in which the component responsible for the first finalizer in the list is
      // waiting for a signal (field value, external system, or other) produced by a
      // component responsible for a finalizer later in the list, resulting in a deadlock.
      // Without enforced ordering finalizers are free to order amongst themselves and
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // If the finalizer list is processed in order, then this can lead to a situation
      // in which the component responsible for the first finalizer in the list is
      // waiting for a signal (field value, external system, or other) produced by a
      // component responsible for a finalizer later in the list, resulting in a deadlock.
      // Without enforced ordering finalizers are free to order amongst themselves and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        auto split_image_shape = rewriter.create<UnpackOp>(
            loc,
            TypeRange({scalar_dim_ty, scalar_dim_ty, scalar_dim_ty, scalar_dim_ty}),
            input_shape);
    
        // Extract the separate components from the input shape.
        auto batch = split_image_shape.getResult(0);
        auto in_y = split_image_shape.getResult(1);
        auto in_x = split_image_shape.getResult(2);
        auto channels = split_image_shape.getResult(3);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go

    	fcrequest "k8s.io/apiserver/pkg/util/flowcontrol/request"
    	"k8s.io/client-go/informers"
    	clientset "k8s.io/client-go/kubernetes"
    	"k8s.io/client-go/kubernetes/fake"
    	"k8s.io/component-base/metrics/legacyregistry"
    	"k8s.io/component-base/metrics/testutil"
    	"k8s.io/klog/v2"
    	clocktesting "k8s.io/utils/clock/testing"
    	"k8s.io/utils/ptr"
    
    	"github.com/google/go-cmp/cmp"
    )
    
    func TestMain(m *testing.M) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.3.md

        * This fixed environments where CPU and Memory Accounting were not enabled on the unit that launched the kubelet or docker from reporting the root cgroup when monitoring usage stats for those components.
    * New default horizontalpodautoscaler/v1 generator for kubectl autoscale. ([#26775](https://github.com/kubernetes/kubernetes/pull/26775), [@piosz](https://github.com/piosz))
        * Use autoscaling/v1 in kubectl by default.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    		}
    		// If we are here, the registry supports grace period mechanism and
    		// we are intentionally delete gracelessly. In this case, we may
    		// enter a race with other k8s components. If other component wins
    		// the race, the object will not be found, and we should tolerate
    		// the NotFound error. See
    		// https://github.com/kubernetes/kubernetes/issues/19403 for
    		// details.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  7. src/net/http/request.go

    		r.PostForm[k] = append(r.PostForm[k], v...)
    	}
    
    	r.MultipartForm = f
    
    	return parseFormErr
    }
    
    // FormValue returns the first value for the named component of the query.
    // The precedence order:
    //  1. application/x-www-form-urlencoded form body (POST, PUT, PATCH only)
    //  2. query parameters (always)
    //  3. multipart/form-data form body (always)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. pkg/kubelet/nodestatus/setters_test.go

    	"k8s.io/apimachinery/pkg/util/uuid"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	cloudprovider "k8s.io/cloud-provider"
    	fakecloud "k8s.io/cloud-provider/fake"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/component-base/version"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/kubernetes/pkg/kubelet/cm"
    	kubecontainer "k8s.io/kubernetes/pkg/kubelet/container"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 21:47:24 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. plugin/pkg/admission/noderestriction/admission_test.go

    limitations under the License.
    */
    
    package noderestriction
    
    import (
    	"context"
    	"reflect"
    	"strings"
    	"testing"
    	"time"
    
    	"k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/kubernetes/pkg/features"
    
    	corev1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  10. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    package v1beta1
    
    import (
    	"testing"
    	"time"
    
    	"github.com/google/go-cmp/cmp"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	logsapi "k8s.io/component-base/logs/api/v1"
    	"k8s.io/kubelet/config/v1beta1"
    	"k8s.io/kubernetes/pkg/cluster/ports"
    	"k8s.io/kubernetes/pkg/kubelet/qos"
    	kubetypes "k8s.io/kubernetes/pkg/kubelet/types"
    	utilpointer "k8s.io/utils/pointer"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
Back to top