Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for complain (0.26 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChain.java

                    if (cppCompiler.isAvailable()) {
                        return toolProvider;
                    }
                    // No C++ compiler, complain about it
                    return new UnavailablePlatformToolProvider(targetMachine.getOperatingSystem(), cppCompiler);
                case ANY:
                    if (toolProvider instanceof UnsupportedPlatformToolProvider) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 20K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/response-model.md

    If you added the return type annotation, tools and editors would complain with a (correct) error telling you that your function is returning a type (e.g. a dict) that is different from what you declared (e.g. a Pydantic model).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  3. subprojects/core/build.gradle.kts

    }
    
    strictCompile {
        ignoreRawTypes() // raw types used in public API
        ignoreAnnotationProcessing() // Without this, javac will complain about unclaimed annotations
    }
    
    packageCycles {
        excludePatterns.add("org/gradle/**")
    }
    
    tasks.test {
        setForkEvery(200)
    }
    
    tasks.compileTestGroovy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/query-params-str-validations.md

    the arguments to the function for it to work correctly, otherwise the values will be different from what you expect (e.g. `QueryInfo` or something similar instead of `str`). And your editor won't complain, and Python won't complain running that function, only when the operations inside error out.
    
    Because `Annotated` can have more than one metadata annotation, you could now even use the same function with other tools, like <a href="https://typer.tiangolo.com/" class="external-link" target...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/HttpScriptPluginIntegrationSpec.groovy

                .assertHasResolution(Documentation.dslReference(TextResourceFactory.class, "fromInsecureUri(java.lang.Object)").getConsultDocumentationMessage())
        }
    
        def "does not complain when applying script plugin via http using text resource"() {
            when:
            server.useHostname()
            def script = file('external.gradle')
            server.expectGet('/external.gradle', script)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 30 08:26:30 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  6. tests/integration/security/pass_through_filter_chain_test.go

    							for _, expect := range tc.expected {
    								expect := expect
    								p := expect.port
    								opts := echo.CallOptions{
    									// Do not set To, otherwise fillInCallOptions() will
    									// complain with port does not match.
    									ToWorkload: to.Instances()[0],
    									Port: echo.Port{
    										Protocol: p.Protocol,
    
    										// The ServicePort tells the client which port to connect to.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/scanner.go

    	case 'U':
    		s.nextch()
    		n, base, max = 8, 16, unicode.MaxRune
    	default:
    		if s.ch < 0 {
    			return true // complain in caller about EOF
    		}
    		s.errorf("unknown escape")
    		return false
    	}
    
    	var x uint32
    	for i := n; i > 0; i-- {
    		if s.ch < 0 {
    			return true // complain in caller about EOF
    		}
    		d := base
    		if isDecimal(s.ch) {
    			d = uint32(s.ch) - '0'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/macho_combine_dwarf.go

    	// We want the DWARF segment to be considered non-loadable, so
    	// force vmaddr and vmsize to zero. In addition, set the initial
    	// protection to zero so as to make the dynamic loader happy,
    	// since otherwise it may complain that the vm size and file
    	// size don't match for the segment. See issues 21647 and 32673
    	// for more context. Also useful to refer to the Apple dynamic
    	// loader source, specifically ImageLoaderMachO::sniffLoadCommands
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/http/httpproxy/proxy.go

    	proxyURL, err := url.Parse(proxy)
    	if err != nil || proxyURL.Scheme == "" || proxyURL.Host == "" {
    		// proxy was bogus. Try prepending "http://" to it and
    		// see if that parses correctly. If not, we fall
    		// through and complain about the original one.
    		if proxyURL, err := url.Parse("http://" + proxy); err == nil {
    			return proxyURL, nil
    		}
    	}
    	if err != nil {
    		return nil, fmt.Errorf("invalid proxy address %q: %v", proxy, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/signature.go

    				got := measure(len(tparams), "type parameter")
    				check.errorf(recvPar, BadRecv, "got %s, but receiver base type declares %d", got, len(recvTParams))
    			}
    		}
    	}
    
    	if tparams != nil {
    		// The parser will complain about invalid type parameters for methods.
    		check.collectTypeParams(&sig.tparams, tparams)
    	}
    
    	// Use a temporary scope for all parameter declarations and then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:33:05 UTC 2024
    - 12.6K bytes
    - Viewed (0)
Back to top