Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 262 for ErrorIs (0.11 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        // connect them to the right input/output positions.
        if (input_permutation.size() != args_by_src_.size()) {
          return errors::InvalidArgument("Input permutation has incorrect size.");
        }
        if (output_permutation.size() != results_.size()) {
          return errors::InvalidArgument("Output permutation has incorrect size.");
        }
        for (auto& arg : args_by_src_) {
          arg.second = input_permutation[arg.second];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  2. src/net/http/transport.go

    var (
    	errKeepAlivesDisabled = errors.New("http: putIdleConn: keep alives disabled")
    	errConnBroken         = errors.New("http: putIdleConn: connection is in bad state")
    	errCloseIdle          = errors.New("http: putIdleConn: CloseIdleConnections was called")
    	errTooManyIdle        = errors.New("http: putIdleConn: too many idle connections")
    	errTooManyIdleHost    = errors.New("http: putIdleConn: too many idle connections for host")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  3. src/crypto/tls/conn.go

    	c.handshakeMutex.Lock()
    	defer c.handshakeMutex.Unlock()
    	if !c.isClient {
    		return errors.New("tls: VerifyHostname called on TLS server connection")
    	}
    	if !c.isHandshakeComplete.Load() {
    		return errors.New("tls: handshake has not yet been performed")
    	}
    	if len(c.verifiedChains) == 0 {
    		return errors.New("tls: handshake did not verify certificate chain")
    	}
    	return c.peerCertificates[0].VerifyHostname(host)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	errTooManyPtr         = errors.New("too many pointers (>10)")
    	errInvalidPtr         = errors.New("invalid pointer")
    	errInvalidName        = errors.New("invalid dns name")
    	errNilResouceBody     = errors.New("nil resource body")
    	errResourceLen        = errors.New("insufficient data for resource body length")
    	errSegTooLong         = errors.New("segment length too long")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  5. src/regexp/testdata/testregex.c

    T("    t	REG_MUSTDELIM		all delimiters must be specified\n");
    T("    u	standard unspecified behavior -- errors not counted\n");
    T("    v	REG_CLASS_ESCAPE	\\ special inside [...]\n");
    T("    w	REG_NOSUB		no subexpression match array\n");
    T("    x	REG_LENIENT		let some errors slide\n");
    T("    y	REG_LEFT		regexec() implicit ^...\n");
    T("    z	REG_NULL		NULL subexpressions ok\n");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  6. pkg/apis/batch/validation/validation.go

    	if obj.Spec.ManualSelector != nil && *obj.Spec.ManualSelector {
    		return allErrs
    	}
    
    	if obj.Spec.Selector == nil {
    		return allErrs // This case should already have been checked in caller.  No need for more errors.
    	}
    
    	// If somehow uid was unset then we would get "controller-uid=" as the selector
    	// which is bad.
    	if obj.ObjectMeta.UID == "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  7. cmd/iam-store.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"context"
    	"encoding/base64"
    	"encoding/json"
    	"errors"
    	"fmt"
    	"sort"
    	"strings"
    	"time"
    
    	jsoniter "github.com/json-iterator/go"
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio-go/v7/pkg/set"
    	"github.com/minio/minio/internal/auth"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  8. cmd/kubelet/app/server.go

    }
    
    func initConfigz(kc *kubeletconfiginternal.KubeletConfiguration) error {
    	cz, err := configz.New("kubeletconfig")
    	if err != nil {
    		klog.ErrorS(err, "Failed to register configz")
    		return err
    	}
    	if err := setConfigz(cz, kc); err != nil {
    		klog.ErrorS(err, "Failed to register config")
    		return err
    	}
    	return nil
    }
    
    // makeEventRecorder sets up kubeDeps.Recorder if it's nil. It's a no-op otherwise.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  9. tensorflow/cc/gradients/math_grad.cc

                      const std::vector<Output>& grad_inputs,
                      std::vector<Output>* grad_outputs) {
      if (op.num_inputs() != 2) {
        return errors::InvalidArgument("Cumsum requires 2 arguments");
      }
      if (grad_inputs.size() != 1) {
        return errors::InvalidArgument("Cumsum grad requires 1 grad input");
      }
    
      Cumsum::Attrs attrs;
      TF_RETURN_IF_ERROR(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  10. src/time/format.go

    			if v > 1<<63 {
    				// overflow
    				return 0, errors.New("time: invalid duration " + quote(orig))
    			}
    		}
    		d += v
    		if d > 1<<63 {
    			return 0, errors.New("time: invalid duration " + quote(orig))
    		}
    	}
    	if neg {
    		return -Duration(d), nil
    	}
    	if d > 1<<63-1 {
    		return 0, errors.New("time: invalid duration " + quote(orig))
    	}
    	return Duration(d), nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
Back to top