Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 211 for perror (0.13 sec)

  1. src/crypto/x509/x509.go

    	if template == nil {
    		return nil, errors.New("x509: template can not be nil")
    	}
    	if issuer == nil {
    		return nil, errors.New("x509: issuer can not be nil")
    	}
    	if (issuer.KeyUsage & KeyUsageCRLSign) == 0 {
    		return nil, errors.New("x509: issuer must have the crlSign key usage bit set")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/conversion.go

    					r.Matches = []k8s.HTTPRouteMatch{*m}
    				}
    				vs, err := convertHTTPRoute(r, ctx, obj, n, !mesh)
    				// This was a hard error
    				if vs == nil {
    					res.error = err
    					return conversionResult{error: err}
    				}
    				// Got an error but also routes
    				if err != nil {
    					res.error = err
    				}
    
    				res.routes = append(res.routes, vs)
    			}
    		}
    		return res
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.pb.go

    )
    
    // Reference imports to suppress errors if they are not otherwise used.
    var _ = proto.Marshal
    var _ = fmt.Errorf
    var _ = math.Inf
    
    // This is a compile-time assertion to ensure that this generated file
    // is compatible with the proto package it is being compiled against.
    // A compilation error at this line likely means your copy of the
    // proto package needs to be updated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 81.4K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/scheduling_queue.go

    		if s.IsSuccess() {
    			continue
    		}
    		pInfo.UnschedulablePlugins.Insert(pl.Name())
    		metrics.UnschedulableReason(pl.Name(), pod.Spec.SchedulerName).Inc()
    		if s.Code() == framework.Error {
    			logger.Error(s.AsError(), "Unexpected error running PreEnqueue plugin", "pod", klog.KObj(pod), "plugin", pl.Name())
    		} else {
    			logger.V(4).Info("Status after running PreEnqueue plugin", "pod", klog.KObj(pod), "plugin", pl.Name(), "status", s)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  5. src/crypto/tls/common.go

    	GetCertificate func(*ClientHelloInfo) (*Certificate, error)
    
    	// GetClientCertificate, if not nil, is called when a server requests a
    	// certificate from a client. If set, the contents of Certificates will
    	// be ignored.
    	//
    	// If GetClientCertificate returns an error, the handshake will be
    	// aborted and that error will be returned. Otherwise
    	// GetClientCertificate must return a non-nil Certificate. If
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/syntax/parser.go

    	scanner
    
    	base      *PosBase // current position base
    	first     error    // first error encountered
    	errcnt    int      // number of errors encountered
    	pragma    Pragma   // pragmas
    	goVersion string   // Go version from //go:build line
    
    	top    bool   // in top of file (before package clause)
    	fnest  int    // function nesting level (for error handling)
    	xnest  int    // expression nesting level (for complit ambiguity resolution)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  7. src/encoding/xml/marshal_test.go

    			switch {
    			case tt.err != "" && err == nil:
    				t.Error(" expected error; got none")
    			case tt.err == "" && err != nil:
    				t.Errorf(" got error: %v", err)
    			case tt.err != "" && err != nil && tt.err != err.Error():
    				t.Errorf(" error mismatch; got %v, want %v", err, tt.err)
    			}
    			if got := out.String(); got != tt.want {
    				t.Errorf("\ngot  %v\nwant %v", got, tt.want)
    			}
    			t.Log(enc.p.closed)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  8. pkg/kubelet/pod_workers.go

    	}
    }
    
    // completeWork requeues on error or the next sync interval and then immediately executes any pending
    // work.
    func (p *podWorkers) completeWork(podUID types.UID, phaseTransition bool, syncErr error) {
    	// Requeue the last update if the last sync returned error.
    	switch {
    	case phaseTransition:
    		p.workQueue.Enqueue(podUID, 0)
    	case syncErr == nil:
    		// No error; requeue at the regular resync interval.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  9. src/go/build/build.go

    //   - files with build constraints not satisfied by the context
    //
    // If an error occurs, Import returns a non-nil error and a non-nil
    // *[Package] containing partial information.
    func (ctxt *Context) Import(path string, srcDir string, mode ImportMode) (*Package, error) {
    	p := &Package{
    		ImportPath: path,
    	}
    	if path == "" {
    		return p, fmt.Errorf("import %q: invalid import path", path)
    	}
    
    	var pkgtargetroot string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  10. src/testing/testing.go

    	MatchString(pat, str string) (bool, error)
    	SetPanicOnExit0(bool)
    	StartCPUProfile(io.Writer) error
    	StopCPUProfile()
    	StartTestLog(io.Writer)
    	StopTestLog() error
    	WriteProfileTo(string, io.Writer, int) error
    	CoordinateFuzzing(time.Duration, int64, time.Duration, int64, int, []corpusEntry, []reflect.Type, string, string) error
    	RunFuzzWorker(func(corpusEntry) error) error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
Back to top