Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 92 for geterror (0.14 sec)

  1. test/fixedbugs/issue42058a.go

    // source code is governed by a BSD-style license that can be found in
    // the LICENSE file.
    
    package p
    
    var c chan [2 << 16]byte // GC_ERROR "channel element type too large"
    
    type T [1 << 17]byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 15 02:35:59 UTC 2020
    - 338 bytes
    - Viewed (0)
  2. test/fixedbugs/issue52697.go

    // license that can be found in the LICENSE file.
    
    //go:build !386 && !amd64p32 && !arm && !mips && !mipsle
    
    package main
    
    func g() { // GC_ERROR "stack frame too large"
    	xs := [3000 * 2000][33]int{}
    	for _, x := range xs {
    		if len(x) > 50 {
    
    		}
    	}
    }
    
    func main() { // GC_ERROR "stack frame too large"
    	defer f()
    	g()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 16:32:07 UTC 2023
    - 459 bytes
    - Viewed (0)
  3. maven-model-builder/src/test/java/org/apache/maven/model/profile/activation/AbstractProfileActivatorTest.java

            assertEquals(active, activator.isActive(new org.apache.maven.model.Profile(profile), context, problems));
    
            assertEquals(0, problems.getErrors().size(), problems.getErrors().toString());
            assertEquals(0, problems.getWarnings().size(), problems.getWarnings().toString());
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. test/fixedbugs/issue23732.go

    	_ = Foo{ // GCCGO_ERROR "too few expressions"
    		1,
    		2,
    		3,
    	} // GC_ERROR "too few values in"
    
    	_ = Foo{
    		1,
    		2,
    		3,
    		Bar{"A", "B"}, // ERROR "too many values in|too many expressions"
    	}
    
    	_ = Foo{ // GCCGO_ERROR "too few expressions"
    		1,
    		2,
    		Bar{"A", "B"}, // ERROR "too many values in|too many expressions"
    	} // GC_ERROR "too few values in"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 749 bytes
    - Viewed (0)
  5. internal/config/dns/operator_dns.go

    	if err != nil {
    		return newError(bucket, err)
    	}
    	req, err := http.NewRequestWithContext(ctx, http.MethodPost, e, nil)
    	if err != nil {
    		return newError(bucket, err)
    	}
    	if err = c.addAuthHeader(req); err != nil {
    		return newError(bucket, err)
    	}
    
    	resp, err := c.httpClient.Do(req)
    	if err != nil {
    		if derr := c.Delete(bucket); derr != nil {
    			return newError(bucket, derr)
    		}
    		return err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. test/fixedbugs/issue33460.go

    	}
    }
    
    const b = "b"
    
    var _ = map[string]int{
    	"a": 0,
    	b:   1,
    	"a": 2, // ERROR "previous key at LINE-2|duplicate key.*in map literal"
    	"b": 3, // GC_ERROR "previous key at LINE-2|duplicate key.*in map literal"
    	"b": 4, // GC_ERROR "previous key at LINE-3|duplicate key.*in map literal"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 825 bytes
    - Viewed (0)
  7. test/const2.go

    )
    
    const LargeA = 1000000000000000000
    const LargeB = LargeA * LargeA * LargeA
    const LargeC = LargeB * LargeB * LargeB // GC_ERROR "constant multiplication overflow"
    
    const AlsoLargeA = LargeA << 400 << 400 >> 400 >> 400 // GC_ERROR "constant shift overflow"
    
    // Issue #42732.
    
    const a = 1e+500000000
    const b = a * a // ERROR "constant multiplication overflow|not representable"
    const c = b * b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 01 21:49:31 UTC 2020
    - 1008 bytes
    - Viewed (0)
  8. src/go/types/errors.go

    // A new error_ is created with Checker.newError.
    // To report an error_, call error_.report.
    type error_ struct {
    	check *Checker
    	desc  []errorDesc
    	code  Code
    	soft  bool // TODO(gri) eventually determine this from an error code
    }
    
    // newError returns a new error_ with the given error code.
    func (check *Checker) newError(code Code) *error_ {
    	if code == 0 {
    		panic("error code must not be 0")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/locking/LockOutOfDateException.java

        private final List<String> errors;
    
        public LockOutOfDateException(String message) {
            super(message);
            this.errors = emptyList();
        }
    
        public List<String> getErrors() {
            return errors;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 30 12:42:26 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/xla_host_recv_device_context.cc

        return;
      }
      status = stream_->RecordEvent(done_event_.get().get());
      if (!status.ok()) {
        done(status);
        return;
      }
      if (auto st = stream_->BlockHostUntilDone(); !st.ok()) {
        done_event_.SetError(absl::InternalError(absl::StrFormat(
            "failed to synchronize send operation with a stream: %s",
            st.ToString())));
        return;
      }
    
      done_event_.SetStateConcrete();
      done(absl::OkStatus());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top