Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for complain (0.22 sec)

  1. build-logic/uber-plugins/src/main/kotlin/gradlebuild.instrumented-project.gradle.kts

    tasks.withType<JavaCompile>().configureEach {
        options.compilerArgs.add("-Aorg.gradle.annotation.processing.instrumented.project=${project.name}")
    }
    
    strictCompile {
        ignoreAnnotationProcessing() // Without this, javac will complain about unclaimed annotations
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 19:53:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. 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)
  3. src/net/tcpsock_plan9.go

    	}
    	return sd.doDialTCP(ctx, laddr, raddr)
    }
    
    func (sd *sysDialer) doDialTCP(ctx context.Context, laddr, raddr *TCPAddr) (*TCPConn, error) {
    	switch sd.network {
    	case "tcp4":
    		// Plan 9 doesn't complain about [::]:0->127.0.0.1, so it's up to us.
    		if laddr != nil && len(laddr.IP) != 0 && laddr.IP.To4() == nil {
    			return nil, &AddrError{Err: "non-IPv4 local address", Addr: laddr.String()}
    		}
    	case "tcp", "tcp6":
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top