Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for moduleDir (0.23 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/IvyHttpRepository.groovy

        }
    
        HttpDirectoryResource directoryList(String organisation, String module) {
            return new HttpDirectoryResource(server, "$contextPath/$organisation/$module/", backingRepository.moduleDir(organisation, module))
        }
    
        IvyHttpModule module(String organisation, String module, String revision = "1.0") {
            def path = backingRepository.getDirPath(organisation, module, revision as String)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ivy/IvyJavaModule.groovy

        }
    
        void assertNotPublished() {
            backingModule.assertNotPublished()
        }
    
        TestFile getModuleDir() {
            backingModule.moduleDir
        }
    
        IvyJavaModule removeGradleMetadataRedirection() {
            backingModule.removeGradleMetadataRedirection()
            this
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/IvyHttpModule.groovy

            def artifact = backingModule.moduleArtifact(options)
            return new IvyModuleHttpArtifact(server, prefix, artifact)
        }
    
        IvyHttpModule allowAll() {
            server.allowGetOrHead(prefix, backingModule.moduleDir)
            return this
        }
    
        IvyModuleHttpArtifact getIvy() {
            return new IvyModuleHttpArtifact(server, prefix, backingModule.ivy)
        }
    
        IvyModuleHttpArtifact getJar() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishIssuesIntegTest.groovy

                        }
                    }
                }
            """
            when:
            succeeds 'publish'
    
            then:
            def shaOneFile = module.moduleDir.file("testfile-2.bin.sha1")
            shaOneFile.exists()
            shaOneFile.text == "00e14c6ef59816760e2c9b5a57157e8ac9de4012"
        }
    
        @Issue("https://github.com/gradle/gradle/issues/5136")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishIssuesIntegTest.groovy

                    artifact file("${artifactPath}")
                }
            }
        }
        """
    
            when:
            succeeds 'publish'
    
            then:
            def shaOneFile = module.moduleDir.file("publish-2.bin.sha1")
            shaOneFile.exists()
            shaOneFile.text == "00e14c6ef59816760e2c9b5a57157e8ac9de4012"
        }
    
        @Issue("GRADLE-2681")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 07 19:31:52 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                    config.disableESLogger();
                    runner.onBuild((number, settingsBuilder) -> {
                        final File moduleDir = new File(esDir, "modules");
                        if (moduleDir.isDirectory()) {
                            settingsBuilder.put("path.modules", moduleDir.getAbsolutePath());
                        } else {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

            String module = moduleProject.getArtifactId();
    
            File moduleFile = moduleProject.getFile();
    
            if (moduleFile != null) {
                File moduleDir = moduleFile.getCanonicalFile().getParentFile();
    
                module = moduleDir.getName();
            }
    
            if (moduleAdjustments == null) {
                moduleAdjustments = new HashMap<>();
    
                List<String> modules = getModules();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

    org:leaf:[1.5,2.0] FAILED
       Failures:
          - Could not find any matches for org:leaf:[1.5,2.0] as no versions of org:leaf are available.
            Searched in the following locations:
              - ${leafModule.moduleDir.parentFile.displayUriForDir}
    
    org:leaf:[1.5,2.0] FAILED
    \\--- org:top:1.0
         \\--- conf
    """
        }
    
        void "marks project dependencies that cannot be resolved as 'FAILED'"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.cc

      auto module_or = GraphdefToMlirImport(
          input, input_arrays, input_dtypes, input_shapes, output_arrays,
          control_output_arrays, import_options, context);
      if (!module_or.status().ok()) {
        LOG(ERROR) << "Graph import failed: " << module_or.status();
        return module_or.status();
      }
      auto& module = module_or.value();
      std::srand(0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 11:51:44 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/excludes/factories/ExcludeFactory.java

        ModuleExclude module(String module);
    
        ModuleIdExclude moduleId(ModuleIdentifier id);
    
        ExcludeSpec anyOf(ExcludeSpec one, ExcludeSpec two);
    
        ExcludeSpec allOf(ExcludeSpec one, ExcludeSpec two);
    
        ExcludeSpec anyOf(Set<ExcludeSpec> specs);
    
        ExcludeSpec allOf(Set<ExcludeSpec> specs);
    
        ExcludeSpec ivyPatternExclude(ModuleIdentifier moduleId, IvyArtifactName artifact, String matcher);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 17:19:13 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top