Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 759 for moduleB (0.35 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         * depending on whether {@link #CLASSES} or {@link #MODULES} is present.
         *
         * @param moduleName name of the module on which to apply the path
         * @return an identification of the patch-module path for the given module.
         *
         * @see Modular#moduleName()
         */
        @Nonnull
        public static Modular patchModule(@Nonnull String moduleName) {
            return PATCH_MODULE.new Modular(moduleName);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  2. tensorflow/api_template.__init__.py

    """
    Top-level module of TensorFlow. By convention, we refer to this module as
    `tf` instead of `tensorflow`, following the common practice of importing
    TensorFlow via the command `import tensorflow as tf`.
    
    The primary function of this module is to import all of the public TensorFlow
    interfaces into a single place. The interfaces themselves are located in
    sub-modules, as described below.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 06:27:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. hack/update-vendor.sh

    # Phase 4: copy root go.mod to staging dirs and rewrite
    
    kube::log::status "go.mod: propagate to staging modules" >&11
    for repo in $(kube::util::list_staging_repos); do
      (
        cd "staging/src/k8s.io/${repo}"
    
        echo "=== propagating to ${repo}"
        # copy root go.mod, changing module name
        sed "s#module k8s.io/kubernetes#module k8s.io/${repo}#" \
            < "${KUBE_ROOT}/go.mod" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/resolve/extensions/KtResolveExtensionTestSupport.kt

                check(Directives.WITH_RESOLVE_EXTENSION in moduleStructure.allDirectives) {
                    "configureResolveExtensions() was called, but no modules specify WITH_RESOLVE_EXTENSION."
                }
    
                return TestModuleStructureImpl(
                    moduleStructure.modules.map { it.transformAndRegisterResolveExtension() },
                    moduleStructure.originalTestDataFiles,
                )
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/build.go

    }
    
    // findModule searches for the module that contains the package at path.
    // If the package was loaded, its containing module and true are returned.
    // Otherwise, module.Version{} and false are returned.
    func findModule(ld *loader, path string) (module.Version, bool) {
    	if pkg, ok := ld.pkgCache.Get(path); ok {
    		return pkg.mod, pkg.mod != module.Version{}
    	}
    	return module.Version{}, false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/internal/passes/input_lowering_metrics_pass_test.cc

      }
    
      mlir::LogicalResult Run() {
        mlir::OwningOpRef<mlir::ModuleOp> module_before = module_->clone();
        LogicalResult run_result = pm_->run(module_.get());
    
        EXPECT_TRUE(ModulesEqual(*module_before, *module_));
        return run_result;
      }
    
     private:
      mlir::MLIRContext context_;
      mlir::OwningOpRef<ModuleOp> module_;
      std::unique_ptr<mlir::PassManager> pm_;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 23 19:42:09 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. architecture/runtimes.md

    ## Composition by architecture modules
    
    Each [architecture module and platform](platforms.md) can contribute code to any of the runtimes.
    Not every module contributes to every runtime.
    
    The core-runtime module defines each runtime:
    
    - The target JVM for the runtime. Each runtime has its own JVM compatibility constraints.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/projectStructure/KotlinAnchorModuleProvider.kt

    /**
     * [KotlinAnchorModuleProvider] provides modules which contain dependencies of libraries.
     *
     * In the IJ monorepo, anchor modules are required for navigation from Kotlin compiler library sources to IJ platform sources. The Kotlin
     * compiler depends on the IJ platform, but this dependency is not represented as JARs in the monorepo, but rather by certain monorepo
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. hack/lint-dependencies.sh

    ")
    if [[ -n "${outdated}" ]]; then
      echo "These modules are pinned to versions different than the minimal preferred version."
      echo "That means that without replace directives, a different version would be selected,"
      echo "which breaks consumers of our published modules."
      echo "1. Use hack/pin-dependency.sh to switch to the preferred version for each module"
      echo "2. Run hack/update-vendor.sh to rebuild the vendor directory"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:42 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/testFixtures/groovy/org/gradle/api/internal/artifacts/verification/DependencyVerificationFixture.groovy

            }
    
            void addChecksum(HttpModule module, String algo, String type = "jar", String ext = "jar", String origin = null, String reason = null) {
                def checksum = getChecksum(module, algo, type)
                doAddChecksum(module.group, module.module, module.version, type, ext, algo, checksum, origin, reason)
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top