Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for TestAs (0.17 sec)

  1. pilot/pkg/networking/core/gateway_test.go

    							},
    						},
    					},
    				},
    			},
    			virtualServices: []config.Config{
    				{
    					Meta: config.Meta{Name: "example", Namespace: "testns", GroupVersionKind: gvk.VirtualService},
    					Spec: &networking.VirtualService{
    						Gateways: []string{"testns/gw"},
    						Hosts:    []string{"example.com"},
    						Tls: []*networking.TLSRoute{
    							{
    								Match: []*networking.TLSMatchAttributes{
    									{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

    // ============================================================================
    // The following functions tests example quantization patterns outputted from
    // StableHLO Quantizer. These patterns should be legalized early directly
    // to fused tflite ops.
    // ============================================================================
    
    // Tests that a simple per-channel quantized `stablehlo.dot_general` is properly
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/runtime/framework_test.go

    func TestPermitWaitDurationMetric(t *testing.T) {
    	tests := []struct {
    		name    string
    		inject  injectedResult
    		wantRes string
    	}{
    		{
    			name: "WaitOnPermit - No Wait",
    		},
    		{
    			name:    "WaitOnPermit - Wait Timeout",
    			inject:  injectedResult{PermitStatus: int(framework.Wait)},
    			wantRes: "Unschedulable",
    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

    // RUN: tf-opt %s -split-input-file -verify-diagnostics --tf-tpu-rewrite=tpu-compile-metadata-debug | FILECHECK_OPTS="" FileCheck %s
    
    // Tests module with missing `tf.versions` attribute.
    
    // expected-error@+1 {{requires attribute 'tf.versions'}}
    module attributes {tf.devices = ["/job:worker/replica:0/task:0/device:CPU:0", "/job:worker/replica:0/task:0/device:TPU_SYSTEM:0", "/job:worker/replica:0/task:0/device:TPU:0"]} {
      func.func @missing_tf_versions() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  5. pkg/scheduler/schedule_one_test.go

    		},
    	}
    	large1 := large
    	large1.NodeName = "node1"
    	large2 := large
    	large2.NodeName = "node2"
    	tests := []struct {
    		pod           *v1.Pod
    		pods          []*v1.Pod
    		nodes         []*v1.Node
    		name          string
    		expectedScore int64
    	}{
    		// The point of these next two tests is to show you get the same priority for a zero-request pod
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  6. pkg/apis/admissionregistration/validation/validation_test.go

    	unknownSideEffect := admissionregistration.SideEffectClassUnknown
    	validClientConfig := admissionregistration.WebhookClientConfig{
    		URL: strPtr("https://example.com"),
    	}
    	tests := []struct {
    		name          string
    		config        *admissionregistration.ValidatingWebhookConfiguration
    		expectedError string
    	}{{
    		name: "AdmissionReviewVersions are required",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  7. src/crypto/x509/verify_test.go

    		dnsName:       "www.google.com",
    
    		// The specific error message may not occur when using system
    		// verification.
    		systemLax:     true,
    		errorCallback: expectHashError,
    	},
    	// EKULeaf tests use an unconstrained chain leading to a leaf certificate
    	// with an E-mail Protection EKU but not a Server Auth one, checking that
    	// the EKUs on the leaf are enforced.
    	{
    		name:          "EKULeaf",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    		// Swap TopologyValue to make them sorted alphabetically.
    		p[0].TopologyValue, p[1].TopologyValue = p[1].TopologyValue, p[0].TopologyValue
    	}
    }
    
    func TestPreFilterState(t *testing.T) {
    	tests := []struct {
    		name                      string
    		pod                       *v1.Pod
    		nodes                     []*v1.Node
    		existingPods              []*v1.Pod
    		objs                      []runtime.Object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    int64_t GetConvolutionKernelInputFeatureDimension(bool is_depthwise) {
      return is_depthwise ? 0 : 3;
    }
    
    // stablehlo.uniform_quantize -> tfl.quantize
    // TODO: b/322428814 - Add StableHLO quantizer integration tests for ODML.
    class RewriteUniformQuantizeOp
        : public OpRewritePattern<stablehlo::UniformQuantizeOp> {
      using OpRewritePattern<stablehlo::UniformQuantizeOp>::OpRewritePattern;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    //	    part of a test's identifier must match the corresponding element in
    //	    the sequence, if any. Note that possible parents of matches are
    //	    run too, so that -run=X/Y matches and runs and reports the result
    //	    of all tests matching X, even those without sub-tests matching Y,
    //	    because it must run them to look for those sub-tests.
    //	    See also -skip.
    //
    //	-short
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top