Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for validate0 (0.33 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Rewrite all TPU Partitioned ops into their V2 counterparts.";
    
      let constructor = "TFTPU::CreateTPUPartitionedOpConversionPass()";
    }
    
    def TPUValidateInputsPass : Pass<"tf-tpu-validate-inputs", "ModuleOp"> {
      let summary = "Validates inputs to the TPU TF/XLA bridge";
    
      let description = [{
        This pass checks that the IR has valid input to TPU TF/XLA bridge.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    func (alwaysMutatingDeny) Handles(operation admission.Operation) bool {
    	return true
    }
    
    var _ admission.MutationInterface = &alwaysMutatingDeny{}
    
    type alwaysValidatingDeny struct{}
    
    func (alwaysValidatingDeny) Validate(ctx context.Context, a admission.Attributes, o admission.ObjectInterfaces) (err error) {
    	return admission.NewForbidden(a, errors.New("Validating admission control is denying all modifications"))
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  3. cmd/metrics-v2.go

    				),
    				prometheus.GaugeValue,
    				float64(v),
    				append(values, k)...)
    			if err != nil {
    				// Enable for debugging
    				if serverDebugLog {
    					bugLogIf(GlobalContext, fmt.Errorf("unable to validate prometheus metric (%w) %v+%v", err, values, metric.Histogram))
    				}
    			} else {
    				out <- pmetric
    			}
    		}
    		return
    	}
    	metricType := prometheus.GaugeValue
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.5.md

        - Leaked File descriptors ([#275](https://github.com/docker/containerd/issues/275))
        - Additional memory overhead per container ([#21737]((https://github.com/docker/docker/issues/21737))
      * Docker version 1.12.1 [has been validated](https://github.com/kubernetes/kubernetes/issues/28698) through the Kubernetes docker automated validation framework as has Docker version 1.12.3
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  5. fastapi/routing.py

                    exclude_none=exclude_none,
                )
            if is_coroutine:
                value, errors_ = field.validate(response_content, {}, loc=("response",))
            else:
                value, errors_ = await run_in_threadpool(
                    field.validate, response_content, {}, loc=("response",)
                )
            if isinstance(errors_, list):
                errors.extend(errors_)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    		strings.Repeat("x", size)); err != nil {
    		t.Fatal(err)
    	}
    	if err := cn.(*net.TCPConn).CloseWrite(); err != nil {
    		t.Fatal(err)
    	}
    
    	<-done
    }
    
    // Issue 18319: test that the Server validates the request method.
    func TestServerValidatesMethod(t *testing.T) {
    	tests := []struct {
    		method string
    		want   int
    	}{
    		{"GET", 200},
    		{"GE(T", 400},
    	}
    	for _, tt := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

    metadata:
      labels:
        app: istiod
        istio: istiod
        istio.io/rev: default
        release: istio
      name: istio-validator-istio-system
    webhooks:
    - admissionReviewVersions:
      - v1beta1
      - v1
      clientConfig:
        service:
          name: istiod
          namespace: istio-system
          path: /validate
      failurePolicy: Ignore
      name: rev.validation.istio.io
      objectSelector:
        matchExpressions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/memorymanager/policy_static_test.go

    								NumPages: 1,
    							},
    						},
    					},
    				},
    			},
    			expectedError: fmt.Errorf("[memorymanager] the expected machine state is different from the real one"),
    		},
    		{
    			description: "should validate cross NUMA reserved memory vs container assignments",
    			assignments: state.ContainerMemoryAssignments{
    				"pod1": map[string][]state.Block{
    					"container1": {
    						{
    							NUMAAffinity: []int{0, 1},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
  9. pkg/registry/batch/job/strategy_test.go

    			featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.JobBackoffLimitPerIndex, tc.enableJobBackoffLimitPerIndex)
    			errs := Strategy.Validate(ctx, tc.job)
    			if len(errs) != int(tc.wantWarningCount) {
    				t.Errorf("want warnings %d but got %d, errors: %v", tc.wantWarningCount, len(errs), errs)
    			}
    			if diff := cmp.Diff(tc.wantJob, tc.job); diff != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.cc

    #include "tensorflow/core/framework/types.h"
    #include "tensorflow/core/framework/versions.pb.h"
    #include "tensorflow/core/graph/graph.h"
    #include "tensorflow/core/graph/node_builder.h"
    #include "tensorflow/core/graph/validate.h"
    #include "tensorflow/core/lib/gtl/array_slice.h"
    #include "tensorflow/core/platform/coding.h"
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/mem.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top