Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 410 for Layout (0.19 sec)

  1. maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

            ArtifactRepositoryLayout layout = layouts.get(layoutId);
    
            checkLayout(id, layoutId, layout);
    
            return createArtifactRepository(id, url, layout, snapshots, releases);
        }
    
        private void checkLayout(String repositoryId, String layoutId, ArtifactRepositoryLayout layout)
                throws InvalidRepositoryException {
            if (layout == null) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 32.6K bytes
    - Viewed (0)
  2. cmd/endpoint-ellipses.go

    				return layout, errors.New("all arguments must but either single node or distributed")
    			}
    		}
    
    		setArgs, err := GetAllSets(eps...)
    		if err != nil {
    			return layout, err
    		}
    
    		h := xxhash.New()
    		for _, s := range setArgs {
    			for _, d := range s {
    				h.WriteString(d)
    			}
    		}
    
    		layout.pools = append(layout.pools, poolDisksLayout{
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 11 21:22:47 GMT 2024
    - 14.8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java

            return layout.pathOfRemoteRepositoryMetadata(artifactMetadata);
        }
    
        public String pathOfLocalRepositoryMetadata(ArtifactMetadata metadata, ArtifactRepository repository) {
            return layout.pathOfLocalRepositoryMetadata(metadata, repository);
        }
    
        public void setLayout(ArtifactRepositoryLayout layout) {
            this.layout = layout;
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 11K bytes
    - Viewed (0)
  4. maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java

            this.delegate = Objects.requireNonNull(delegate, "delegate cannot be null");
    
            ArtifactRepositoryLayout layout = delegate.getLayout();
            repo = new LocalRepository(
                    new File(delegate.getBasedir()),
                    (layout != null) ? layout.getClass().getSimpleName() : "legacy");
    
            /*
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 12.2K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

        @Override
        public void apply(Project project) {
            ProjectLayout layout = project.getLayout();
            TaskContainer tasks = project.getTasks();
    
            GradleDocumentationExtension extension = project.getExtensions().getByType(GradleDocumentationExtension.class);
            generateDefaultImports(project, tasks, extension);
            generateUserManual(project, tasks, layout, extension);
    
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Mar 01 05:46:51 GMT 2024
    - 17.7K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/RepositoryUtils.java

                if (className.endsWith("RepositoryLayout")) {
                    String layout = className.substring(0, className.length() - "RepositoryLayout".length());
                    if (!layout.isEmpty()) {
                        layout = Character.toLowerCase(layout.charAt(0)) + layout.substring(1);
                        return layout;
                    }
                }
                return "";
            }
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 07:40:37 GMT 2024
    - 16K bytes
    - Viewed (0)
  7. src/main/webapp/js/admin/adminlte.min.js

    =".main-header",d=".main-footer",c="control-sidebar-animate",h="control-sidebar-open",f="control-sidebar-slide-open",u="layout-fixed",g="layout-navbar-fixed",p="layout-sm-navbar-fixed",_="layout-md-navbar-fixed",m="layout-lg-navbar-fixed",C="layout-xl-navbar-fixed",v="layout-footer-fixed",y="layout-sm-footer-fixed",b="layout-md-footer-fixed",D="layout-lg-footer-fixed",E="layout-xl-footer-fixed",w={controlsidebarSlide:!0,scrollbarTheme:"os-theme-light",scrollbarAutoHide:"l"},A=function(){function...
    JavaScript
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 07:55:41 GMT 2020
    - 23.7K bytes
    - Viewed (3)
  8. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

            ArtifactRepositoryLayout layout = layouts.get(id);
    
            if (layout == null) {
                layout = new UnknownRepositoryLayout(id, layouts.get("default"));
            }
    
            return layout;
        }
    
        /**
         * In the future, the legacy system might encounter repository types for which no layout components exists because
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 31.6K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/settings/SettingsUtilsV4.java

            repo.id(settingsRepo.getId());
            repo.layout(settingsRepo.getLayout());
            repo.name(settingsRepo.getName());
            repo.url(settingsRepo.getUrl());
    
            repo.location("id", toLocation(settingsRepo.getLocation("id")));
            repo.location("layout", toLocation(settingsRepo.getLocation("layout")));
            repo.location("name", toLocation(settingsRepo.getLocation("name")));
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Thu Feb 15 08:42:00 GMT 2024
    - 13.8K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/SettingsUtilsV4.java

            repo.id(settingsRepo.getId());
            repo.layout(settingsRepo.getLayout());
            repo.name(settingsRepo.getName());
            repo.url(settingsRepo.getUrl());
    
            repo.location("id", toLocation(settingsRepo.getLocation("id")));
            repo.location("layout", toLocation(settingsRepo.getLocation("layout")));
            repo.location("name", toLocation(settingsRepo.getLocation("name")));
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 13.4K bytes
    - Viewed (0)
Back to top