Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 92 for geterror (0.14 sec)

  1. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexResponse.java

        }
    
        public int getNumberOfInputDocs() {
            return numberOfInputDocs;
        }
    
        public boolean hasError() {
            return hasError;
        }
    
        public List<Throwable> getErrors() {
            return errors;
        }
    
        public long getTook() {
            return took;
        }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/collections/FilteredMinimalFileTree.java

            return tree;
        }
    
        public PatternSet getPatterns() {
            return patterns;
        }
    
        @Override
        public DirectoryFileTree getMirror() {
            DirectoryFileTree mirror = tree.getMirror();
            return mirror.filter(this.patterns);
        }
    
        @Override
        public MinimalFileTree filter(PatternFilterable patterns) {
            PatternSet filter = this.patterns.intersect();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. test/fixedbugs/issue11362.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 11362: prints empty canonical import path
    
    package main
    
    import _ "unicode//utf8" // GC_ERROR "non-canonical import path .unicode//utf8. \(should be .unicode/utf8.\)"
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 12 02:16:50 UTC 2021
    - 368 bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/suggest/index/SuggestDeleteResponse.java

            if (errors != null && !errors.isEmpty()) {
                this.errors.addAll(errors);
            }
        }
    
        public boolean hasError() {
            return !errors.isEmpty();
        }
    
        public List<Throwable> getErrors() {
            return errors;
        }
    
        public long getTook() {
            return took;
        }
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. maven-model-builder/src/test/java/org/apache/maven/model/building/SimpleProblemCollector.java

            this.model = model;
        }
    
        public Model getModel() {
            return model;
        }
    
        public List<String> getWarnings() {
            return warnings;
        }
    
        public List<String> getErrors() {
            return errors;
        }
    
        public List<String> getFatals() {
            return fatals;
        }
    
        public void add(ModelProblemCollectorRequest req) {
            switch (req.getSeverity()) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Sep 11 16:17:26 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. test/fixedbugs/issue14520.go

    // errorcheck
    
    // Copyright 2016 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 f
    
    func f(x int /* // GC_ERROR "unexpected newline"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 11 02:26:58 UTC 2022
    - 294 bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go

    package unix
    
    import "syscall"
    
    //extern gettimeofday
    func realGettimeofday(*Timeval, *byte) int32
    
    func gettimeofday(tv *Timeval) (err syscall.Errno) {
    	r := realGettimeofday(tv, nil)
    	if r < 0 {
    		return syscall.GetErrno()
    	}
    	return 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 436 bytes
    - Viewed (0)
  8. test/fixedbugs/issue23823.go

    // license that can be found in the LICENSE file.
    
    package p
    
    type I1 = interface {
    	I2
    }
    
    // BAD: type loop should mention I1; see also #41669
    type I2 interface { // GC_ERROR "invalid recursive type: I2 refers to itself"
    	I1 // GCCGO_ERROR "invalid recursive interface"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 14:21:33 UTC 2022
    - 397 bytes
    - Viewed (0)
  9. test/fixedbugs/issue18092.go

    // license that can be found in the LICENSE file.
    
    package p
    
    func _() {
    	var ch chan bool
    	select {
    	default:
    	case <-ch { // GCCGO_ERROR "expected colon"
    	}           // GC_ERROR "expected :"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 01 22:37:04 UTC 2022
    - 320 bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/failure/mappers/AssertjMultipleAssertionsErrorMapper.java

            List<TestFailure> failures = new ArrayList<TestFailure>();
    
            List<Throwable> innerExceptions = invokeMethod(throwable, "getErrors", List.class);
            for (Throwable innerException : innerExceptions) {
                failures.add(mapper.createFailure(innerException));
            }
    
            return failures;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top