Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for Locale (0.08 sec)

  1. src/cmd/go/internal/load/pkg.go

    		}
    		perr.setPos(importPos)
    		return p, perr
    	}
    
    	if p.Internal.Local && parent != nil && !parent.Internal.Local {
    		var err error
    		if path == "." {
    			err = ImportErrorf(path, "%s: cannot import current directory", path)
    		} else {
    			err = ImportErrorf(path, "local import %q in non-local package", path)
    		}
    		perr := &PackageError{
    			ImportStack: stk.Copy(),
    			Err:         err,
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    	}
    	return sameTarget, toAPIError(ctx, nil)
    }
    
    // performs a http request to remote endpoint to check if deployment id of remote endpoint is same as
    // local cluster deployment id. This is to prevent replication to self, especially in case of a loadbalancer
    // in front of MinIO.
    func checkRemoteEndpoint(ctx context.Context, epURL *url.URL) error {
    	reqURL := &url.URL{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    			}
    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    			return
    		}
    	}
    	defer gr.Close()
    
    	objInfo := gr.ObjInfo
    
    	if !proxy.Proxy { // apply lifecycle rules only for local requests
    		// Automatically remove the object/version if an expiry lifecycle rule can be applied
    		if lc, err := globalLifecycleSys.Get(bucket); err == nil {
    			rcfg, err := globalBucketObjectLockSys.Get(bucket)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top