Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 201 for complain (0.24 sec)

  1. 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)
  2. platforms/software/resources-s3/src/main/java/org/gradle/internal/resource/transport/aws/s3/S3ResourceConnector.java

                    LOGGER.debug("Downloaded {} bytes of the object content for metadata request which is too much.", downloadedContentLength);
                }
            } catch (IOException e) {
                // Don't complain loudly to the user about the error there because we were discarding the response anyway.
                LOGGER.debug("Exception while consuming empty object content from metadata request", e);
            } finally {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/go/parser/parser.go

    		case token.LBRACK:
    			x = p.parseIndexOrSliceOrInstance(x)
    		case token.LPAREN:
    			x = p.parseCallOrConversion(x)
    		case token.LBRACE:
    			// operand may have returned a parenthesized complit
    			// type; accept it but complain if we have a complit
    			t := ast.Unparen(x)
    			// determine if '{' belongs to a composite literal or a block statement
    			switch t.(type) {
    			case *ast.BadExpr, *ast.Ident, *ast.SelectorExpr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K 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. src/cmd/compile/internal/inline/inlheur/testdata/props/calls.go

    	if x != G {
    		panic("ouch")
    		/* Notes: */
    		/* - we only look for post-dominating panic/exit, so */
    		/*   this site will on fact not have a panicpath flag */
    		/* - vet will complain about this site as unreachable */
    		callee(x)
    	}
    	if x != G {
    		callee(x)
    		if x < 100 {
    			panic("ouch")
    		}
    	}
    	if x+G == 101 {
    		if x < 100 {
    			panic("ouch")
    		}
    		callee(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top