Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 253 for moduleB (0.3 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftLibraryIntegrationTest.groovy

                    library {
                        module.set('Hello')
                    }
                    dependencies {
                        implementation project(':lib2')
                    }
                }
                project(':lib2') {
                    apply plugin: 'swift-library'
                    library {
                        module.set('Log')
                    }
                }
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 15:17:55 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. android/pom.xml

      </developers>
      <ciManagement>
        <system>GitHub Actions</system>
        <url>https://github.com/google/guava/actions</url>
      </ciManagement>
      <modules>
        <module>guava</module>
        <module>guava-bom</module>
        <module>guava-testlib</module>
        <module>guava-tests</module>
      </modules>
      <build>
        <!-- Handle where Guava deviates from Maven defaults -->
        <sourceDirectory>src</sourceDirectory>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest.groovy

            def pattern = Pattern.compile(Pattern.quote(homeDir) + "/caches/${CacheLayout.MODULES.getKey()}/${CacheLayout.FILE_STORE.getKey()}/([^/]+/[^/]+/[^/]+)/[a-z0-9]+/")
            def text = file.text.replaceAll(pattern, '@CACHE_DIR@/$1/@SHA1@/')
            pattern = Pattern.compile("GRADLE_USER_HOME/${CacheLayout.MODULES.getKey()}/${CacheLayout.FILE_STORE.getKey()}/([^/]+/[^/]+/[^/]+)/[a-z0-9]+/")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/import.go

    	} else {
    		return "", false, nil
    	}
    
    	// Check that there aren't other modules in the way.
    	// This check is unnecessary inside the module cache
    	// and important to skip in the vendor directory,
    	// where all the module trees have been overlaid.
    	// So we only check local module trees
    	// (the main module, and any directory trees pointed at by replace directives).
    	if isLocal {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/coderepo.go

    			// Right now we return "missing go.mod", which is a little confusing.
    			return nil, &module.ModuleError{
    				Path: r.modPath,
    				Err: &module.InvalidVersionError{
    					Version: v,
    					Err:     notExistError{err: err},
    				},
    			}
    		}
    
    		invalidf := func(format string, args ...any) error {
    			return &module.ModuleError{
    				Path: r.modPath,
    				Err: &module.InvalidVersionError{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

            def a1 = mavenHttpRepo.module('org.foo', 'a')
            def b1 = mavenHttpRepo.module('org.foo', 'b')
            def b2 = mavenHttpRepo.module('org.foo', 'b', '2.0')
            def c1 = mavenHttpRepo.module('org.foo', 'c')
            def d1 = mavenHttpRepo.module('org.foo', 'd')
            def e1 = mavenHttpRepo.module('org.foo', 'e')
            def f1 = mavenHttpRepo.module('org.foo', 'f')
    
            a1.dependsOn(c1).publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                    // This is a performance optimization. Most modules do not declare capabilities. So, instead of systematically registering
                    // an implicit capability for each module that we see, we only consider modules which _declare_ capabilities. If they do,
                    // then we try to find a module which provides the same capability. It that module has been found, then we register it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter_test.cc

      }
    
     protected:
      MLIRContext context_;
      OwningOpRef<ModuleOp> module_;
      llvm::SourceMgr source_manager_;
    };
    
    TEST_F(Tf2XlaRewriterTest, LegalizesOpWithTf2xlaHloImporter) {
      TF_EXPECT_OK(LegalizeModule());
    
      int num_tuple_ops = 0;
      module_->walk([&num_tuple_ops](TupleOp tuple_op) { num_tuple_ops += 1; });
    
      EXPECT_EQ(num_tuple_ops, 0);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/build.gradle

                }
            }
            javaModulesMultiProject {
                sampleDirectory = samplesRoot.dir("java/modules-multi-project")
                displayName = "Building Java Modules"
                description = "Build Java Modules and a modular Java application."
                category = "Java Modules"
                common {
                    from(templates.javaApplicationAsSubproject)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultResolutionStrategySpec.groovy

        }
    
        def "configures changing modules cache with jdk5+ units"() {
            when:
            strategy.cacheChangingModulesFor(30000, "milliseconds")
    
            then:
            1 * cachePolicy.cacheChangingModulesFor(30000, TimeUnit.MILLISECONDS)
        }
    
        def "configures changing modules cache with jdk6+ units"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top