Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for badtype (0.2 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/AbstractMavenModule.groovy

            return this
        }
    
        @Override
        MavenModule hasPackaging(String packaging) {
            this.packaging = packaging
            return this
        }
    
        @Override
        MavenModule hasType(String type) {
            this.type = type
            return this
        }
    
        @Override
        MavenModule variant(String variant, Map<String, String> attributes) {
            createVariant(variant, attributes)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  2. src/syscall/security_windows.go

    	FullName   *uint16
    }
    
    //sys	NetUserGetInfo(serverName *uint16, userName *uint16, level uint32, buf **byte) (neterr error) = netapi32.NetUserGetInfo
    //sys	NetGetJoinInformation(server *uint16, name **uint16, bufType *uint32) (neterr error) = netapi32.NetGetJoinInformation
    //sys	NetApiBufferFree(buf *byte) (neterr error) = netapi32.NetApiBufferFree
    
    const (
    	// do not reorder
    	SidTypeUser = 1 + iota
    	SidTypeGroup
    	SidTypeDomain
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  3. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/AbstractMavenPublishJavaIntegTest.groovy

            then:
            javaLibrary.assertPublished()
    
            def mavenModule = javaLibrary.mavenModule
            mavenModule.parsedPom.scopes['import'].expectDependencyManagement('org.test:bom:1.0').hasType('pom')
            mavenModule.parsedPom.scopes[scope].assertDependsOn('org.test:bar:')
    
            and:
            if (config == "api") {
                javaLibrary.parsedModuleMetadata.variant("apiElements") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 45.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/plist.go

    		ctxt.Arch.Preprocess(ctxt, s, newprog)
    		ctxt.Arch.Assemble(ctxt, s, newprog)
    		if ctxt.Errors > 0 {
    			continue
    		}
    		linkpcln(ctxt, s)
    		ctxt.populateDWARF(plist.Curfn, s)
    		if ctxt.Headtype == objabi.Hwindows && ctxt.Arch.SEH != nil {
    			s.Func().sehUnwindInfoSym = ctxt.Arch.SEH(ctxt, s)
    		}
    	}
    }
    
    func (ctxt *Link) InitTextSym(s *LSym, flag int, start src.XPos) {
    	if s == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

          }
          new_qtype = quant::UniformQuantizedPerAxisType::getChecked(
              op.getLoc(), flags, qtype.getStorageType(), qtype.getExpressedType(),
              aqtype.getScales(), new_zero_points, aqtype.getQuantizedDimension(),
              aqtype.getStorageTypeMin() - offset,
              aqtype.getStorageTypeMax() - offset);
        } else {
          return failure();
        }
    
        if (!new_qtype) return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsIntegrationTest.groovy

            def constrainedBase = mavenRepo.module('org', 'constrained', '1.0').publish()
            def constrained = mavenRepo.module('org', 'constrained', '1.1').publish()
            def bom = mavenRepo.module('org', 'bom', '1.0').hasType('pom').dependencyConstraint(constrained).publish()
            def user = mavenRepo.module('org', 'user', '1.0').dependsOn(constrainedBase).publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  7. src/encoding/gob/decode.go

    	case reflect.Map:
    		if !ok || wire.MapT == nil {
    			return false
    		}
    		MapType := wire.MapT
    		return dec.compatibleType(t.Key(), MapType.Key, inProgress) && dec.compatibleType(t.Elem(), MapType.Elem, inProgress)
    	case reflect.Slice:
    		// Is it an array of bytes?
    		if t.Elem().Kind() == reflect.Uint8 {
    			return fw == tBytes
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/codegen/jvmbytecode/InterceptJvmCallsGenerator.java

                    .addField(CONTEXT_FIELD)
                    // actual content:
                    .addMethod(visitMethodInsnBuilder.build())
                    .addFields(typeFieldByOwner.values())
                    .addType(factoryClass);
        }
    
        private static TypeSpec generateFactoryClass(String className, BytecodeInterceptorType interceptorType) {
            MethodSpec method = MethodSpec.methodBuilder("create")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:50:01 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskIntegrationTest.groovy

            def moduleA = mavenRepo.module('group', 'moduleA', '2.0').dependsOn(moduleB).publish()
            mavenRepo.module('group', 'bom', '1.0')
                    .hasType("pom")
                    .dependencyConstraint(moduleA)
                    .dependencyConstraint(moduleC)
                    .publish()
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 05:32:54 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/util.go

    // requireAlignment ensures that the function is aligned enough to support
    // the required code alignment
    func requireAlignment(a int64, ctxt *Link, cursym *LSym) {
    	// TODO remove explicit knowledge about AIX.
    	if ctxt.Headtype != objabi.Haix && cursym.Func().Align < int32(a) {
    		cursym.Func().Align = int32(a)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top