Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for isRedirect (0.2 sec)

  1. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    	com.Token = "//" + com.Token[i+len("indirect;"):]
    }
    
    // isIndirect reports whether line has a "// indirect" comment,
    // meaning it is in go.mod only for its effect on indirect dependencies,
    // so that it can be dropped entirely once the effective version of the
    // indirect dependency reaches the given minimum version.
    func isIndirect(line *Line) bool {
    	if len(line.Suffix) == 0 {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/DcerpcHandle.java

                    return off;
                }
            }
            throw new IOException();
        }
    
    
        /**
         * @param msg
         * @param in
         * @param off
         * @param isDirect
         * @return
         * @throws IOException
         * @throws DcerpcException
         * @throws NdrException
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jun 30 10:11:57 UTC 2019
    - 12.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/buildlist.go

    		rs.graph.Store(&cachedGraph{mg, mgErr})
    	})
    	cached := rs.graph.Load()
    	return cached.mg, cached.err
    }
    
    // IsDirect returns whether the given module provides a package directly
    // imported by a package or test in the main module.
    func (rs *Requirements) IsDirect(path string) bool {
    	return rs.direct[path]
    }
    
    // A ModuleGraph represents the complete graph of module dependencies
    // of a main module.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    			for _, pkg := range match.Pkgs {
    				m := modload.PackageModule(pkg)
    				relevantMods[m] |= named
    			}
    		}
    	}
    
    	reqs := modload.LoadModFile(ctx)
    	for m := range relevantMods {
    		if reqs.IsDirect(m.Path) {
    			relevantMods[m] |= direct
    		}
    	}
    
    	// Load retractions for modules mentioned on the command line and modules
    	// needed to build named packages. We care about retractions of indirect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
Back to top