Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for TestAs (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/compile/internal/test/testdata/cmpConst_test.go

    	lt = result{l: true, e: false, r: false}
    	le = result{l: true, e: true, r: false}
    	gt = result{l: false, e: false, r: true}
    	ge = result{l: false, e: true, r: true}
    )
    
    // uint64 tests
    var uint64_vals = []uint64{
    	0,
    	1,
    	126,
    	127,
    	128,
    	254,
    	255,
    	256,
    	32766,
    	32767,
    	32768,
    	65534,
    	65535,
    	65536,
    	2147483646,
    	2147483647,
    	2147483648,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 103.1K bytes
    - Viewed (0)
  5. 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)
  6. pkg/controller/daemon/daemon_controller_test.go

    		}
    	}
    }
    
    // DaemonSet controller should kill all failed pods and create at most 1 pod on every node.
    func TestDaemonKillFailedPods(t *testing.T) {
    	tests := []struct {
    		numFailedPods, numNormalPods, expectedCreates, expectedDeletes, expectedEvents int
    		test                                                                           string
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  7. src/database/sql/sql.go

    	// stored procedure's OUTPUT parameter.
    	Dest any
    
    	// In is whether the parameter is an INOUT parameter. If so, the input value to the stored
    	// procedure is the dereferenced value of Dest's pointer, which is then replaced with
    	// the output value.
    	In bool
    }
    
    // ErrNoRows is returned by [Row.Scan] when [DB.QueryRow] doesn't return a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  8. pkg/registry/batch/job/strategy_test.go

    	api "k8s.io/kubernetes/pkg/apis/core"
    	"k8s.io/kubernetes/pkg/features"
    	"k8s.io/utils/ptr"
    )
    
    var ignoreErrValueDetail = cmpopts.IgnoreFields(field.Error{}, "BadValue", "Detail")
    
    // TestJobStrategy_PrepareForUpdate tests various scenarios for PrepareForUpdate
    func TestJobStrategy_PrepareForUpdate(t *testing.T) {
    	validSelector := getValidLabelSelector()
    	validPodTemplateSpec := getValidPodTemplateSpecForSelector(validSelector)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  9. src/database/sql/sql_test.go

    		new(concurrentTxStmtExecTest),
    	}
    	for _, ct := range c.tests {
    		ct.init(t, db)
    	}
    }
    
    func (c *concurrentRandomTest) finish(t testing.TB) {
    	for _, ct := range c.tests {
    		ct.finish(t)
    	}
    }
    
    func (c *concurrentRandomTest) test(t testing.TB) error {
    	ct := c.tests[rand.Intn(len(c.tests))]
    	return ct.test(t)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  10. src/net/http/transport_test.go

    // Copyright 2011 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests for transport.go.
    //
    // More tests are in clientserver_test.go (for things testing both client & server for both
    // HTTP/1 and HTTP/2). This
    
    package http_test
    
    import (
    	"bufio"
    	"bytes"
    	"compress/gzip"
    	"context"
    	"crypto/rand"
    	"crypto/tls"
    	"crypto/x509"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top