Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for printpath (0.19 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

        }
    
        private ModelSource getParentPomFile(Model childModel, ModelSource source) {
            String parentPath = childModel.getParent().getRelativePath();
            if (parentPath == null || parentPath.isEmpty()) {
                return null;
            } else {
                return source.resolve(modelProcessor::locateExistingPom, parentPath);
            }
        }
    
        private ModelData readParentExternally(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  2. operator/pkg/manifest/shared.go

    		}
    	}
    
    	return outYAML, nil
    }
    
    // containParentPath checks if setFlags contain parent path.
    func containParentPath(setFlags []string, parentPath string) bool {
    	ret := false
    	for _, sf := range setFlags {
    		p, _ := getPV(sf)
    		if strings.Contains(p, parentPath) {
    			ret = true
    			break
    		}
    	}
    	return ret
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/load.go

    // stdVendor returns the canonical import path for the package with the given
    // path when imported from the standard-library package at parentPath.
    func (ld *loader) stdVendor(parentPath, path string) string {
    	if search.IsStandardImportPath(path) {
    		return path
    	}
    
    	if str.HasPathPrefix(parentPath, "cmd") {
    		if !ld.VendorModulesInGOROOTSrc || !MainModules.Contains("cmd") {
    			vendorPath := pathpkg.Join("cmd", "vendor", path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    			return errVersionChange
    		}
    		return nil
    	}
    
    	_, pkgs := modload.LoadPackages(ctx, opts, patterns...)
    	for _, path := range pkgs {
    		const (
    			parentPath  = ""
    			parentIsStd = false
    		)
    		_, _, err := modload.Lookup(parentPath, parentIsStd, path)
    		if err == nil {
    			continue
    		}
    		if errors.Is(err, errVersionChange) {
    			// We already added candidates during loading.
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        that it matches that of the subsequent TPUExecute{,AndUpdateVariables}
        op.
      }];
      let constructor = "TFTPU::CreateColocateTPUCopyWithDynamicShapePass()";
    }
    
    def PrintPass : Pass<"tf-print", "ModuleOp"> {
      let summary = "Prints the current module.";
      let description = [{
        This prints the current module (by default, to stderr). The module is
        otherwise piped through without changes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top