Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 211 for perror (0.11 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.pb.go

    	reflect "reflect"
    	strings "strings"
    )
    
    // 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
    - 57K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.pb.go

    	reflect "reflect"
    	strings "strings"
    )
    
    // 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
    - 56.9K bytes
    - Viewed (0)
  3. plugin/pkg/admission/limitranger/admission_test.go

    		test := successCases[i]
    		err := PodMutateLimitFunc(&test.limitRange, &test.pod)
    		if err != nil {
    			t.Errorf("Unexpected error for pod: %s, %v", test.pod.Name, err)
    		}
    		err = PodValidateLimitFunc(&test.limitRange, &test.pod)
    		if err != nil {
    			t.Errorf("Unexpected error for pod: %s, %v", test.pod.Name, err)
    		}
    	}
    
    	errorCases := []testCase{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pkg/proxy/winkernel/proxier.go

    		klog.V(1).ErrorS(err, "Error deleting Hns loadbalancer policy resource.", "hnsID", svcInfo.hnsID, "ClusterIP", svcInfo.ClusterIP())
    	} else {
    		// On successful delete, remove hnsId
    		svcInfo.hnsID = ""
    	}
    
    	if err := hns.deleteLoadBalancer(svcInfo.nodePorthnsID); err != nil {
    		mapStaleLoadbalancer[svcInfo.nodePorthnsID] = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  7. 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)
  8. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    				if tc.errMessage == "" {
    					t.Fatalf("want nil error, got: %v", err)
    				} else if gotMessage := err.Error(); tc.errMessage != gotMessage {
    					t.Fatalf("want error: %q, got: %q", tc.errMessage, gotMessage)
    				}
    			} else if tc.errMessage != "" {
    				t.Fatalf("got nil error, want: %s", tc.errMessage)
    			}
    
    			if diff := cmp.Diff(tc.want, got); diff != "" {
    				t.Errorf("unexpected diff:\n%s", diff)
    			}
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    	Do(ctx *ratchetingTestContext) error
    	Description() string
    }
    
    type expectError struct {
    	op ratchetingTestOperation
    }
    
    func (e expectError) Do(ctx *ratchetingTestContext) error {
    	err := e.op.Do(ctx)
    	if err != nil {
    		return nil
    	}
    	return errors.New("expected error")
    }
    
    func (e expectError) Description() string {
    	return fmt.Sprintf("Expect Error: %v", e.op.Description())
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    				},
    			},
    			featureEnabled: true,
    			expectedErr:    "matchConditions[0].expression: Invalid value: \"request.user = 'test'\": compilation failed: ERROR: <input>:1:14: Syntax error: token recognition error at: '= '\n | request.user = 'test'\n | .............^\nERROR: <input>:1:16: Syntax error: extraneous input ''test'' expecting <EOF>\n | request.user = 'test'\n | ...............^",
    		},
    	}
    
    	for _, tt := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
Back to top