Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 736 for block64 (0.1 sec)

  1. src/internal/chacha8rand/chacha8_arm64.s

    	VADD C.S4, D.S4, C.S4; VEOR B.B16, C.B16, V30.B16; VSHL  $7, V30.S4, B.S4; VSRI $25, V30.S4, B.S4
    
    // block runs 4 ChaCha8 block transformations in the four stripes of the V registers.
    
    // func block(seed *[8]uint32, blocks *[4][16]uint32, counter uint32)
    TEXT ·block<ABIInternal>(SB), NOSPLIT, $16
    	// seed in R0
    	// blocks in R1
    	// counter in R2
    
    	// Load initial constants into top row.
    	MOVD $·chachaConst(SB), R10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/ParallelProjectExecutionIntegrationTest.groovy

                tasks.getByPath(':b:pingC').dependsOn([':b:pingA', ':b:pingB'])
            """
    
            expect:
            //project a and b are both executed even though alphabetically more important task is blocked
            blockingServer.expectConcurrent(':b:pingB', ':a:pingA')
            blockingServer.expect(':b:pingA')
            blockingServer.expect(':b:pingC')
    
            run 'b:pingC'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/groovy/scripts/internal/BuildScriptTransformerSpec.groovy

            """)
    
            expect:
            !scriptData.runDoesSomething
            !scriptData.data.hasImperativeStatements
            !scriptData.hasMethods
        }
    
        def "filtered script blocks are not considered imperative code"() {
            given:
            def scriptData = parse("""
    plugins {
        int v = 12
        println "ignore me"
    }
    buildscript {
        doStuff()
    }
    buildscript {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 7.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/work/DefaultWorkerLeaseServiceWorkerLeaseTest.groovy

            }
    
            cleanup:
            registry?.stop()
        }
    
        def "worker start blocks when there are no leases available"() {
            def registry = workerLeaseService(1)
    
            when:
            async {
                start {
                    def cl = registry.startWorker()
                    instant.worker1
                    thread.block()
                    instant.worker1Finished
                    cl.leaseFinish()
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/main/java/org/gradle/jvm/component/internal/JvmSoftwareComponentInternal.java

     *
     * <p>TODO: There is currently no public interface for this type of component, as the JVM component
     * infrastructure is still under construction. The main blocker for publicizing this component
     * is the lack of a proper variant API and support for automatically aggregating variants of owned features.</p>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 21:17:58 UTC 2023
    - 4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/decOps.go

    // license that can be found in the LICENSE file.
    
    package main
    
    var decOps = []opData{}
    
    var decBlocks = []blockData{}
    
    func init() {
    	archs = append(archs, arch{
    		name:    "dec",
    		ops:     decOps,
    		blocks:  decBlocks,
    		generic: true,
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:35:46 UTC 2022
    - 355 bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/dec64Ops.go

    package main
    
    var dec64Ops = []opData{}
    
    var dec64Blocks = []blockData{}
    
    func init() {
    	archs = append(archs, arch{
    		name:    "dec64",
    		ops:     dec64Ops,
    		blocks:  dec64Blocks,
    		generic: true,
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 04 19:35:46 UTC 2022
    - 365 bytes
    - Viewed (0)
  8. src/runtime/sema.go

    // The operations on the inner lists of sudogs with the same address
    // are all O(1). The scanning of the top-level semaRoot list is O(log n),
    // where n is the number of distinct addresses with goroutines blocked
    // on them that hash to the given semaRoot.
    // See golang.org/issue/17953 for a program that worked badly
    // before we introduced the second level of list, and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/operations/BuildOperationExecutor.java

        /**
         * Submits an arbitrary number of runnable operations, created synchronously by the scheduling action, to be executed in the global
         * build operation thread pool. Operations may execute concurrently. Blocks until all operations are complete.
         *
         * <p>Actions are not permitted to access any mutable project state. Generally, this is preferred.</p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/work/AsyncWorkTracker.java

         */
        void registerWork(BuildOperationRef operation, AsyncWorkCompletion completion);
    
        /**
         * Blocks waiting for the completion of all items of asynchronous work associated with the provided build operation.
         * Only waits for work that has been registered at the moment the method is called.  In the event that there are failures in
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:05 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top