Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for Searle (0.07 sec)

  1. src/runtime/race_arm64.s

    // R9 = addr of target function
    TEXT	racecallatomic<>(SB), NOSPLIT, $0
    	// Set up these registers
    	// R0 = *ThreadState
    	// R1 = caller pc
    	// R2 = pc
    	// R3 = addr of incoming arg list
    
    	// Trigger SIGSEGV early.
    	MOVD	40(RSP), R3	// 1st arg is addr. after two times BL, get it at 40(RSP)
    	MOVB	(R3), R13	// segv here if addr is bad
    	// Check that addr is within [arenastart, arenaend) or within [racedatastart, racedataend).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    Manual testing has its place in the development process, but it is not a replacement for automated testing.
    
    == Setting up automated tests
    
    Setting up a suite of tests early on is crucial to the success of your plugin.
    Automated tests become an invaluable safety net when upgrading the plugin to a new Gradle version or enhancing/refactoring the code.
    
    === Organizing test source code
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. src/crypto/sha256/sha256block_amd64.s

    	MOVQ		p_len+16(FP), numBytes		// get number of input bytes to hash
    	SHRQ		$6, numBytes			// force modulo 64 input buffer length
    	SHLQ		$6, numBytes
    	CMPQ		numBytes, $0			// exit early for zero-length input buffer
    	JEQ		done
    	ADDQ		dataPtr, numBytes		// point numBytes to end of input buffer
    	VMOVDQU		(0*16)(digestPtr), state0	// load initial hash values and reorder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[working_with_files]]
    = Working With Files
    
    File operations are fundamental to nearly every Gradle build.
    They involve handling source files, managing file dependencies, and generating reports.
    Gradle provides a robust API that simplifies these operations, enabling developers to perform necessary file tasks easily.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    [[config_cache:stable]]
    == Stable configuration cache
    
    Working towards the stabilization of configuration caching we implemented some strictness behind a feature flag when it was considered too disruptive for early adopters.
    
    You can enable that feature flag as follows:
    
    ====
    include::sample[dir="snippets/configurationCache/stableFeatureFlag/kotlin",files="settings.gradle.kts[]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. src/internal/bytealg/compare_ppc64x.s

    cmp64:	// >= 64B
    	DCBT	(R5)		// optimize for size>=64
    	DCBT	(R6)		// cache hint
    
    	SRD	$6,R9,R14	// There is at least one iteration.
    	MOVD	R14,CTR
    	ANDCC   $63,R9,R9
    	CMP	R9,$16,CR1	// Do setup for tail check early on.
    	CMP	R9,$32,CR2
    	CMP	R9,$48,CR3
    	ADD	$-16,R9,R9
    
    	MOVD	$32,R11		// set offsets to load into vector
    	MOVD	$48,R12		// set offsets to load into vector
    
    	PCALIGN	$16
    cmp64_loop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:33:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_gradle_module_metadata.adoc

    - <<variant_model.adoc#understanding-variant-selection,variant-aware resolution>>
    
    Publication of Gradle Module Metadata will enable better dependency management for your consumers:
    
    - early discovery of problems by detecting <<component_capabilities.adoc#declaring-component-capabilities,incompatible modules>>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/controlling_task_execution.adoc

    Task ordering can be useful in a number of scenarios:
    
    * Enforce sequential ordering of tasks (e.g., `build` never runs before `clean`).
    * Run build validations early in the build (e.g., validate I have the correct credentials before starting the work for a release build).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    Another common step is to attach all the unit test dependencies to the integration tests as well — via `intTestImplementation.extendsFrom testImplementation` — but that only makes sense if the integration tests require _all_ or nearly all the same dependencies that the unit tests have.
    
    There are a couple of other facets of the example you should take note of:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    Alternatively, you might want to enable verification on CI servers but not on local machines.
    
    Gradle actually provides 3 different verification modes:
    
    - `strict`, which is the default.
    Verification fails _as early as possible_, in order to avoid the use of compromised dependencies during the build.
    - `lenient`, which will run the build even if there are verification failures.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top