Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 47 for moduleB (0.2 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                services.get(BuildEventsListenerRegistry).onOperationCompletion(listener)
            """
        }
    
        def setupExternalDependency(TestFile buildFile = getBuildFile()) {
            def m1 = mavenRepo.module("test", "test", "4.2").publish()
            m1.artifactFile.text = "test-test"
    
            buildFile << """
                allprojects {
                    repositories {
                        maven { url "${mavenRepo.uri}" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ====
    
    In fact, the above sample will work for all `com.android.*` plugins that are provided by the specified module. That's because the packaged module contains the details of which plugin ID maps to which plugin implementation class, using the properties-file mechanism described in the <<custom_plugins#sec:custom_plugins_standalone_project,Writing Custom Plugins>> chapter.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                        final File moduleDir = new File(esDir, "modules");
                        if (moduleDir.isDirectory()) {
                            settingsBuilder.put("path.modules", moduleDir.getAbsolutePath());
                        } else {
                            settingsBuilder.put("path.modules", new File(System.getProperty("user.dir"), "modules").getAbsolutePath());
                        }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  4. src/cmd/internal/testdir/testdir_test.go

    				if err != nil {
    					return err
    				}
    				t.checkExpectedOutput(out)
    			}
    		}
    		return nil
    
    	case "runindir":
    		// Make a shallow copy of t.goDirName() in its own module and GOPATH, and
    		// run "go run ." in it. The module path (and hence import path prefix) of
    		// the copy is equal to the basename of the source directory.
    		//
    		// It's used when test a requires a full 'go build' in order to compile
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  5. pkg/kubelet/eviction/helpers.go

    	emptyDirMessageFmt = "Usage of EmptyDir volume %q exceeds the limit %q. "
    	// inodes, number. internal to this module, used to account for local disk inode consumption.
    	resourceInodes v1.ResourceName = "inodes"
    	// resourcePids, number. internal to this module, used to account for local pid consumption.
    	resourcePids v1.ResourceName = "pids"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loader/loader.go

    // have been annotated with the //go:wasmimport directive.  The aux sym
    // contains the information necessary for the linker to add a WebAssembly
    // import statement.
    // (https://webassembly.github.io/spec/core/syntax/modules.html#imports)
    func (l *Loader) WasmImportSym(fnSymIdx Sym) (Sym, bool) {
    	if l.SymType(fnSymIdx) != sym.STEXT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  7. src/reflect/type.go

    	}
    
    	return false
    }
    
    // typelinks is implemented in package runtime.
    // It returns a slice of the sections in each module,
    // and a slice of *rtype offsets in each module.
    //
    // The types in each module are sorted by string. That is, the first
    // two linked types of the first module are:
    //
    //	d0 := sections[0]
    //	t1 := (*rtype)(add(d0, offset[0][0]))
    //	t2 := (*rtype)(add(d0, offset[0][1]))
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  8. src/go/types/api_test.go

    		{"go1.19", "", "go1.19"},       // module version specified
    		{"", "go1.20", ""},             // file upgrade ignored
    		{"go1.19", "go1.20", "go1.20"}, // file upgrade permitted
    		{"go1.20", "go1.19", "go1.20"}, // file downgrade not permitted
    		{"go1.21", "go1.19", "go1.19"}, // file downgrade permitted (module version is >= go1.21)
    
    		// versions containing release numbers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

                    if (d.version != null && buildScriptBuilder.useVersionCatalog) {
                        String versionCatalogRef = buildScriptBuilder.buildContentGenerationContext.getVersionCatalogDependencyRegistry().registerLibrary(d.module, d.version);
                        statementGroup.add(new DepSpec(configuration, null, versionCatalogRef, true));
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                        }
                    }
                    configurations.all {
                        resolutionStrategy.dependencySubstitution {
                            substitute module('com.acme.external:external') using project(":c")
                        }
                    }
                }
                project(':b') {
                    configurations.create('default') {
    
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
Back to top