Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 201 for complain (0.15 sec)

  1. src/go/types/stmt.go

    			}
    			assert(obj.typ == nil)
    
    			// initialize lhs iteration variable, if any
    			typ := rhs[i]
    			if typ == nil {
    				obj.typ = Typ[Invalid]
    				obj.used = true // don't complain about unused variable
    				continue
    			}
    
    			if rangeOverInt {
    				assert(i == 0) // at most one iteration variable (rhs[1] == nil for rangeOverInt)
    				check.initVar(obj, &x, "range clause")
    			} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/parse.go

    next:
    	// Skip newlines.
    	var tok lex.ScanToken
    	for {
    		tok = p.nextToken()
    		// We save the line number here so error messages from this instruction
    		// are labeled with this line. Otherwise we complain after we've absorbed
    		// the terminating newline and the line numbers are off by one in errors.
    		p.lineNum = p.lex.Line()
    		switch tok {
    		case '\n', ';':
    			continue
    		case scanner.EOF:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  3. 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)
  4. src/go/printer/testdata/complit.x

    package complit
    
    var (
    	// Multi-line declarations
    	V1	= T{
    		F1: "hello",
    		// contains filtered or unexported fields
    	}
    	V2	= T{
    
    		F1: "hello",
    		// contains filtered or unexported fields
    	}
    	V3	= T{
    		F1:	"hello",
    		F2: T2{
    			A: "world",
    			// contains filtered or unexported fields
    		},
    		// contains filtered or unexported fields
    	}
    	V4	= T{
    		// contains filtered or unexported fields
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 01 19:53:32 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  5. src/go/printer/testdata/complit.input

    // Copyright 2018 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package complit
    
    var (
    	// Multi-line declarations
    	V1 = T{
    		F1: "hello",
    		f2: 1,
    	}
    	V2 = T{
    		f2: 1,
    		F1: "hello",
    	}
    	V3 = T{
    		F1: "hello",
    		F2: T2{
    			A: "world",
    			b: "hidden",
    		},
    		f3: T2{
    			A: "world",
    		},
    	}
    	V4 = T{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 01 19:53:32 UTC 2018
    - 912 bytes
    - Viewed (0)
  6. 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)
  7. src/cmd/internal/obj/x86/obj6.go

    		if p.RestArgs != nil {
    			p2.RestArgs = append(p2.RestArgs, p.RestArgs...)
    		}
    		p2.Reg = p.Reg
    		p2.To = p.To
    		// p.To.Type was set to TYPE_BRANCH above, but that makes checkaddr
    		// in ../pass.go complain, so set it back to TYPE_MEM here, until p2
    		// itself gets passed to progedit.
    		p2.To.Type = obj.TYPE_MEM
    		p2.RegTo2 = 1
    
    		obj.Nopout(p)
    		return
    
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:36:45 UTC 2023
    - 40.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    What it means, in practice, is that if you have module A built for Java 8, and module B built for Java 8, then there's no change.
    However if B is built for Java 9+, then it's not binary compatible anymore, and Gradle would complain with an error message like the following:
    
    ```
    Unable to find a matching variant of project :producer:
      - Variant 'apiElements' capability test:producer:unspecified:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  9. 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)
  10. src/os/exec/exec_test.go

    	errLine, body, ok := strings.Cut(string(bs), "\n")
    	if !ok {
    		t.Fatalf("expected two lines from cat; got %q", bs)
    	}
    	if !strings.HasPrefix(errLine, "Error: open /bogus/file.foo") {
    		t.Errorf("expected stderr to complain about file; got %q", errLine)
    	}
    	if !strings.Contains(body, "func TestCatGoodAndBadFile(t *testing.T)") {
    		t.Errorf("expected test code; got %q (len %d)", body, len(body))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
Back to top