Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 43 for badtype (0.1 sec)

  1. src/net/http/fcgi/child.go

    	if r.wroteCGIHeader {
    		return
    	}
    	r.wroteCGIHeader = true
    	fmt.Fprintf(r.w, "Status: %d %s\r\n", r.code, http.StatusText(r.code))
    	if _, hasType := r.header["Content-Type"]; r.code != http.StatusNotModified && !hasType {
    		r.header.Set("Content-Type", http.DetectContentType(p))
    	}
    	r.header.Write(r.w)
    	r.w.WriteString("\r\n")
    	r.w.Flush()
    }
    
    func (r *response) Flush() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintCheckerTest.kt

            override val isolate: WriteIsolate
                get() = undefined()
    
            override val circularReferences: CircularReferences
                get() = undefined()
    
            override fun beanStateWriterFor(beanType: Class<*>): BeanStateWriter =
                undefined()
    
            override fun writeClass(type: Class<*>): Unit =
                undefined()
    
            override val logger: Logger
                get() = undefined()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  3. src/text/template/funcs.go

    	if err := goodFunc(name, typ); err != nil {
    		return reflect.Value{}, err
    	}
    	numIn := typ.NumIn()
    	var dddType reflect.Type
    	if typ.IsVariadic() {
    		if len(args) < numIn-1 {
    			return reflect.Value{}, fmt.Errorf("wrong number of args for %s: got %d want at least %d", name, len(args), numIn-1)
    		}
    		dddType = typ.In(numIn - 1).Elem()
    	} else {
    		if len(args) != numIn {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. plugin/pkg/auth/authorizer/rbac/rbac_test.go

    			panic(fmt.Errorf("invalid kind %s", r.Subjects[i].Kind))
    		}
    	}
    	return r
    }
    
    func newRoleBinding(namespace, roleName string, bindType uint16, subjects ...string) *rbacv1.RoleBinding {
    	r := &rbacv1.RoleBinding{ObjectMeta: metav1.ObjectMeta{Namespace: namespace}}
    
    	switch bindType {
    	case bindToRole:
    		r.RoleRef = rbacv1.RoleRef{APIGroup: rbacv1.GroupName, Kind: "Role", Name: roleName}
    	case bindToClusterRole:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 21.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/deadcode.go

    	} else {
    		// The external linker refers main symbol directly.
    		if d.ctxt.LinkMode == LinkExternal && (d.ctxt.BuildMode == BuildModeExe || d.ctxt.BuildMode == BuildModePIE) {
    			if d.ctxt.HeadType == objabi.Hwindows && d.ctxt.Arch.Family == sys.I386 {
    				*flagEntrySymbol = "_main"
    			} else {
    				*flagEntrySymbol = "main"
    			}
    		}
    		names = append(names, *flagEntrySymbol)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. schema/relationship.go

    func hasPolymorphicRelation(tagSettings map[string]string) bool {
    	if _, ok := tagSettings["POLYMORPHIC"]; ok {
    		return true
    	}
    
    	_, hasType := tagSettings["POLYMORPHICTYPE"]
    	_, hasId := tagSettings["POLYMORPHICID"]
    
    	return hasType && hasId
    }
    
    func (schema *Schema) setRelation(relation *Relationship) {
    	// set non-embedded relation
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 03:46:59 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  7. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishMultiProjectIntegTest.groovy

            libraryModule.parsedPom.scopes.compile.assertDependencyManagement()
            libraryModule.parsedPom.scopes['import'].expectDependencyManagement("org.test:$platformName:1.0").hasType('pom')
            libraryModule.parsedModuleMetadata.variant('apiElements') {
                dependency("org.test:bar:").exists()
                dependency("org.test:$platformName:1.0").exists()
                noMoreDependencies()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantFilesMetadataRulesIntegrationTest.groovy

                'org.test:moduleA:1.0' {
                    expectGetMetadata()
                }
            }
    
            then:
            def baseType = useMaven() || gradleMetadataPublished ? 'Variant' : 'Configuration'
            fails 'checkDep'
            failure.assertHasCause "$baseType 'this-does-not-exist' not defined in module org.test:moduleA:1.0"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.1K bytes
    - Viewed (0)
  9. platforms/jvm/java-platform/src/integTest/groovy/org/gradle/integtests/resolve/platforms/JavaPlatformResolveIntegrationTest.groovy

                .asGradlePlatform()
                .dependencyConstraint(foo)
                .publish()
            def mavenBom = mavenHttpRepo.module("org", "bom-platform", "1.0")
                .hasType("pom")
                .dependencyConstraint(foo)
                .publish()
    
            def bar = mavenHttpRepo.module('org', 'bar', '1.0').dependsOn([exclusions: [[module: 'foobaz']]], foo).withModuleMetadata().publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  10. tensorflow/c/while_loop_test.cc

      // TODO(skyewm): improve error message
      ExpectError(TF_INVALID_ARGUMENT,
                  "Requested return tensor 'p0:0' not found in graph def");
    }
    
    TEST_F(CApiWhileLoopTest, BadTypes) {
      Init(1);
      CreateCondGraph();
      // Op that has a float input + output
      TF_OperationDescription* desc = TF_NewOperation(
          params_->body_graph, "FakeQuantWithMinMaxArgs", "float_op");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 06:05:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top