Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 176 for goto (0.02 sec)

  1. docs/debugging/xl-meta/main.go

    								fmt.Println("Retrying with merged data")
    								if addedFiles >= len(files[partIdx]) {
    									attempt++
    									goto nextAttempt
    								}
    							}
    						}
    					}
    				}
    				if m.blockOffset != len(combined) {
    					return fmt.Errorf("Block offset mismatch. Expected %d got %d", m.blockOffset, len(combined))
    				}
    				combined = append(combined, m.mapped[:m.size]...)
    				missingAll += missing
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 40.3K bytes
    - Viewed (0)
  2. okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list

    gob.hn
    gob.mx
    gob.ni
    gob.pa
    gob.pe
    gob.pk
    gob.sv
    gob.ve
    gobo.wakayama.jp
    godaddy
    godo.gifu.jp
    gog.pk
    goiania.br
    goip.de
    gojome.akita.jp
    gok.pk
    gokase.miyazaki.jp
    gol.no
    gold
    goldpoint
    golf
    golffan.us
    gon.pk
    gonna.jp
    gonohe.aomori.jp
    goo
    goodyear
    goog
    google
    googleapis.com
    googlecode.com
    gop
    gop.pk
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 22:00:49 UTC 2025
    - 129.6K bytes
    - Viewed (3)
  3. cmd/bucket-replication.go

    		if isSSEC && strings.Contains(cerr.Error(), errorCodes[ErrSSEEncryptedObject].Description) {
    			rinfo.ReplicationStatus = replication.Completed
    			rinfo.ReplicationAction = replicateNone
    			goto applyAction
    		}
    		// if target returns error other than NoSuchKey, defer replication attempt
    		if minio.IsNetworkOrHostDown(cerr, true) && !globalBucketTargetSys.isOffline(tgt.EndpointURL()) {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 118K bytes
    - Viewed (0)
  4. cmd/metacache-entries_test.go

    	entries.forwardTo("src/compress/zlib/reader_test.go")
    	got := entries.entries().names()
    	if !reflect.DeepEqual(got, want) {
    		t.Errorf("got unexpected result: %#v", got)
    	}
    
    	// Try with prefix
    	entries = org
    	entries.forwardTo("src/compress/zlib/reader_t")
    	got = entries.entries().names()
    	if !reflect.DeepEqual(got, want) {
    		t.Errorf("got unexpected result: %#v", got)
    	}
    }
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 31.6K bytes
    - Viewed (0)
  5. okhttp/src/androidMain/assets/PublicSuffixDatabase.list

    gob.hn
    gob.mx
    gob.ni
    gob.pa
    gob.pe
    gob.pk
    gob.sv
    gob.ve
    gobo.wakayama.jp
    godaddy
    godo.gifu.jp
    gog.pk
    goiania.br
    goip.de
    gojome.akita.jp
    gok.pk
    gokase.miyazaki.jp
    gol.no
    gold
    goldpoint
    golf
    golffan.us
    gon.pk
    gonna.jp
    gonohe.aomori.jp
    goo
    goodyear
    goog
    google
    googleapis.com
    googlecode.com
    gop
    gop.pk
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Dec 31 14:50:53 UTC 2024
    - 129.6K bytes
    - Viewed (2)
  6. src/cmd/api/api_test.go

    		},
    	}
    	for _, tt := range tests {
    		buf := new(strings.Builder)
    		gotOK := compareAPI(buf, tt.features, tt.required, tt.exception)
    		if gotOK != tt.ok {
    			t.Errorf("%s: ok = %v; want %v", tt.name, gotOK, tt.ok)
    		}
    		if got := buf.String(); got != tt.out {
    			t.Errorf("%s: output differs\nGOT:\n%s\nWANT:\n%s", tt.name, got, tt.out)
    		}
    	}
    }
    
    func TestSkipInternal(t *testing.T) {
    	if *flagCheck {
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Fri May 02 17:06:27 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  7. cmd/data-scanner_test.go

    			}
    
    			var (
    				sizeS sizeSummary
    				gots  []ObjectInfo
    			)
    			item.applyActions(t.Context(), objAPI, test.objInfos, test.lr, &sizeS, func(oi ObjectInfo, sz, _ int64, _ *sizeSummary) {
    				if sz != 0 {
    					gots = append(gots, oi)
    				}
    			})
    
    			if len(gots) != len(test.wants) {
    				t.Fatalf("Expected %d objects but got %d", len(test.wants), len(gots))
    			}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 12K bytes
    - Viewed (0)
  8. cmd/data-usage_test.go

    		t.Run(w.path, func(t *testing.T) {
    			e := got.find(w.path)
    			if w.path == "flat" {
    				f := got.flatten(*got.root())
    				e = &f
    			}
    			if w.isNil {
    				if e != nil {
    					t.Error("want nil, got", e)
    				}
    				return
    			}
    			if e == nil {
    				t.Fatal("got nil result")
    				return
    			}
    			if e.Size != int64(w.size) {
    				t.Error("got size", e.Size, "want", w.size)
    			}
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 14.6K bytes
    - Viewed (0)
  9. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // moscow : Foundation for Assistance for Internet Technologies and Infrastructure Development (FAITID)
    // https://www.iana.org/domains/root/db/moscow.html
    moscow
    
    // moto : Motorola Trademark Holdings, LLC
    // https://www.iana.org/domains/root/db/moto.html
    moto
    
    // motorcycles : XYZ.COM LLC
    // https://www.iana.org/domains/root/db/motorcycles.html
    motorcycles
    
    // mov : Charleston Road Registry Inc.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 309.7K bytes
    - Viewed (0)
  10. src/archive/tar/tar_test.go

    		}
    		if got, want := h2.Uname, v.h.Uname; got != want {
    			t.Errorf("i=%d: Uname: got %q, want %q", i, got, want)
    		}
    		if got, want := h2.Gname, v.h.Gname; got != want {
    			t.Errorf("i=%d: Gname: got %q, want %q", i, got, want)
    		}
    		if got, want := h2.Linkname, v.h.Linkname; got != want {
    			t.Errorf("i=%d: Linkname: got %v, want %v", i, got, want)
    		}
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Thu Jul 25 00:25:45 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top