Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 103 for perror (0.22 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/cmd/go/internal/modget/get.go

    				}
    				err = fmt.Errorf("%s %s %s => %s%s: error finding sum for %s: %v", verb, m.Path, old.Version, m.Version, replaced, mActual, err)
    				sumErrs[i] = err
    			}
    		})
    	}
    
    	<-r.work.Idle()
    
    	// Report deprecations, then retractions, then errors fetching sums.
    	// Only errors fetching sums are hard errors.
    	for _, mm := range deprecations {
    		if mm.message != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller.go

    // and any error.
    func (jm *Controller) deleteJobPods(ctx context.Context, job *batch.Job, jobKey string, pods []*v1.Pod) (int32, error) {
    	errCh := make(chan error, len(pods))
    	successfulDeletes := int32(len(pods))
    	logger := klog.FromContext(ctx)
    
    	failDelete := func(pod *v1.Pod, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  10. pkg/controller/endpointslice/endpointslice_controller_test.go

    			pod := newPod(1, namespace, true, 0, false)
    			err := esController.podStore.Add(pod)
    			assert.NoError(t, err)
    
    			err = esController.serviceStore.Add(tc.service)
    			assert.NoError(t, err)
    
    			err = esController.syncService(logger, fmt.Sprintf("%s/%s", namespace, serviceName))
    			assert.NoError(t, err)
    			assert.Len(t, client.Actions(), 0)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
Back to top