Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for manifestClasspath (0.26 sec)

  1. build-logic/jvm/src/main/kotlin/gradlebuild.launchable-jar.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    import gradlebuild.startscript.tasks.GradleStartScriptGenerator
    
    plugins {
        java
    }
    
    val manifestClasspath by configurations.creating {
        isTransitive = false
    
        configureAsJarClasspath()
    }
    
    val agentsClasspath by configurations.creating {
        configureAsJarClasspath()
    }
    
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Wed Feb 28 23:38:57 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/reflect/ClassPathTest.java

        File jarFile = new File("base.jar");
        assertThat(ClassPath.getClassPathFromManifest(jarFile, manifestClasspath(""))).isEmpty();
      }
    
      public void testGetClassPathFromManifest_badClassPath() throws IOException {
        File jarFile = new File("base.jar");
        Manifest manifest = manifestClasspath("nosuchscheme:an_invalid^path");
        assertThat(ClassPath.getClassPathFromManifest(jarFile, manifest)).isEmpty();
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Apr 26 14:02:27 GMT 2024
    - 24.9K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/reflect/ClassPathTest.java

        File jarFile = new File("base.jar");
        assertThat(ClassPath.getClassPathFromManifest(jarFile, manifestClasspath(""))).isEmpty();
      }
    
      public void testGetClassPathFromManifest_badClassPath() throws IOException {
        File jarFile = new File("base.jar");
        Manifest manifest = manifestClasspath("nosuchscheme:an_invalid^path");
        assertThat(ClassPath.getClassPathFromManifest(jarFile, manifest)).isEmpty();
      }
    
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Jul 10 17:06:37 GMT 2023
    - 27.7K bytes
    - Viewed (0)
Back to top