Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 235 for Types (0.06 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    type fakeCompiler struct {
    	ValidateFuncs map[types.NamespacedName]validating.Validator
    
    	lock        sync.Mutex
    	NumCompiles map[types.NamespacedName]int
    }
    
    func (f *fakeCompiler) getNumCompiles(p *validating.Policy) int {
    	f.lock.Lock()
    	defer f.lock.Unlock()
    	return f.NumCompiles[types.NamespacedName{
    		Name:      p.Name,
    		Namespace: p.Namespace,
    	}]
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. src/reflect/type.go

    //
    // The types in each module are sorted by string. That is, the first
    // two linked types of the first module are:
    //
    //	d0 := sections[0]
    //	t1 := (*rtype)(add(d0, offset[0][0]))
    //	t2 := (*rtype)(add(d0, offset[0][1]))
    //
    // and
    //
    //	t1.String() < t2.String()
    //
    // Note that strings are not unique identifiers for types:
    // there can be more than one with a given string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            }
            return !Character.isLowerCase(name.charAt(0));
        }
    
        private boolean isLeftSquareBracket(int op) {
            return op == Types.ARRAY_EXPRESSION
                || op == Types.LEFT_SQUARE_BRACKET
                || op == Types.SYNTH_LIST
                || op == Types.SYNTH_MAP;
        }
    
        @Override
        protected Expression transformBinaryExpression(BinaryExpression be) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  4. src/go/types/api_test.go

    		f := mustParse(fset, fmt.Sprintf("package p%d; var _ = %s", i, test.lit))
    		types := make(map[ast.Expr]TypeAndValue)
    		if _, err := new(Config).Check("p", fset, []*ast.File{f}, &Info{Types: types}); err != nil {
    			t.Fatalf("%s: %v", test.lit, err)
    		}
    
    		cmptype := func(x ast.Expr, want string) {
    			tv, ok := types[x]
    			if !ok {
    				t.Errorf("%s: no Types entry found", test.lit)
    				return
    			}
    			if tv.Type == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  5. src/cmd/cgo/gcc.go

    		os.Exit(2)
    	}
    	return string(stdout), string(stderr)
    }
    
    // A typeConv is a translator from dwarf types to Go types
    // with equivalent memory layout.
    type typeConv struct {
    	// Cache of already-translated or in-progress types.
    	m map[string]*Type
    
    	// Map from types to incomplete pointers to those types.
    	ptrs map[string][]*Type
    	// Keys of ptrs in insertion order (deterministic worklist)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/api_test.go

    		f := mustParse(fmt.Sprintf("package p%d; var _ = %s", i, test.lit))
    		types := make(map[syntax.Expr]TypeAndValue)
    		if _, err := new(Config).Check("p", []*syntax.File{f}, &Info{Types: types}); err != nil {
    			t.Fatalf("%s: %v", test.lit, err)
    		}
    
    		cmptype := func(x syntax.Expr, want string) {
    			tv, ok := types[x]
    			if !ok {
    				t.Errorf("%s: no Types entry found", test.lit)
    				return
    			}
    			if tv.Type == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  7. pkg/volume/testing/testing.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/uuid"
    	utiltesting "k8s.io/client-go/util/testing"
    	"k8s.io/kubernetes/pkg/volume"
    	"k8s.io/kubernetes/pkg/volume/util"
    	"k8s.io/kubernetes/pkg/volume/util/recyclerclient"
    	volumetypes "k8s.io/kubernetes/pkg/volume/util/types"
    	"k8s.io/kubernetes/pkg/volume/util/volumepathhandler"
    )
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				// other types at runtime.
    				"self.something != ['anything']": 13,
    			},
    		},
    		{name: "int in intOrString",
    			schema: objectTypePtr(map[string]schema.Structural{
    				"something": intOrStringType(),
    			}),
    			expectCost: map[string]uint64{
    				// typical int-or-string usage would be to check both types
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                    if (type == null || !types.add(type)) {
                        return;
                    }
                    collectTypes(type.getSuperclass(), types);
                    for (Class<?> serviceInterface : type.getInterfaces()) {
                        collectTypes(serviceInterface, types);
                    }
                }
    
                public boolean hasAnnotation(Class<? extends Annotation> annotationType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    }
    
    // Common functions called from rewriting rules
    
    func is64BitFloat(t *types.Type) bool {
    	return t.Size() == 8 && t.IsFloat()
    }
    
    func is32BitFloat(t *types.Type) bool {
    	return t.Size() == 4 && t.IsFloat()
    }
    
    func is64BitInt(t *types.Type) bool {
    	return t.Size() == 8 && t.IsInteger()
    }
    
    func is32BitInt(t *types.Type) bool {
    	return t.Size() == 4 && t.IsInteger()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top