Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 107 for reachable (0.17 sec)

  1. src/net/netip/netip_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    			if got != got3 {
    				t.Errorf("ParseAddr(%q) != ParseAddr(ParseIP(%q).String()). Got %#v, want %#v", test.in, test.in, got3, got)
    			}
    
    			// Check that the slow-but-readable parser produces the same result.
    			slow, err := parseIPSlow(test.in)
    			if err != nil {
    				t.Fatal(err)
    			}
    			if got != slow {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  2. cmd/api-errors.go

    		Description:    "",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrBackendDown: {
    		Code:           "XMinioBackendDown",
    		Description:    "Remote backend is unreachable",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrIncorrectContinuationToken: {
    		Code:           "InvalidArgument",
    		Description:    "The continuation token provided is incorrect",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (1)
  3. src/cmd/link/internal/ld/elf.go

    			}
    			if !ldr.AttrReachable(rr.Xsym) {
    				ldr.Errorf(s, "unreachable reloc %d (%s) target %v", r.Type(), sym.RelocName(ctxt.Arch, r.Type()), ldr.SymName(rr.Xsym))
    			}
    			if !thearch.ELF.Reloc1(ctxt, out, ldr, s, rr, ri, int64(uint64(ldr.SymValue(s)+int64(r.Off()))-sect.Vaddr)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    //
    // The third state besides "enabled" and "disabled" is "undetermined."
    type gcState uint8
    
    const (
    	gcUndetermined gcState = iota
    	gcNotRunning
    	gcRunning
    )
    
    // String returns a human-readable string for the GC state.
    func (s gcState) String() string {
    	switch s {
    	case gcUndetermined:
    		return "Undetermined"
    	case gcNotRunning:
    		return "NotRunning"
    	case gcRunning:
    		return "Running"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. src/cmd/internal/testdir/testdir_test.go

    			t.Fatal(err)
    		}
    		return filename
    	}
    
    	long := filepath.Join(t.gorootTestDir, t.goFileName())
    	switch action {
    	default:
    		t.Fatalf("unimplemented action %q", action)
    		panic("unreachable")
    
    	case "asmcheck":
    		// Compile Go file and match the generated assembly
    		// against a set of regexps in comments.
    		ops := t.wantedAsmOpcodes(long)
    		self := runtime.GOOS + "/" + runtime.GOARCH
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. cmd/admin-handlers-users.go

    	if serviceAccount == siteReplicatorSvcAcc && globalSiteReplicationSys.isEnabled() {
    		writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrInvalidArgument), r.URL)
    		return
    	}
    	// We do not care if service account is readable or not at this point,
    	// since this is a delete call we shall allow it to be deleted if possible.
    	svcAccount, _, err := globalIAMSys.GetServiceAccount(ctx, serviceAccount)
    	if errors.Is(err, errNoSuchServiceAccount) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    	//           Consider "got X, expected Y" in this case.
    	p.errorAt(pos, "syntax error: unexpected "+tok+msg)
    }
    
    // tokstring returns the English word for selected punctuation tokens
    // for more readable error messages. Use tokstring (not tok.String())
    // for user-facing (error) messages; use tok.String() for debugging
    // output.
    func tokstring(tok token) string {
    	switch tok {
    	case _Comma:
    		return "comma"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. src/go/build/build.go

    			if f, err := ctxt.openFile(ctxt.joinPath(parent, "go.mod")); err == nil {
    				buf := make([]byte, 100)
    				_, err := f.Read(buf)
    				f.Close()
    				if err == nil || err == io.EOF {
    					// go.mod exists and is readable (is a file, not a directory).
    					break
    				}
    			}
    			d := filepath.Dir(parent)
    			if len(d) >= len(parent) {
    				return errNoModules // reached top of file system, no go.mod
    			}
    			parent = d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. pkg/workloadapi/workload.pb.go

    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    
    	// UID represents a globally unique opaque identifier for this workload.
    	// For k8s resources, it is recommended to use the more readable format:
    	//
    	// cluster/group/kind/namespace/name/section-name
    	//
    	// As an example, a ServiceEntry with two WorkloadEntries inlined could become
    	// two Workloads with the following UIDs:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Multimaps.java

        }
    
        @Override
        public Set<Entry<K, V>> entries() {
          return map.entrySet();
        }
    
        @Override
        Collection<Entry<K, V>> createEntries() {
          throw new AssertionError("unreachable");
        }
    
        @Override
        Multiset<K> createKeys() {
          return new Multimaps.Keys<K, V>(this);
        }
    
        @Override
        Iterator<Entry<K, V>> entryIterator() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
Back to top