Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 185 for make (0.1 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    To let Gradle know that we are implementing a task, we extend the `DefaultTask` class that comes with Gradle.
    It's also beneficial to make our task class `abstract` because Gradle will handle many things automatically:
    
    ====
    [.multi-language-sample]
    =====
    .buildSrc/src/main/kotlin/GenerateReportTask.kt
    [source,kotlin]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    A <<build_environment.adoc#sec:gradle_configuration_properties,Gradle property>> that specifies the host address to listen on or connect to when debug is enabled.
    In the server mode on Java 9 and above, passing `*` for the host will make the server listen on all network interfaces.
    By default, no host address is passed to JDWP, so on Java 9 and above, the loopback address is used, while earlier versions listen on all interfaces.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    Usually, a simple `build` task invocation should do the trick to validate your build logic.
    However, some builds may need additional verification — understand the behavior of your build and make sure you have a good verification plan.
    
    5. [[task_configuration_avoidance_guideline_prefer_automatic_testing]] **Prefer automatic testing to manual testing.** +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    This final value replaces the provider and the property no longer tracks the value of the provider.
    Calling this method also makes a property instance unmodifiable and any further attempts to change the value of the property will fail.
    Gradle automatically makes the properties of a task final when the task starts execution.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    Libraries make a distinction between private (implementation details) and public (exported to consumer) headers.
    
    You can also configure sources for each binary build for those cases where sources are compiled only on certain target machines.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  6. src/runtime/sys_openbsd_386.s

    // stack alignment, creation of a frame undoes it again.
    // A pointer to the arguments is passed on the stack.
    // A single int32 result is returned in AX.
    // (For more results, make an args/results structure.)
    TEXT runtime·pthread_attr_init_trampoline(SB),NOSPLIT,$0
    	PUSHL	BP
    	MOVL	SP, BP
    	SUBL	$4, SP
    	MOVL	12(SP), DX		// pointer to args
    	MOVL	0(DX), AX
    	MOVL	AX, 0(SP)		// arg 1 - attr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    [[sec:plugin_conventions]]
    == Adding default configuration with conventions
    
    Plugins should provide sensible defaults and standards in a specific context, reducing the number of decisions users need to make.
    Using the `project` object, you can define default values.
    These are known as *conventions*.
    
    Conventions are properties that are initialized with default values and can be overridden by the user in their build script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. src/runtime/sys_darwin_amd64.s

    // They should be called with asmcgocall.
    // A pointer to the arguments is passed in DI.
    // A single int32 result is returned in AX.
    // (For more results, make an args/results structure.)
    TEXT runtime·pthread_attr_init_trampoline(SB),NOSPLIT,$0
    	MOVQ	0(DI), DI // arg 1 attr
    	CALL	libc_pthread_attr_init(SB)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:59 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  9. src/runtime/sys_openbsd_arm.s

    // stack alignment, creation of a frame undoes it again.
    // A pointer to the arguments is passed in R0.
    // A single int32 result is returned in R0.
    // (For more results, make an args/results structure.)
    TEXT runtime·pthread_attr_init_trampoline(SB),NOSPLIT,$0
    	MOVW	R13, R9
    	BIC     $0x7, R13		// align for ELF ABI
    	MOVW	0(R0), R0		// arg 1 attr
    	CALL	libc_pthread_attr_init(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  10. docs/en/data/external_links.yml

    Tensorflow 2.0 Models As An API Service With FastAPI & Docker - author: Dylan Anthony author_link: https://dev.to/dbanty link: https://dev.to/dbanty/why-i-m-leaving-flask-3ki6 title: Why I'm Leaving Flask - author: Mike Moritz author_link: https://medium.com/@mike.p.moritz link: https://medium.com/@mike.p.moritz/using-docker-compose-to-deploy-a-lightweight-python-rest-api-with-a-job-queue-37e6072a209b title: Using Docker Compose to deploy a lightweight Python REST API with a job queue - author: '@euri10' author_link:...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top