Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 127 for reachable (0.29 sec)

  1. src/time/zoneinfo_read.go

    	}
    	return readFile(name)
    }
    
    // There are 500+ zoneinfo files. Rather than distribute them all
    // individually, we ship them in an uncompressed zip file.
    // Used this way, the zip file format serves as a commonly readable
    // container for the individual small files. We choose zip over tar
    // because zip files have a contiguous table of contents, making
    // individual file lookups faster, and because the per-file overhead
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. cmd/erasure-server-pool-decom.go

    						// object deleted by the application, nothing to do here we move on.
    						ignore = true
    						stopFn(version.Size, nil)
    						break
    					}
    					if err != nil && !ignore {
    						// if usage-cache.bin is not readable log and ignore it.
    						if bi.Name == minioMetaBucket && strings.Contains(version.Name, dataUsageCacheName) {
    							ignore = true
    							stopFn(version.Size, err)
    							decomLogIf(ctx, err)
    							break
    						}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 14:30:43 UTC 2024
    - 41.5K bytes
    - Viewed (1)
  3. src/cmd/compile/internal/types2/typexpr.go

    	case *Func:
    		check.addDeclDep(obj)
    		x.mode = value
    
    	case *Builtin:
    		x.id = obj.id
    		x.mode = builtin
    
    	case *Nil:
    		x.mode = nilvalue
    
    	default:
    		panic("unreachable")
    	}
    
    	x.typ = typ
    }
    
    // typ type-checks the type expression e and returns its type, or Typ[Invalid].
    // The type must not be an (uninstantiated) generic type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	{98, "EADDRINUSE", "address already in use"},
    	{99, "EADDRNOTAVAIL", "cannot assign requested address"},
    	{100, "ENETDOWN", "network is down"},
    	{101, "ENETUNREACH", "network is unreachable"},
    	{102, "ENETRESET", "network dropped connection on reset"},
    	{103, "ECONNABORTED", "software caused connection abort"},
    	{104, "ECONNRESET", "connection reset by peer"},
    	{105, "ENOBUFS", "no buffer space available"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	{98, "EADDRINUSE", "address already in use"},
    	{99, "EADDRNOTAVAIL", "cannot assign requested address"},
    	{100, "ENETDOWN", "network is down"},
    	{101, "ENETUNREACH", "network is unreachable"},
    	{102, "ENETRESET", "network dropped connection on reset"},
    	{103, "ECONNABORTED", "software caused connection abort"},
    	{104, "ECONNRESET", "connection reset by peer"},
    	{105, "ENOBUFS", "no buffer space available"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  6. src/go/internal/gcimporter/ureader.go

    	*where = typ
    	return typ
    }
    
    func (r *reader) doTyp() (res types.Type) {
    	switch tag := pkgbits.CodeType(r.Code(pkgbits.SyncType)); tag {
    	default:
    		errorf("unhandled type tag: %v", tag)
    		panic("unreachable")
    
    	case pkgbits.TypeBasic:
    		return types.Typ[r.Len()]
    
    	case pkgbits.TypeNamed:
    		obj, targs := r.obj()
    		name := obj.(*types.TypeName)
    		if len(targs) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. src/go/types/typexpr.go

    	case *Func:
    		check.addDeclDep(obj)
    		x.mode = value
    
    	case *Builtin:
    		x.id = obj.id
    		x.mode = builtin
    
    	case *Nil:
    		x.mode = value
    
    	default:
    		panic("unreachable")
    	}
    
    	x.typ = typ
    }
    
    // typ type-checks the type expression e and returns its type, or Typ[Invalid].
    // The type must not be an (uninstantiated) generic type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	{98, "EADDRINUSE", "address already in use"},
    	{99, "EADDRNOTAVAIL", "cannot assign requested address"},
    	{100, "ENETDOWN", "network is down"},
    	{101, "ENETUNREACH", "network is unreachable"},
    	{102, "ENETRESET", "network dropped connection on reset"},
    	{103, "ECONNABORTED", "software caused connection abort"},
    	{104, "ECONNRESET", "connection reset by peer"},
    	{105, "ENOBUFS", "no buffer space available"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  9. src/go/types/predicates.go

    		}
    
    	case *TypeParam:
    		// nothing to do (x and y being equal is caught in the very beginning of this function)
    
    	case nil:
    		// avoid a crash in case of nil type
    
    	default:
    		panic("unreachable")
    	}
    
    	return false
    }
    
    // identicalOrigin reports whether x and y originated in the same declaration.
    func identicalOrigin(x, y *Named) bool {
    	// TODO(gri) is this correct?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/predicates.go

    		}
    
    	case *TypeParam:
    		// nothing to do (x and y being equal is caught in the very beginning of this function)
    
    	case nil:
    		// avoid a crash in case of nil type
    
    	default:
    		panic("unreachable")
    	}
    
    	return false
    }
    
    // identicalOrigin reports whether x and y originated in the same declaration.
    func identicalOrigin(x, y *Named) bool {
    	// TODO(gri) is this correct?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 17.5K bytes
    - Viewed (0)
Back to top