Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 35 for validate0 (0.29 sec)

  1. pkg/controller/podautoscaler/horizontal_test.go

    			// Actually, such an invalid type should be validated in the kube-apiserver and invalid metric type shouldn't be recorded.
    			"CheddarCheese": monitor.ActionLabelNone,
    		},
    		expectedReportedMetricComputationErrorLabels: map[autoscalingv2.MetricSourceType]monitor.ErrorLabel{
    			autoscalingv2.ResourceMetricSourceType: monitor.ErrorLabelNone,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder_test.go

    			}
    			if len(tt.expectedSubsetClusters) > 0 {
    				compareClusters(t, tt.expectedSubsetClusters[0], subsetClusters[0])
    			}
    			// Validate that use client protocol configures cluster correctly.
    			if tt.destRule != nil && tt.destRule.TrafficPolicy != nil && tt.destRule.TrafficPolicy.GetConnectionPool().GetHttp().GetUseClientProtocol() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  3. go.sum

    github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=
    github.com/envoyproxy/protoc-gen-validate v1.0.4 h1:gVPz/FMfvh57HdSJQyvBtF00j8JU4zdyUgIUNhlgg0A=
    github.com/envoyproxy/protoc-gen-validate v1.0.4/go.mod h1:qys6tmnRsYrQqIhm2bvKZH4Blx/1gTIZ2UKVY1M+Yew=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  4. cmd/site-replication.go

    			return madmin.ReplicateAddStatus{}, errSRInvalidRequest(fmt.Errorf("all existing replicated sites must be specified - missing %s", strings.Join(diffSlc, " ")))
    		}
    	}
    
    	// validate that all clusters are using the same IDP settings.
    	err = c.validateIDPSettings(ctx, sites)
    	if err != nil {
    		return madmin.ReplicateAddStatus{}, err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        if the maximum is empty for a given segment ID i,
        it outputs the smallest possible value for the specific numeric type,
        output[i] = numeric_limits::lowest().
        Note the values of segment_ids are always validated to be less than
        num_segments and an error is thrown for out-of-bound indices.
      }];
    
      let arguments = (ins
        TFL_TensorOf<[F32, I32]>:$input,
        TFL_I32Tensor:$segment_ids,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  6. src/database/sql/sql.go

    // helper function that returns a [*DB]. No database drivers are included
    // in the Go standard library. See https://golang.org/s/sqldrivers for
    // a list of third-party drivers.
    //
    // OpenDB may just validate its arguments without creating a connection
    // to the database. To verify that the data source name is valid, call
    // [DB.Ping].
    //
    // The returned [DB] is safe for concurrent use by multiple goroutines
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	}
    	labels["prepare_create"] = "true"
    	metaObj.SetLabels(labels)
    }
    
    func (t *testRESTStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {}
    func (t *testRESTStrategy) Validate(ctx context.Context, obj runtime.Object) field.ErrorList {
    	return nil
    }
    func (t *testRESTStrategy) WarningsOnCreate(ctx context.Context, obj runtime.Object) []string {
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    	// trigger deleting containers in a pod
    	containerDeletor *podContainerDeletor
    
    	// config iptables util rules
    	makeIPTablesUtilChains bool
    
    	// The AppArmor validator for checking whether AppArmor is supported.
    	appArmorValidator apparmor.Validator
    
    	// StatsProvider provides the node and the container stats.
    	StatsProvider *stats.Provider
    
    	// pluginmanager runs a set of asynchronous loops that figure out which
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. cmd/bucket-replication.go

    		}
    		clnt := globalBucketTargetSys.GetRemoteTargetClient(bucket, arnStr)
    		if clnt == nil {
    			return sameTarget, toAPIError(ctx, BucketRemoteTargetNotFound{Bucket: bucket})
    		}
    		if checkRemote { // validate remote bucket
    			found, err := clnt.BucketExists(ctx, arn.Bucket)
    			if err != nil {
    				return sameTarget, errorCodes.ToAPIErrWithErr(ErrRemoteDestinationNotFoundError, err)
    			}
    			if !found {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_test.go

    		})
    	}
    }
    
    func TestApplyRingHashLoadBalancer(t *testing.T) {
    	cases := []struct {
    		name     string
    		lb       *networking.LoadBalancerSettings
    		validate func(c *cluster.Cluster) error
    	}{
    		{
    			"default consistent hash settings",
    			&networking.LoadBalancerSettings{
    				LbPolicy: &networking.LoadBalancerSettings_ConsistentHash{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top