Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 43 for badtype (0.11 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/ResolveArtifactsProgressCrossVersionSpec.groovy

            mavenHttpRepo.module("test", "provider", "1.0")
                .hasPackaging("pom")
                .hasType("pom")
                .dependsOn("test", "other", "1.0")
                .publish()
                .allowAll()
            mavenHttpRepo.module("test", "other", "1.0")
                .hasPackaging("pom")
                .hasType("pom")
                .publish()
                .allowAll()
        }
    
        def expectDownloadOtherTypes() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. src/runtime/map_fast64.go

    }
    
    func growWork_fast64(t *maptype, h *hmap, bucket uintptr) {
    	// make sure we evacuate the oldbucket corresponding
    	// to the bucket we're about to use
    	evacuate_fast64(t, h, bucket&h.oldbucketmask())
    
    	// evacuate one more oldbucket to make progress on growing
    	if h.growing() {
    		evacuate_fast64(t, h, h.nevacuate)
    	}
    }
    
    func evacuate_fast64(t *maptype, h *hmap, oldbucket uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart1IntegrationTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/main.go

    			}
    		})
    	}
    
    	switch *flagHeadType {
    	case "":
    	case "windowsgui":
    		ctxt.HeadType = objabi.Hwindows
    		windowsgui = true
    	default:
    		if err := ctxt.HeadType.Set(*flagHeadType); err != nil {
    			Errorf(nil, "%v", err)
    			usage()
    		}
    	}
    	if ctxt.HeadType == objabi.Hunknown {
    		ctxt.HeadType.Set(buildcfg.GOOS)
    	}
    
    	if !*flagAslr && ctxt.BuildMode != BuildModeCShared {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. src/internal/concurrent/hashtriemap.go

    func NewHashTrieMap[K, V comparable]() *HashTrieMap[K, V] {
    	var m map[K]V
    	mapType := abi.TypeOf(m).MapType()
    	ht := &HashTrieMap[K, V]{
    		root:     newIndirectNode[K, V](nil),
    		keyHash:  mapType.Hasher,
    		keyEqual: mapType.Key.Equal,
    		valEqual: mapType.Elem.Equal,
    		seed:     uintptr(rand.Uint64()),
    	}
    	return ht
    }
    
    type hashFunc func(unsafe.Pointer, uintptr) uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. src/encoding/gob/type.go

    	return g.Name
    }
    
    func (g *gobEncoderType) string() string { return g.Name }
    
    // Map type
    type mapType struct {
    	CommonType
    	Key  typeId
    	Elem typeId
    }
    
    func newMapType(name string) *mapType {
    	m := &mapType{CommonType{Name: name}, 0, 0}
    	return m
    }
    
    func (m *mapType) init(key, elem gobType) {
    	// Set our type id before evaluating the element's, in case it's our own.
    	setTypeId(m)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenBomResolveIntegrationTest.groovy

                configurations { compile }
            """
            moduleA = mavenHttpRepo.module('group', 'moduleA', '2.0').allowAll().publish()
            bom = mavenHttpRepo.module('group', 'bom', '1.0')
                .hasType("pom")
                .allowAll()
        }
    
        MavenModule bomDependency(String artifact, List<Map<String, String>> exclusions = null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  8. src/go/types/operand.go

    		buf.WriteString(" (")
    	}
    
    	// <untyped kind>
    	hasType := false
    	switch x.mode {
    	case invalid, novalue, builtin, typexpr:
    		// no type
    	default:
    		// should have a type, but be cautious (don't crash during printing)
    		if x.typ != nil {
    			if isUntyped(x.typ) {
    				buf.WriteString(x.typ.(*Basic).name)
    				buf.WriteByte(' ')
    				break
    			}
    			hasType = true
    		}
    	}
    
    	// <mode>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/JavaPropertyReflectionUtil.java

            // Cases we want to handle:
            // - List<String>
            // - Class<?>
            // - List<Class<?>>
            // - Integer[]
            // - ? extends BaseType
            // - Class<?>[]
            if (doesNotHaveTypeVariable(type)) {
                return false;
            }
            if (type instanceof TypeVariable) {
                return true;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/VariantFilesMetadataRulesTest.groovy

            immutableMetadata.variantsForGraphTraversal
    
            then:
            InvalidUserDataException e = thrown()
            e.message == "$baseType 'not-exist' not defined in module org.test:producer:1.0"
    
            where:
            metadataType | metadata                       | baseType
            "maven"      | mavenComponentMetadata('dep')  | 'Variant'
            "ivy"        | ivyComponentMetadata('dep')    | 'Configuration'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top