Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 118 for ErrorIs (0.23 sec)

  1. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: <ul class="has-error"> */
        public static final String ERRORS_HEADER = "{errors.header}";
    
        /** The key of the message: </ul> */
        public static final String ERRORS_FOOTER = "{errors.footer}";
    
        /** The key of the message: <li><i class="fa fa-exclamation-circle"></i> */
        public static final String ERRORS_PREFIX = "{errors.prefix}";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    		schema *schema.Structural
    		oldObj interface{}
    		newObj interface{}
    
    		// Errors that should occur when evaluating this operation with
    		// ratcheting feature enabled
    		errors []string
    
    		// Errors that should occur when evaluating this operation with
    		// ratcheting feature disabled
    		// These errors should be raised as warnings when ratcheting is enabled
    		warnings []string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  3. docs/metrics/prometheus/grafana/bucket/minio-bucket.json

                  }
                ]
              },
              "unit": "none"
            },
            "overrides": [
              {
                "matcher": {
                  "id": "byName",
                  "options": "S3 Errors"
                },
                "properties": [
                  {
                    "id": "color",
                    "value": {
                      "fixedColor": "light-red",
                      "mode": "fixed"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 11:11:51 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  4. pkg/config/validation/validation.go

    		return errors.Join(errors.New("UriRegexRewrite has errors"), err)
    	}
    	return nil
    }
    
    func validateURIRegexRewrite(regexRewrite *networking.RegexRewrite) error {
    	if regexRewrite == nil {
    		return nil
    	}
    	if regexRewrite.Match == "" || regexRewrite.Rewrite == "" {
    		return errors.New("UriRegexRewrite requires both Rewrite and Match fields to be specified")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    #include "tensorflow/core/grappler/utils/transitive_fanin.h"
    #include "tensorflow/core/lib/core/errors.h"
    #include "tensorflow/core/lib/strings/str_util.h"
    #include "tensorflow/core/platform/crash_analysis.h"
    #include "tensorflow/core/platform/env.h"
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/fingerprint.h"
    #include "tensorflow/core/platform/logging.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	_, err = registry.Create(testContext, podA, rest.ValidateAllObjectFunc, &metav1.CreateOptions{})
    	if err == nil || !errors.IsAlreadyExists(err) {
    		t.Fatalf("Expected 'already exists' error from storage, but got %v", err)
    	}
    
    	// check the 'alredy exists' msg was edited
    	msg := &err.(*errors.StatusError).ErrStatus.Message
    	if !strings.Contains(*msg, "object is being deleted:") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    	if err != nil {
    		klog.ErrorS(err, "Container runtime sanity check failed")
    		return
    	}
    	if s == nil {
    		klog.ErrorS(nil, "Container runtime status is nil")
    		return
    	}
    	// Periodically log the whole runtime status for debugging.
    	klog.V(4).InfoS("Container runtime status", "status", s)
    	klogErrorS := klog.ErrorS
    	if !kl.containerRuntimeReadyExpected {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    */
    
    package kubelet
    
    import (
    	"bytes"
    	"context"
    	goerrors "errors"
    	"fmt"
    	"io"
    	"net/http"
    	"net/url"
    	"os"
    	"os/exec"
    	"os/user"
    	"path/filepath"
    	"runtime"
    	"sort"
    	"strconv"
    	"strings"
    
    	"github.com/google/go-cmp/cmp"
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    	// and modload.PackageNotInModuleError; and the malformed module path errors
    	// produced in golang.org/x/mod/module.CheckMod) implement an interface
    	// to make it easier to check for them? That would save us from having to
    	// move the modload errors into this package to avoid a package import cycle,
    	// and from having to export an error type for the errors produced in build.
    	if !isMatchErr && (nogoErr != nil || isScanErr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    	dc.Lock()
    	defer dc.Unlock()
    	if dc.closed {
    		return func() error { return errors.New("sql: duplicate driverConn close") }
    	}
    	dc.closed = true
    	return dc.db.removeDepLocked(dc, dc)
    }
    
    func (dc *driverConn) Close() error {
    	dc.Lock()
    	if dc.closed {
    		dc.Unlock()
    		return errors.New("sql: duplicate driverConn close")
    	}
    	dc.closed = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top