Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 29 of 29 for module_ (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    ```
    tasks.withType(Test).configureEach {
        jvmArgs(["--add-opens=java.base/java.lang=ALL-UNNAMED",
                 "--add-opens=java.base/java.util=ALL-UNNAMED"]
    }
    ```
    
    If you are developing Gradle plugins, `ProjectBuilder` relies on reflection in the `java.base/java.lang` module.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  2. 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)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            */
            mavenRepo.module("org", "c", '1.0').publish()
            mavenRepo.module("org", "x", '1.0').publish()
            mavenRepo.module("org", "c", '2.0').dependsOn("org", "x", '1.0').publish()
            mavenRepo.module("org", "a").dependsOn("org", "c", "1.0").publish()
            mavenRepo.module("org", "b").dependsOn("org", "c", "2.0").publish()
            mavenRepo.module("org", "d").dependsOn("org", "x", "1.0").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. pkg/proxy/ipvs/proxier.go

    // already exist with the configured scheduler, we just return. Otherwise
    // we check if a dummy VS can be configured with the configured scheduler.
    // Kernel modules will be loaded automatically if necessary.
    func CanUseIPVSProxier(ctx context.Context, ipvs utilipvs.Interface, ipsetver IPSetVersioner, scheduler string) error {
    	logger := klog.FromContext(ctx)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  7. pkg/kubelet/pod_workers.go

    		delete(p.startedStaticPodsByFullname, status.fullname)
    	}
    	return true
    }
    
    // killPodNow returns a KillPodFunc that can be used to kill a pod.
    // It is intended to be injected into other modules that need to kill a pod.
    func killPodNow(podWorkers PodWorkers, recorder record.EventRecorder) eviction.KillPodFunc {
    	return func(pod *v1.Pod, isEvicted bool, gracePeriodOverride *int64, statusFn func(*v1.PodStatus)) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  8. 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)
  9. guava/src/com/google/common/collect/Sets.java

            return false;
          }
        }
        return false;
      }
    
      /**
       * Returns an unmodifiable view of the specified navigable set. This method allows modules to
       * provide users with "read-only" access to internal navigable sets. Query operations on the
       * returned set "read through" to the specified set, and attempts to modify the returned set,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
Back to top