Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 297 for Builtin (3.18 sec)

  1. src/internal/types/testdata/check/decls4.go

    type (
    	W0 /* ERROR "invalid recursive type" */ = W1
    	W1 = (W2)
    	W2 = ((W0))
    )
    
    func (W0) m() {} // no error expected (due to above cycle error)
    func (W1) n() {}
    
    // alias receiver types (invalid due to builtin underlying type)
    type (
    	B0 = B1
    	B1 = B2
    	B2 = int
    )
    
    func (B0 /* ERRORx "cannot define new methods on non-local type (int|B)" */ ) m() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/retry/retry.go

    func DefaultPolicy() *route.RetryPolicy {
    	policy := defaultPolicy()
    	policy.RetryHostPredicate = []*route.RetryPolicy_RetryHostPredicate{
    		// to configure retries to prefer hosts that haven’t been attempted already,
    		// the builtin `envoy.retry_host_predicates.previous_hosts` predicate can be used.
    		xdsfilters.RetryPreviousHosts,
    	}
    	return policy
    }
    
    func defaultPolicy() *route.RetryPolicy {
    	policy := route.RetryPolicy{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/mlir_tflite_runner.cc

                                                   serialized_flatbuffer.size());
      tflite::ops::builtin::BuiltinOpResolver builtins;
      std::unique_ptr<tflite::Interpreter> interpreter;
      QCHECK(tflite::InterpreterBuilder(*model, builtins)(&interpreter) ==
             kTfLiteOk);
      QCHECK(interpreter->AllocateTensors() == kTfLiteOk);
      QCHECK(interpreter->Invoke() == kTfLiteOk);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 03 00:14:05 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. src/go/types/call.go

    			check.use(call.Args...)
    			check.errorf(call.Args[n-1], WrongArgCount, "too many arguments in conversion to %s", T)
    		}
    		x.expr = call
    		return conversion
    
    	case builtin:
    		// no need to check for non-genericity here
    		id := x.id
    		if !check.builtin(x, call, id) {
    			x.mode = invalid
    		}
    		x.expr = call
    		// a non-constant result implies a function call
    		if x.mode != invalid && x.mode != constant_ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_image_test.go

    			[]v1.Secret{},
    			credentialprovider.DockerConfig(map[string]credentialprovider.DockerConfigEntry{
    				"extraneous": {Username: "built-in", Password: "password", Provider: nil},
    			}),
    			nil,
    		},
    		"builtin keyring secrets, but use passed": {
    			"ubuntu",
    			[]v1.Secret{{Type: v1.SecretTypeDockercfg, Data: map[string][]byte{v1.DockerConfigKey: dockercfgContent}}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  6. src/go/types/builtins.go

    // Source: ../../cmd/compile/internal/types2/builtins.go
    
    // Copyright 2012 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.
    
    // This file implements typechecking of builtin function calls.
    
    package types
    
    import (
    	"go/ast"
    	"go/constant"
    	"go/token"
    	. "internal/types/errors"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  7. cmd/admin-router.go

    		adminRouter.Methods(http.MethodGet).Path(adminVersion + "/list-canned-policies").HandlerFunc(adminMiddleware(adminAPI.ListCannedPolicies))
    
    		// Builtin IAM policy associations
    		adminRouter.Methods(http.MethodGet).Path(adminVersion + "/idp/builtin/policy-entities").HandlerFunc(adminMiddleware(adminAPI.ListPolicyMappingEntities))
    
    		// Remove policy IAM
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 21:09:36 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. pilot/pkg/model/credentials/resource.go

    	kubernetesGatewaySecretTypeURI = KubernetesGatewaySecretType + "://"
    	// BuiltinGatewaySecretType is the name of a SDS secret that uses the workloads own mTLS certificate
    	BuiltinGatewaySecretType    = "builtin"
    	BuiltinGatewaySecretTypeURI = BuiltinGatewaySecretType + "://"
    	// SdsCaSuffix is the suffix of the sds resource name for root CA.
    	SdsCaSuffix = "-cacert"
    )
    
    // SecretResource defines a reference to a secret
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 28 20:33:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. pkg/kubeapiserver/options/authorization_test.go

    			Duration: 500 * time.Millisecond,
    			Factor:   1.5,
    			Jitter:   0.2,
    			Steps:    5,
    		},
    	}
    
    	opts := NewBuiltInAuthorizationOptions()
    	pf := pflag.NewFlagSet("test-builtin-authorization-opts", pflag.ContinueOnError)
    	opts.AddFlags(pf)
    
    	if err := pf.Parse(args); err != nil {
    		t.Fatal(err)
    	}
    
    	if !opts.AreLegacyFlagsSet() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 06:28:47 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unusedresult/unusedresult.go

    		if !ok {
    			return // not a call statement
    		}
    
    		// Call to function or method?
    		fn, ok := typeutil.Callee(pass.TypesInfo, call).(*types.Func)
    		if !ok {
    			return // e.g. var or builtin
    		}
    		if sig := fn.Type().(*types.Signature); sig.Recv() != nil {
    			// method (e.g. foo.String())
    			if types.Identical(sig, sigNoArgsStringResult) {
    				if stringMethods[fn.Name()] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top