Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for complain (0.32 sec)

  1. 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)
  2. 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)
  3. src/go/printer/testdata/parser.go

    		// a field declaration cannot start with a '(' but we accept
    		// it here for more robust parsing and better error messages
    		// (parseFieldDecl will check and complain if necessary)
    		list = append(list, p.parseFieldDecl(scope))
    	}
    	rbrace := p.expect(token.RBRACE)
    
    	// TODO(gri): store struct scope in AST
    	return &ast.StructType{pos, &ast.FieldList{lbrace, list, rbrace}, false}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  4. cmd/bucket-handlers.go

    	_, s3Error = parseLocationConstraint(r)
    	if s3Error != ErrNone {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(s3Error), r.URL)
    		return
    	}
    
    	// check if client is attempting to create more buckets, complain about it.
    	if currBuckets := globalBucketMetadataSys.Count(); currBuckets+1 > maxBuckets {
    		internalLogIf(ctx, fmt.Errorf("Please avoid creating more buckets %d beyond recommended %d", currBuckets+1, maxBuckets), logger.WarningKind)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  5. istioctl/pkg/describe/describe.go

    			if err != nil {
    				return err
    			}
    
    			configClient := client.Istio()
    
    			// Get all the labels for all the matching pods.  We will used this to complain
    			// if NONE of the pods match a VirtualService
    			podsLabels := make([]klabels.Set, len(matchingPods))
    			for i, pod := range matchingPods {
    				podsLabels[i] = klabels.Set(pod.ObjectMeta.Labels)
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    	// need to store files here, since the toolchain won't
    	// depend on modules outside of vendor directories, but if
    	// GOPATH points somewhere else (e.g., to GOROOT), the
    	// go tool may complain.
    	os.Setenv("GOPATH", pathf("%s/pkg/obj/gopath", goroot))
    
    	// Set GOPROXY=off to avoid downloading modules to the modcache in
    	// the GOPATH set above to be inside GOROOT. The modcache is read
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    # define GTEST_SNPRINTF_(buffer, size, format, ...) \
         _snprintf_s(buffer, size, size, format, __VA_ARGS__)
    #elif defined(_MSC_VER)
    // Windows CE does not define _snprintf_s and MSVC prior to 2005 doesn't
    // complain about _snprintf.
    # define GTEST_SNPRINTF_ _snprintf
    #else
    # define GTEST_SNPRINTF_ snprintf
    #endif
    
    // The maximum number a BiggestInt can represent.  This definition
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  8. src/runtime/traceback.go

    		if doPrint && gp.m.incgo && f.funcID == abi.FuncID_sigpanic {
    			// We can inject sigpanic
    			// calls directly into C code,
    			// in which case we'll see a C
    			// return PC. Don't complain.
    			doPrint = false
    		}
    		if fail || doPrint {
    			print("runtime: g ", gp.goid, ": unexpected return pc for ", funcname(f), " called from ", hex(frame.lr), "\n")
    			tracebackHexdump(gp.stack, frame, 0)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    # define GTEST_SNPRINTF_(buffer, size, format, ...) \
         _snprintf_s(buffer, size, size, format, __VA_ARGS__)
    #elif defined(_MSC_VER)
    // Windows CE does not define _snprintf_s and MSVC prior to 2005 doesn't
    // complain about _snprintf.
    # define GTEST_SNPRINTF_ _snprintf
    #else
    # define GTEST_SNPRINTF_ snprintf
    #endif
    
    // The maximum number a BiggestInt can represent.  This definition
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  10. src/cmd/go/go_test.go

    	tg.tempFile("src/p2/p2.go", `//go:binary-only-packages-are-not-great
    
    		package p2
    		import "p1"
    		func F() { p1.F(true) }
    	`)
    	tg.runFail("install", "p2")
    	tg.grepStderr("no Go files", "did not complain about missing sources")
    
    	tg.tempFile("src/p1/missing.go", `//go:binary-only-package
    
    		package p1
    		import _ "fmt"
    		func G()
    	`)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top