Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 136 for errc2 (0.05 sec)

  1. src/cmd/cgo/internal/testerrors/errors_test.go

    	if err != nil {
    		t.Fatalf("long_double_size.go printed invalid size: %s", out)
    	}
    	return i
    }
    
    func TestReportsTypeErrors(t *testing.T) {
    	for _, file := range []string{
    		"err1.go",
    		"err2.go",
    		"err5.go",
    		"issue11097a.go",
    		"issue11097b.go",
    		"issue18452.go",
    		"issue18889.go",
    		"issue28721.go",
    		"issue33061.go",
    		"issue50710.go",
    		"issue67517.go",
    	} {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    		switch originalType.Kind() {
    		case reflect.Map:
    			subschema, patchMeta, err2 := schema.LookupPatchMetadataForStruct(k)
    			if err2 != nil {
    				return nil, err2
    			}
    			_, patchStrategy, err2 := extractRetainKeysPatchStrategy(patchMeta.GetPatchStrategies())
    			if err2 != nil {
    				return nil, err2
    			}
    			original[k], err = mergeMapHandler(original[k], patchV, subschema, patchStrategy, mergeOptions)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  3. pkg/api/testing/serialization_test.go

    		},
    	}
    	obj := runtime.Object(pod)
    	data, err := runtime.Encode(legacyscheme.Codecs.LegacyCodec(v1.SchemeGroupVersion), obj)
    	obj2, err2 := runtime.Decode(legacyscheme.Codecs.LegacyCodec(v1.SchemeGroupVersion), data)
    	if err != nil || err2 != nil {
    		t.Fatalf("Failure: '%v' '%v'", err, err2)
    	}
    	if _, ok := obj2.(*api.Pod); !ok {
    		t.Fatalf("Got wrong type")
    	}
    	if !apiequality.Semantic.DeepEqual(obj2, pod) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  4. src/os/os_test.go

    	t.Parallel()
    
    	path := sfdir + "/" + sfname
    	file, err1 := Open(path)
    	if err1 != nil {
    		t.Fatal("open failed:", err1)
    	}
    	defer file.Close()
    	dir, err2 := file.Stat()
    	if err2 != nil {
    		t.Fatal("fstat failed:", err2)
    	}
    	if !equal(sfname, dir.Name()) {
    		t.Error("name should be ", sfname, "; is", dir.Name())
    	}
    	filesize := size(path, t)
    	if dir.Size() != filesize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/sumdb/note/note.go

    func NewVerifier(vkey string) (Verifier, error) {
    	name, vkey := chop(vkey, "+")
    	hash16, key64 := chop(vkey, "+")
    	hash, err1 := strconv.ParseUint(hash16, 16, 32)
    	key, err2 := base64.StdEncoding.DecodeString(key64)
    	if len(hash16) != 8 || err1 != nil || err2 != nil || !isValidName(name) || len(key) == 0 {
    		return nil, errVerifierID
    	}
    	if uint32(hash) != keyHash(name, key) {
    		return nil, errVerifierHash
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/resource/visitor.go

    	if err != nil {
    		if errors.IsNotFound(err) && len(i.Namespace) > 0 && i.Namespace != metav1.NamespaceDefault && i.Namespace != metav1.NamespaceAll {
    			err2 := i.Client.Get().AbsPath("api", "v1", "namespaces", i.Namespace).Do(context.TODO()).Error()
    			if err2 != nil && errors.IsNotFound(err2) {
    				return err2
    			}
    		}
    		return err
    	}
    	i.Object = obj
    	i.ResourceVersion, _ = metadataAccessor.ResourceVersion(obj)
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/inline/inlheur/funcprops_test.go

    			return funcInlHeur, nil, fmt.Errorf("bad flags val %s line %d: %q err=%v",
    				dr.p, dr.ln, line, err)
    		}
    		scorestr := fields[7]
    		score, err2 := strconv.Atoi(scorestr)
    		if err2 != nil {
    			return funcInlHeur, nil, fmt.Errorf("bad score val %s line %d: %q err=%v",
    				dr.p, dr.ln, line, err2)
    		}
    		maskstr := fields[9]
    		mask, err3 := strconv.Atoi(maskstr)
    		if err3 != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 15K bytes
    - Viewed (0)
  8. src/encoding/base64/base64_test.go

    	d := NewDecoder(StdEncoding, &faultInjectReader{
    		source: "VHdhcyBicmlsbGlnLCBhbmQgdGhlIHNsaXRoeSB0b3Zlcw==", // twas brillig...
    		nextc:  next,
    	})
    	errc := make(chan error, 1)
    	go func() {
    		_, err := io.ReadAll(d)
    		errc <- err
    	}()
    	select {
    	case err := <-errc:
    		if err != wantErr {
    			t.Errorf("got error %v; want %v", err, wantErr)
    		}
    	case <-time.After(5 * time.Second):
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/preemption/preemption.go

    						errCh.SendErrorWithCancel(err, cancel)
    						return
    					}
    				}
    			}
    			if err := util.DeletePod(ctx, cs, victim); err != nil {
    				logger.Error(err, "Preempted pod", "pod", klog.KObj(victim), "preemptor", klog.KObj(pod))
    				errCh.SendErrorWithCancel(err, cancel)
    				return
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  10. src/encoding/gob/gobencdec_test.go

    	enc := NewEncoder(b)
    	err = enc.Encode(&err)
    	if err != nil {
    		t.Fatal("encode:", err)
    	}
    	dec := NewDecoder(b)
    	err2 := fmt.Errorf("foo")
    	err = dec.Decode(&err2)
    	if err != nil {
    		t.Fatal("decode:", err)
    	}
    	if err2 != nil {
    		t.Fatalf("expected nil, got %v", err2)
    	}
    }
    
    func TestNetIP(t *testing.T) {
    	// Encoding of net.IP{1,2,3,4} in Go 1.1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 19.2K bytes
    - Viewed (0)
Back to top