Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 311 - 320 of 2,186 for erros (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. cmd/metacache-walk.go

    			if sterr == nil && st.Mode().IsRegular() {
    				return errFileNotFound
    			}
    		}
    	}
    
    	prefix := opts.FilterPrefix
    	var scanDir func(path string) error
    
    	scanDir = func(current string) error {
    		if contextCanceled(ctx) {
    			return ctx.Err()
    		}
    		if opts.Limit > 0 && objsReturned >= opts.Limit {
    			return nil
    		}
    
    		// Skip forward, if requested...
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Mon May 26 07:06:43 GMT 2025
    - 12.6K bytes
    - Click Count (0)
  2. .github/workflows/pre-commit.yml

                git push
              fi
          - uses: pre-commit-ci/lite-action@v1.1.0
            if: env.HAS_SECRETS == 'false'
            with:
              msg: ЁЯОи Auto format
          - name: Error out on pre-commit errors
            if: steps.precommit.outcome == 'failure'
            run: exit 1
    
      # https://github.com/marketplace/actions/alls-green#why
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 22:02:57 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  3. internal/event/target/amqp.go

    }
    
    func (target *AMQPTarget) channel() (*amqp091.Channel, chan amqp091.Confirmation, error) {
    	var err error
    	var conn *amqp091.Connection
    	var ch *amqp091.Channel
    
    	isAMQPClosedErr := func(err error) bool {
    		if err == amqp091.ErrClosed {
    			return true
    		}
    
    		if nerr, ok := err.(*net.OpError); ok {
    			return (nerr.Err.Error() == "use of closed network connection")
    		}
    
    		return false
    	}
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Aug 21 04:25:07 GMT 2025
    - 10K bytes
    - Click Count (0)
  4. misc/go_android_exec/main.go

    		if gorootPath == "" {
    			gorootErr = errors.New("GOROOT not found")
    		}
    	})
    
    	return gorootPath, gorootErr
    }
    
    func goTool() (string, error) {
    	goroot, err := findGoroot()
    	if err != nil {
    		return "", err
    	}
    	return filepath.Join(goroot, "bin", "go"), nil
    }
    
    var (
    	gorootOnce sync.Once
    	gorootPath string
    	gorootErr  error
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Mon Aug 21 17:46:57 GMT 2023
    - 15.3K bytes
    - Click Count (0)
  5. compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/Mojo.java

         * This is the main trigger for the <code>Mojo</code> inside the <code>Maven</code> system, and allows
         * the <code>Mojo</code> to communicate errors.
         *
         * @throws MojoExecutionException if an unexpected problem occurs.
         * Throwing this exception causes a "BUILD ERROR" message to be displayed.
         * @throws MojoFailureException if an expected problem (such as a compilation failure) occurs.
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 2.9K bytes
    - Click Count (0)
  6. internal/crypto/sse.go

    //
    // You should have received a copy of the GNU Affero General Public License
    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package crypto
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"io"
    	"net/http"
    
    	"github.com/minio/minio/internal/ioutil"
    	"github.com/minio/minio/internal/logger"
    	"github.com/minio/sio"
    )
    
    const (
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 4.3K bytes
    - Click Count (0)
  7. src/main/resources/fess_message_hi.properties

    errors.invalid_header_for_request_file=рдЕрдорд╛рдиреНрдп рд╣реЗрдбрд░ рд▓рд╛рдЗрди: {0}
    errors.could_not_delete_logged_in_user=рдЖрдк рд▓реЙрдЧ рдЗрди рдЙрдкрдпреЛрдЧрдХрд░реНрддрд╛ рдХреЛ рд╣рдЯрд╛ рдирд╣реАрдВ рд╕рдХрддреЗред
    errors.unauthorized_request=рдЕрдирдзрд┐рдХреГрдд рдЕрдиреБрд░реЛрдзред
    errors.failed_to_print_thread_dump=рдереНрд░реЗрдб рдбрдВрдк рдкреНрд░рд┐рдВрдЯ рдХрд░рдиреЗ рдореЗрдВ рд╡рд┐рдлрд▓ред
    errors.file_is_not_supported={0} рд╕рдорд░реНрдерд┐рдд рдирд╣реАрдВ рд╣реИред
    errors.plugin_file_is_not_found={0} рдирд╣реАрдВ рдорд┐рд▓рд╛ред
    errors.failed_to_install_plugin={0} рдХреЛ рдЗрдВрд╕реНрдЯреЙрд▓ рдХрд░рдиреЗ рдореЗрдВ рд╡рд┐рдлрд▓ред
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 20.2K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/script/groovy/GroovyEngineTest.java

            try {
                groovyEngine.evaluate("throw new org.codelibs.fess.exception.JobProcessingException('test error')", params);
                fail("Expected JobProcessingException to be thrown");
            } catch (final JobProcessingException e) {
                assertEquals("test error", e.getMessage());
            }
        }
    
        /**
         * Test that generic exceptions are caught and null is returned
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:03:38 GMT 2026
    - 29.1K bytes
    - Click Count (0)
  9. cmd/xl-storage-format-v2.go

    			want += int64(len(tmp) - len(after))
    
    			return buf[:want], err
    
    		default:
    			return nil, errors.New("unknown minor metadata version")
    		}
    	default:
    		return nil, errors.New("unknown major metadata version")
    	}
    }
    
    func decodeXLHeaders(buf []byte) (versions int, headerV, metaV uint8, b []byte, err error) {
    	hdrVer, buf, err := msgp.ReadUint8Bytes(buf)
    	if err != nil {
    		return 0, 0, 0, buf, err
    	}
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 65.6K bytes
    - Click Count (1)
  10. src/cmd/asm/internal/asm/testdata/riscv64validation.s

    	CLWSP	22(SP), X10				// ERROR "must be a multiple of 4"
    	CLDSP	24(X5), X10				// ERROR "rs2 must be SP/X2"
    	CLDSP	24(SP), X0				// ERROR "cannot use register X0"
    	CLDSP	24(SP), F10				// ERROR "expected integer register in rd position"
    	CLDSP	28(SP), X10				// ERROR "must be a multiple of 8"
    	CFLDSP	32(X5), F10				// ERROR "rs2 must be SP/X2"
    	CFLDSP	32(SP), X10				// ERROR "expected float register in rd position"
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Nov 13 12:17:37 GMT 2025
    - 42.1K bytes
    - Click Count (0)
Back to Top