Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 273 for module$ (0.2 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/initialize_variables_in_session_init.cc

    }
    
    func::FuncOp CreateSessionInitFunc(ModuleOp module) {
      constexpr char kSessionInitFuncName[] = "SessionInitializerFunction";
    
      mlir::OpBuilder builder(module.getBodyRegion());
      auto func_type =
          FunctionType::get(module.getContext(), /*inputs=*/{}, /*results=*/{});
      auto func = builder.create<func::FuncOp>(module->getLoc(),
                                               kSessionInitFuncName, func_type);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 09:05:47 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_edit.txt

    ! stdout .
    cmpenv go.mod $WORK/go.mod.goodfmt
    
    # go mod edit -module
    cd $WORK/m
    go mod init a.a/b/c
    go mod edit -module x.x/y/z
    cmpenv go.mod go.mod.edit
    
    # golang.org/issue/30513: don't require go-gettable module paths.
    cd $WORK/local
    go mod init foo
    go mod edit -module local-only -require=other-local@v1.0.0 -replace other-local@v1.0.0=./other
    cmpenv go.mod go.mod.edit
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. pom.xml

    	</scm>
    	<parent>
    		<groupId>org.codelibs.fess</groupId>
    		<artifactId>fess-parent</artifactId>
    		<version>14.15.0-SNAPSHOT</version>
    	</parent>
    	<modules>
    		<module>fess-crawler</module>
    		<module>fess-crawler-lasta</module>
    		<module>fess-crawler-es</module>
    	</modules>
    	<build>
    		<pluginManagement>
    			<plugins>
    				<plugin>
    					<groupId>org.apache.maven.plugins</groupId>
    					<artifactId>maven-shade-plugin</artifactId>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 30 06:32:24 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java-library/module-disabled/tests/buildJavaModule.out

    1 actionable task: 1 executed
    /home/user/gradle/samples/src/main/java/module-info.java:2: error: module not found: com.google.gson
        requires com.google.gson;          // real module
                           ^
    /home/user/gradle/samples/src/main/java/module-info.java:3: error: module not found: org.apache.commons.lang3
        requires org.apache.commons.lang3; // automatic module
                                   ^
    2 errors
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 09:29:37 UTC 2024
    - 735 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesConflictResolutionIntegrationTest.groovy

            then:
    
            resolve.expectGraph {
                root(":", ":test:") {
                    module('org:testB:1.0:runtimeAlt').byConflictResolution("On capability org:testB we want runtimeAlt with 'special'")
                    module('org:testB:1.0:runtimeAlt')
                    module('org:testB:1.0:runtimeOptional')
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 07:37:10 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_tidy_compat.txt

    # default preserve enough checksums for the module to be used by Go 1.16.
    #
    # We don't have a copy of Go 1.16 handy, but we can simulate it by editing the
    # 'go' version in the go.mod file to 1.16, without actually updating the
    # requirements to match.
    
    [short] skip
    
    env MODFMT='{{with .Module}}{{.Path}} {{.Version}}{{end}}'
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/Type.java

        /**
         * Artifact type name for a JAR file that can be placed either on the annotation processor class-path
         * or module-path. The path (classes or modules) is chosen by the plugin, possibly using heuristic rules.
         */
        String PROCESSOR = "processor";
    
        /**
         * Artifact type name for a JAR file to unconditionally place on the annotation processor class-path.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_tidy_compat_implicit.txt

    # default preserve enough checksums for the module to be used by Go 1.16.
    #
    # We don't have a copy of Go 1.16 handy, but we can simulate it by editing the
    # 'go' version in the go.mod file to 1.16, without actually updating the
    # requirements to match.
    
    [short] skip
    
    env MODFMT='{{with .Module}}{{.Path}} {{.Version}}{{end}}'
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modcmd/tidy.go

    	UsageLine: "go mod tidy [-e] [-v] [-x] [-diff] [-go=version] [-compat=version]",
    	Short:     "add missing and remove unused modules",
    	Long: `
    Tidy makes sure go.mod matches the source code in the module.
    It adds any missing modules necessary to build the current module's
    packages and dependencies, and it removes unused modules that
    don't provide any relevant packages. It also adds any missing entries
    to go.sum and removes any unnecessary ones.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/projectmodule/DefaultProjectLocalComponentProvider.java

        private LocalComponentGraphResolveState getLocalComponentState(ProjectState projectState, ProjectInternal project) {
            Module module = project.getDependencyMetaDataProvider().getModule();
            ModuleVersionIdentifier moduleVersionIdentifier = moduleIdentifierFactory.moduleWithVersion(module.getGroup(), module.getName(), module.getVersion());
            ProjectComponentIdentifier componentIdentifier = projectState.getComponentIdentifier();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top