Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for complain (0.19 sec)

  1. platforms/core-runtime/instrumentation-declarations/build.gradle.kts

        annotationProcessor(project(":internal-instrumentation-processor"))
        annotationProcessor(platform(project(":distributions-dependencies")))
    }
    
    tasks.named<JavaCompile>("compileJava") {
        // Without this, javac will complain about unclaimed org.gradle.api.NonNullApi annotation
        options.compilerArgs.add("-Xlint:-processing")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode.go

    		// timestamps.
    		ByteStringToTime: cbor.ByteStringToTimeAllowed,
    	}.DecMode()
    	if err != nil {
    		panic(err)
    	}
    	return decode
    }()
    
    // DecodeLax is derived from Decode, but does not complain about unknown fields in the input.
    var DecodeLax cbor.DecMode = func() cbor.DecMode {
    	opts := Decode.DecOptions()
    	opts.ExtraReturnErrors &^= cbor.ExtraDecErrorUnknownField // clear bit
    	dm, err := opts.DecMode()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:03:36 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/syntax/parser.go

    			t.pos = pos
    			p.next()
    			t.Fun = x
    			t.ArgList, t.HasDots = p.argList()
    			x = t
    
    		case _Lbrace:
    			// operand may have returned a parenthesized complit
    			// type; accept it but complain if we have a complit
    			t := Unparen(x)
    			// determine if '{' belongs to a composite literal or a block statement
    			complit_ok := false
    			switch t.(type) {
    			case *Name, *SelectorExpr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/options/TaskOptionFailureIntegrationTest.groovy

            when:
            run '-all'
    
            then:
            "should fail with a decent error, not internal error (applies to all CommandLineArgumentExceptions)"
            "should complain that there's no '-all' option"
    
            when:
            run 'tasks', '-refresh-dependencies'
    
            then:
            "should fail in a consistent way as with '--refresh-dependencies'"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:35 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/main/java/org/gradle/api/services/internal/RegisteredBuildServiceProvider.java

    import org.gradle.internal.service.ServiceRegistry;
    
    import javax.annotation.Nonnull;
    import javax.annotation.Nullable;
    import java.util.function.Consumer;
    
    // TODO:configuration-cache - complain when used at configuration time, except when opted in to this
    public class RegisteredBuildServiceProvider<T extends BuildService<P>, P extends BuildServiceParameters> extends BuildServiceProvider<T, P> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top