Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 450 for typed (0.1 sec)

  1. src/cmd/compile/internal/types2/infer.go

    func containsNil(list []Type) bool {
    	for _, t := range list {
    		if t == nil {
    			return true
    		}
    	}
    	return false
    }
    
    // renameTParams renames the type parameters in the given type such that each type
    // parameter is given a new identity. renameTParams returns the new type parameters
    // and updated type. If the result type is unchanged from the argument type, none
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/core.go

    	}
    	go legacySATokenCleaner.Run(ctx)
    	return nil, true, nil
    }
    
    // processCIDRs is a helper function that works on a comma separated cidrs and returns
    // a list of typed cidrs
    // error if failed to parse any of the cidrs or invalid length of cidrs
    func validateCIDRs(cidrsList string) ([]*net.IPNet, error) {
    	// failure: bad cidrs in config
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 39K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/check_test.go

    	}
    
    	return flags.Parse(strings.Fields(string(src[:end])))
    }
    
    // testFiles type-checks the package consisting of the given files, and
    // compares the resulting errors with the ERROR annotations in the source.
    // Except for manual tests, each package is type-checked twice, once without
    // use of Alias types, and once with Alias types.
    //
    // The srcs slice contains the file content for the files named in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. src/go/doc/reader.go

    // predeclared) type. The namedType for a type name is always found via
    // reader.lookupType.
    type namedType struct {
    	doc  string       // doc comment for type
    	name string       // type name
    	decl *ast.GenDecl // nil if declaration hasn't been seen yet
    
    	isEmbedded bool        // true if this type is embedded
    	isStruct   bool        // true if this type is a struct
    	embedded   embeddedSet // true if the embedded type is a pointer
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. internal/event/target/elasticsearch.go

    	EnvElasticUsername   = "MINIO_NOTIFY_ELASTICSEARCH_USERNAME"
    	EnvElasticPassword   = "MINIO_NOTIFY_ELASTICSEARCH_PASSWORD"
    )
    
    // ESSupportStatus is a typed string representing the support status for
    // Elasticsearch
    type ESSupportStatus string
    
    const (
    	// ESSUnknown is default value
    	ESSUnknown ESSupportStatus = "ESSUnknown"
    	// ESSDeprecated -> support will be removed in future
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    	varOpts = append(varOpts, createVariableOpts(types.object, plugincel.ObjectVarName, plugincel.OldObjectVarName)...)
    
    	// params, defined by ParamKind
    	if hasParams && types.params != nil {
    		declTypes = append(declTypes, types.params)
    		varOpts = append(varOpts, createVariableOpts(types.params, plugincel.ParamsVarName)...)
    	}
    
    	// authorizer, implicitly available to all expressions of a policy
    	if hasAuthorizer {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      ::testing::internal::ScopedTrace GTEST_CONCAT_TOKEN_(gtest_trace_, __LINE__)(\
        __FILE__, __LINE__, ::testing::Message() << (message))
    
    // Compile-time assertion for type equality.
    // StaticAssertTypeEq<type1, type2>() compiles iff type1 and type2 are
    // the same type.  The value it returns is not interesting.
    //
    // Instead of making StaticAssertTypeEq a class template, we make it a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json_test.go

    	creater := &mockCreater{obj: &runtimetesting.MockCacheableObject{}}
    	typer := &mockTyper{gvk: &gvk}
    	serializer := json.NewSerializer(json.DefaultMetaFactory, creater, typer, false)
    
    	runtimetesting.CacheableObjectTest(t, serializer)
    }
    
    type mockCreater struct {
    	apiVersion string
    	kind       string
    	err        error
    	obj        runtime.Object
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 04 15:55:02 UTC 2024
    - 40K bytes
    - Viewed (0)
  9. src/encoding/json/decode_test.go

    	"strings"
    	"testing"
    	"time"
    )
    
    type T struct {
    	X string
    	Y int
    	Z int `json:"-"`
    }
    
    type U struct {
    	Alphabet string `json:"alpha"`
    }
    
    type V struct {
    	F1 any
    	F2 int32
    	F3 Number
    	F4 *VOuter
    }
    
    type VOuter struct {
    	V V
    }
    
    type W struct {
    	S SS
    }
    
    type P struct {
    	PP PP
    }
    
    type PP struct {
    	T  T
    	Ts []T
    }
    
    type SS string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/policy_source.go

    	s.lock.Lock()
    	defer s.lock.Unlock()
    
    	// Create a local copy of all policies and bindings
    	policiesToBindings := map[types.NamespacedName][]B{}
    	bindingList, err := s.bindingInformer.List(labels.Everything())
    	if err != nil {
    		// This should never happen unless types are misconfigured
    		// (can't use meta.accessor on them)
    		return nil, err
    	}
    
    	// Gather a list of all active policy bindings
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 21 23:07:34 UTC 2024
    - 15.2K bytes
    - Viewed (0)
Back to top