Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 730 for Importer (0.24 sec)

  1. src/go/internal/gcimporter/gcimporter_test.go

    	// will expose the error if it is present.
    	//
    	// (Issue: Both the textual and the binary importer used the file path
    	// of the package to be imported as key into the shared packages map.
    	// However, the binary importer then used the package path to identify
    	// the imported package to mark it as complete; effectively marking the
    	// wrong package as complete. By using an "unclean" package path, the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/composite-builds/plugin-dev/README.adoc

    NOTE: You can open this sample inside an IDE using the https://www.jetbrains.com/help/idea/gradle.html#gradle_import_project_start[IntelliJ native importer] or https://projects.eclipse.org/projects/tools.buildship[Eclipse Buildship].
    
    == Composite build to develop a Gradle plugin
    
    This sample demonstrates a composite build used to develop a Gradle plugin in conjunction with a consuming build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/java/library-publishing/README.adoc

    NOTE: You can open this sample inside an IDE using the https://www.jetbrains.com/help/idea/gradle.html#gradle_import_project_start[IntelliJ native importer] or https://projects.eclipse.org/projects/tools.buildship[Eclipse Buildship].
    
    This sample shows how to publish a Java library to a repository.
    The library has no dependencies and the build has minimal configuration.
    
    ====
    include::sample[dir="kotlin",files="my-library/build.gradle.kts[]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/build-organization/sharing-convention-plugins-with-build-logic/README.adoc

    NOTE: You can open this sample inside an IDE using the https://www.jetbrains.com/help/idea/gradle.html#gradle_import_project_start[IntelliJ native importer] or https://projects.eclipse.org/projects/tools.buildship[Eclipse Buildship].
    
    This sample shows how _convention plugins_ can be shared and applied to both the production code and the build logic code in _buildSrc_.
    
    Let's use the following project structure:
    ====
    [.multi-language-sample]
    =====
    .Project structure
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/architecture/PackageDependencyRulesTest.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.architecture
    
    import com.tngtech.archunit.core.importer.ClassFileImporter
    import com.tngtech.archunit.lang.syntax.ArchRuleDefinition.noClasses
    
    
    import org.junit.Test
    
    
    class PackageDependencyRulesTest {
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/java/jvm-multi-project-with-additional-test-types/README.adoc

    NOTE: You can open this sample inside an IDE using the https://www.jetbrains.com/help/idea/gradle.html#gradle_import_project_start[IntelliJ native importer] or https://projects.eclipse.org/projects/tools.buildship[Eclipse Buildship].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/writing-tasks/tasks-with-dependency-resolution-result-inputs/README.adoc

    NOTE: You can open the samples inside an IDE using the https://www.jetbrains.com/help/idea/gradle.html#gradle_import_project_start[IntelliJ native importer] or https://projects.eclipse.org/projects/tools.buildship[Eclipse Buildship].
    
    This sample shows how to create a plugin with tasks that have dependency resolution results as inputs.
    The plugin is packaged via an included build and is demonstrated on a multi-project build for a Java application.
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. docs/ru/docs/tutorial/debugging.md

    ```Python
        uvicorn.run(app, host="0.0.0.0", port=8000)
    ```
    
    будет запущена.
    
    ---
    
    Но этого не произойдет, если вы импортируете этот модуль (файл).
    
    Таким образом, если у вас есть файл `importer.py` с таким импортом:
    
    ```Python
    from myapp import app
    
    # Some more code
    ```
    
    то автоматическая создаваемая внутри файла `myapp.py` переменная  `__name__` будет иметь значение отличающееся от `"__main__"`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        TF_RETURN_IF_ERROR(importer.PrepareConvert(*fbody->graph));
    
        TF_ASSIGN_OR_RETURN(auto func_type, importer.InferLibFunctionType(*fbody));
    
        absl::InlinedVector<OutputTensor, 4> arg_nodes;
        absl::InlinedVector<OutputTensor, 4> ret_nodes;
        absl::InlinedVector<Node*, 4> control_ret_nodes;
        importer.GetArgsAndRetsFromFunctionBody(*fbody, &arg_nodes, &ret_nodes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. docs/fr/docs/tutorial/debugging.md

    Ainsi, la section :
    
    ```Python
        uvicorn.run(app, host="0.0.0.0", port=8000)
    ```
    
    va s'exécuter.
    
    ---
    
    Cela ne se produira pas si vous importez ce module (fichier).
    
    Par exemple, si vous avez un autre fichier `importer.py` qui contient :
    
    ```Python
    from myapp import app
    
    # Code supplémentaire
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Mar 06 16:26:49 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top