Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,798 for nohint (0.29 sec)

  1. src/runtime/map_test.go

    				t.Fatalf("corrupted map: want %+v, got %+v", v, v1)
    			}
    		}
    	}
    }
    
    // Test that making a map with a large or invalid hint
    // doesn't panic. (Issue 19926).
    func TestIgnoreBogusMapHint(t *testing.T) {
    	for _, hint := range []int64{-1, 1 << 62} {
    		_ = make(map[int]int, hint)
    	}
    }
    
    const bs = abi.MapBucketCount
    
    // belowOverflow should be a pretty-full pair of buckets;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/expressionInfoProvider/whenMissingCases/nothing.kt

    fun test(n: Nothing) {
        <caret>when (n) {
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Nov 17 19:55:08 UTC 2021
    - 53 bytes
    - Viewed (0)
  3. pkg/test/env/istio.go

    	// nolint: revive, stylecheck
    	TAG Variable = "TAG"
    
    	// VARIANT is the Docker variant to be used for images.
    	// nolint: revive, stylecheck
    	VARIANT Variable = "VARIANT"
    
    	// PULL_POLICY is the image pull policy to use when rendering templates.
    	// nolint: revive, stylecheck
    	PULL_POLICY Variable = "PULL_POLICY"
    
    	// ECHO_IMAGE is the image to use when deploying echo services.
    	// nolint: golint, revive, stylecheck
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 16:24:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. test/noinit.go

    Cuong Manh Le <******@****.***> 1675970456 +0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 14 17:57:36 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/expressionInfoProvider/whenMissingCases/nothing.txt

    Ilya Kirillov <******@****.***> 1637170955 +0100
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Nov 17 19:55:08 UTC 2021
    - 15 bytes
    - Viewed (0)
  6. pkg/config/validation/envoyfilter/envoyfilter.go

    	}
    
    	for _, cp := range rule.ConfigPatches {
    		if cp == nil {
    			errs = validation.AppendValidation(errs, fmt.Errorf("Envoy filter: null config patch")) // nolint: stylecheck
    			continue
    		}
    		if cp.ApplyTo == networking.EnvoyFilter_INVALID {
    			errs = validation.AppendValidation(errs, fmt.Errorf("Envoy filter: missing applyTo")) // nolint: stylecheck
    			continue
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/aot/test.cc

    #define TEST_NAME {{TFCOMPILE_NAME}}Test   // NOLINT(whitespace/braces)
    #define BM_NAME   BM_{{TFCOMPILE_NAME}}    // NOLINT(whitespace/braces)
    // clang-format on
    
    namespace tensorflow {
    namespace tfcompile {
    namespace {
    
    void zero_buffers(XlaCompiledCpuFunction* computation) {
      for (int i = 0; i < computation->num_args(); ++i) {
        memset(computation->arg_data(i), 0, computation->arg_size(i));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. pkg/config/xds/xds.go

    		obj = &listener.ListenerFilter{}
    	default:
    		return nil, fmt.Errorf("Envoy filter: unknown object type for applyTo %s", applyTo.String()) // nolint: stylecheck
    	}
    
    	if err := StructToMessage(value, obj, strict); err != nil {
    		return nil, fmt.Errorf("Envoy filter: %v", err) // nolint: stylecheck
    	}
    	return obj, nil
    }
    
    func StructToMessage(pbst *structpb.Struct, out proto.Message, strict bool) error {
    	if pbst == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 14 02:41:27 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. tests/integration/pilot/istioctl_test.go

    // This test requires `--istio.test.env=kube` because it tests istioctl doing PodExec
    // TestVersion does "istioctl version --remote=true" to verify the CLI understands the data plane version data
    func TestVersion(t *testing.T) {
    	// nolint: staticcheck
    	framework.
    		NewTest(t).RequiresSingleCluster().
    		Run(func(t framework.TestContext) {
    			cfg := i.Settings()
    
    			istioCtl := istioctl.NewOrFail(t, t, istioctl.Config{Cluster: t.Environment().Clusters()[0]})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 15K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h.pump

    namespace gtest_internal {
    
    // ByRef<T>::type is T if T is a reference; otherwise it's const T&.
    template <typename T>
    struct ByRef { typedef const T& type; };  // NOLINT
    template <typename T>
    struct ByRef<T&> { typedef T& type; };  // NOLINT
    
    // A handy wrapper for ByRef.
    #define GTEST_BY_REF_(T) typename ::std::tr1::gtest_internal::ByRef<T>::type
    
    // AddRef<T>::type is T if T is a reference; otherwise it's T&.  This
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top