Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 3,458 for Types (0.04 sec)

  1. hack/.descriptions_failures

    ./staging/src/k8s.io/api/apps/v1beta1/types.go
    ./staging/src/k8s.io/api/apps/v1beta2/types.go
    ./staging/src/k8s.io/api/autoscaling/v2beta2/types.go
    ./staging/src/k8s.io/api/certificates/v1/types.go
    ./staging/src/k8s.io/api/certificates/v1beta1/types.go
    ./staging/src/k8s.io/api/core/v1/types.go
    ./staging/src/k8s.io/api/networking/v1/types.go
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 25 04:27:40 UTC 2021
    - 396 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stringintconv/string.go

    		vtypes, err := structuralTypes(V)
    		if err != nil {
    			return // invalid type
    		}
    
    		var V0 types.Type // integral type in the type set of V
    
    		for _, vt := range vtypes {
    			u, _ := vt.Underlying().(*types.Basic)
    			if u != nil && u.Info()&types.IsInteger != 0 {
    				switch u.Kind() {
    				case types.Byte, types.Rune, types.UntypedRune:
    					continue
    				}
    				V0 = vt
    				break
    			}
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typebits/typebits.go

    		return
    	}
    
    	switch t.Kind() {
    	case types.TPTR, types.TUNSAFEPTR, types.TFUNC, types.TCHAN, types.TMAP:
    		if off&int64(types.PtrSize-1) != 0 {
    			base.Fatalf("typebits.Set: invalid alignment, %v", t)
    		}
    		bv.Set(int32(off / int64(types.PtrSize))) // pointer
    
    	case types.TSTRING:
    		// struct { byte *str; intgo len; }
    		if off&int64(types.PtrSize-1) != 0 {
    			base.Fatalf("typebits.Set: invalid alignment, %v", t)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 01:53:41 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/TypesTest.groovy

    import javax.annotation.Nullable
    
    class TypesTest extends Specification {
        def "base object types are not visited"() {
            when: Types.walkTypeHierarchy(Object, Mock(Types.TypeVisitor))
            then: 0 * _
    
            when: Types.walkTypeHierarchy(GroovyObject, [Object, GroovyObject], Mock(Types.TypeVisitor))
            then: 0 * _
        }
    
        class Base {
            @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 06 15:03:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/internal/typeparams/normalize.go

    //
    // See the documentation of StructuralTerms for more information on
    // normalization.
    func UnionTermSet(union *types.Union) ([]*types.Term, error) {
    	return computeTermSet(union)
    }
    
    func computeTermSet(typ types.Type) ([]*types.Term, error) {
    	tset, err := computeTermSetInternal(typ, make(map[types.Type]*termSet), 0)
    	if err != nil {
    		return nil, err
    	}
    	if tset.terms.isEmpty() {
    		return nil, ErrEmptyTypeSet
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  6. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/types/FirStandaloneNormalAnalysisLibraryBinaryModuleAbbreviatedTypeTestGenerated.java

      }
    
      @Test
      @TestMetadata("ListAlias.kt")
      public void testListAlias() {
        runTest("analysis/analysis-api/testData/types/abbreviatedType/ListAlias.kt");
      }
    
      @Test
      @TestMetadata("ListAliasFromLibrary.kt")
      public void testListAliasFromLibrary() {
        runTest("analysis/analysis-api/testData/types/abbreviatedType/ListAliasFromLibrary.kt");
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 08 12:27:48 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. pkg/kubelet/util/queue/work_queue_test.go

    	q.Enqueue(types.UID("foo1"), -1*time.Minute)
    	q.Enqueue(types.UID("foo2"), -1*time.Minute)
    	q.Enqueue(types.UID("foo3"), 1*time.Minute)
    	q.Enqueue(types.UID("foo4"), 1*time.Minute)
    	expected := []types.UID{types.UID("foo1"), types.UID("foo2")}
    	compareResults(t, expected, q.GetWork())
    	compareResults(t, []types.UID{}, q.GetWork())
    	// Dial the time to 1 hour ahead.
    	clock.Step(time.Hour)
    	expected = []types.UID{types.UID("foo3"), types.UID("foo4")}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/walk/select.go

    			types.NewField(base.Pos, typecheck.Lookup("c"), types.Types[types.TUNSAFEPTR]),
    			types.NewField(base.Pos, typecheck.Lookup("elem"), types.Types[types.TUNSAFEPTR]),
    		}))
    	}
    	return scase
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 01:53:41 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. test/fixedbugs/issue13821b.go

    var x3 = b && b2    // ERROR "mismatched types B and B2|incompatible types"
    var x4 = x1 && b2   // ERROR "mismatched types B and B2|incompatible types"
    var x5 = x2 && b2   // ERROR "mismatched types B and B2|incompatible types"
    var x6 = b2 && x1   // ERROR "mismatched types B2 and B|incompatible types"
    var x7 = b2 && x2   // ERROR "mismatched types B2 and B|incompatible types"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 10 18:34:40 UTC 2020
    - 841 bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/adapter/TypeInspectorTest.groovy

            expect:
            def types = inspector.getReachableTypes(Thing)
            types == [Thing, SuperThing, GenericThing, Item1, Item2, Item3, Item4, Item5, Runnable, List, Map, Set] as Set
    
            def types2 = inspector.getReachableTypes(Thing)
            types2.is(types)
        }
    
        def "inspects cyclic types"() {
            expect:
            def types = inspector.getReachableTypes(Parent)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top