Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 201 for complain (0.33 sec)

  1. 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)
  2. 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)
  3. pkg/test/echo/server/forwarder/http.go

    		return &http2.Transport{
    			// Golang doesn't have first class support for h2c, so we provide some workarounds
    			// See https://www.mailgun.com/blog/http-2-cleartext-h2c-client-example-go/
    			// So http2.Transport doesn't complain the URL scheme isn't 'https'
    			AllowHTTP: true,
    			// Pretend we are dialing a TLS endpoint. (Note, we ignore the passed tls.Config)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/path-params-numeric-validations.md

    But you still need to use `Path` for the `item_id` path parameter. And you don't want to use `Annotated` for some reason.
    
    Python will complain if you put a value with a "default" before a value that doesn't have a "default".
    
    But you can re-order them, and have the value without a default (the query parameter `q`) first.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 01 21:05:52 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  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. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    The basic rule behind Gradle's behavior is to *execute all tasks down the hierarchy with _this_ name*.
    And *complain if there is _no_ such task found* in any of the subprojects traversed.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K 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