Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for getImports (0.08 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/classrealm/DefaultClassRealmRequest.java

            this.constituents = constituents;
        }
    
        public RealmType getType() {
            return type;
        }
    
        public ClassLoader getParent() {
            return parent;
        }
    
        public List<String> getImports() {
            return getParentImports();
        }
    
        public List<String> getParentImports() {
            return parentImports;
        }
    
        public Map<String, ClassLoader> getForeignImports() {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/classrealm/ClassRealmRequest.java

         */
        ClassLoader getParent();
    
        /**
         * @deprecated Use {@link #getParentImports()} instead.
         * @return imports
         */
        @Deprecated
        List<String> getImports();
    
        /**
         * Gets the packages/types to import from the parent realm.
         *
         * @return The modifiable list of packages/types to import from the parent realm, never {@code null}.
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/TypeNameResolver.java

                outerClassName = outerClass.getOuterClassName();
            }
    
            if (name.contains(".")) {
                return name;
            }
    
            for (String importedClass : classMetaData.getImports()) {
                String baseName = StringUtils.substringAfterLast(importedClass, ".");
                if (baseName.equals("*")) {
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java

        @Override
        public void visit(CompilationUnit compilationUnit, ClassMetaDataRepository<ClassMetaData> repository) {
            super.visit(compilationUnit, repository);
            compilationUnit.getImports().stream()
                .filter(anImport -> !anImport.isStatic())
                .map(anImport -> anImport.getNameAsString() + (anImport.isAsterisk() ? ".*" : ""))
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Mon Aug 19 15:07:24 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/model/ClassMetaData.java

            return outerClassName;
        }
    
        public void setOuterClassName(String outerClassName) {
            this.outerClassName = outerClassName;
        }
    
        public List<String> getImports() {
            return imports;
        }
    
        public void addImport(String importName) {
            imports.add(importName);
        }
    
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 10.1K bytes
    - Viewed (0)
  6. compat/maven-model/pom.xml

                  <exclude>org.apache.maven.model.ModelBase#addProperty(java.lang.String,java.lang.String):METHOD_REMOVED</exclude>
                  <exclude>org.apache.maven.model.ModelBase#getReports():METHOD_REMOVED</exclude>
                  <exclude>org.apache.maven.model.ModelBase#setReports(java.lang.Object):METHOD_REMOVED</exclude>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java

                // TODO: This is ugly
                task.setConfig(project.getResources().getText().fromFile(checkstyle.getConfigDirectory().file("checkstyle-api.xml")));
                task.setClasspath(layout.files());
                task.getReports().getXml().getOutputLocation().set(new File(checkstyle.getReportsDir(), "checkstyle-api.xml"));
            });
        }
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Aug 20 14:11:17 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. compat/maven-model/src/test/java/org/apache/maven/model/merge/MavenMergerTest.java

            ReportSet source = new ReportSet();
            source.setReports( Arrays.asList( "first", "second", "third" ) );
    
            modelMerger.mergeReportSet( target, source, true, null );
    
            assertThat( target.getReports(), contains( "first", "second", "third" ) );
        }
    
        @Test
        public void mergeSameRepositories()
        {
            Repository repository = new Repository();
            repository.setId( "repository" );
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. api/go1.5.txt

    pkg go/types, method (*Package) MarkComplete()
    pkg go/types, method (*Package) Name() string
    pkg go/types, method (*Package) Path() string
    pkg go/types, method (*Package) Scope() *Scope
    pkg go/types, method (*Package) SetImports([]*Package)
    pkg go/types, method (*Package) String() string
    pkg go/types, method (*PkgName) Exported() bool
    pkg go/types, method (*PkgName) Id() string
    pkg go/types, method (*PkgName) Imported() *Package
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Jul 30 21:14:09 UTC 2015
    - 46.6K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.14.md

    ## Detailed Bug Fixes And Changes
    
    ### API Machinery
    
    - client-go: `PortForwarder.GetPorts()` now contain correct local port if no local port was initially specified when setting up the port forwarder ([#73676](https://github.com/kubernetes/kubernetes/pull/73676), [@martin-helmich](https://github.com/martin-helmich))
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (0)
Back to top