Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 68 for componentX (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	k8stypes "k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/wait"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/tools/record"
    	"k8s.io/component-base/metrics/legacyregistry"
    	metricstestutil "k8s.io/component-base/metrics/testutil"
    	"k8s.io/klog/v2"
    	"k8s.io/klog/v2/ktesting"
    	"k8s.io/kubernetes/pkg/controller"
    	"k8s.io/kubernetes/pkg/controller/volume/attachdetach/cache"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - Component-base/logs: when compiled with Go >= 1.21, component-base will automatically configure the slog default logger together with initializing klog. ([#120696](https://github.com/kubernetes/kubernetes/pull/120696), [@pohly](https://github.com/pohly)) [SIG API Machinery, Architecture,...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. src/crypto/x509/x509.go

    	PermittedURIDomains         []string
    	ExcludedURIDomains          []string
    
    	// CRL Distribution Points
    	CRLDistributionPoints []string
    
    	// PolicyIdentifiers contains asn1.ObjectIdentifiers, the components
    	// of which are limited to int32. If a certificate contains a policy which
    	// cannot be represented by asn1.ObjectIdentifier, it will not be included in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  8. pkg/apis/autoscaling/validation/validation_test.go

    package validation
    
    import (
    	"strings"
    	"testing"
    
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/kubernetes/pkg/apis/autoscaling"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/features"
    	utilpointer "k8s.io/utils/pointer"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller.go

    	jm := &Controller{
    		kubeClient: kubeClient,
    		podControl: controller.RealPodControl{
    			KubeClient: kubeClient,
    			Recorder:   eventBroadcaster.NewRecorder(scheme.Scheme, v1.EventSource{Component: "job-controller"}),
    		},
    		expectations:          controller.NewControllerExpectations(),
    		finalizerExpectations: newUIDTrackingExpectations(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    	celconfig "k8s.io/apiserver/pkg/apis/cel"
    	"k8s.io/apiserver/pkg/cel"
    	"k8s.io/apiserver/pkg/cel/environment"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	featuregatetesting "k8s.io/component-base/featuregate/testing"
    	"k8s.io/utils/ptr"
    )
    
    const (
    	costLimit = 100000000
    )
    
    type validationMatcher interface {
    	matches(cr CompilationResult) bool
    	String() string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
Back to top