Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 255 for mask2 (0.31 sec)

  1. src/internal/bytealg/count_s390x.s

    	// Load 1-15 bytes and corresponding mask.
    	// Note: only the low 32-bits of R_LEN are used for the index.
    	VLL R_LEN, (R_PTR), V_VAL
    	VLL R_LEN, (R_MPTR), V_MASK
    
    	// Compare each byte in input chunk against byte to be counted.
    	// Each byte element will be set to either 0 (no match) or 1 (match).
    	VCEQB V_CHAR, V_VAL, V_VAL // each byte will be either 0xff or 0x00
    	VN    V_MASK, V_VAL, V_VAL // mask out most significant 7 bits
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 15 21:04:43 UTC 2019
    - 5.4K bytes
    - Viewed (0)
  2. src/internal/bytealg/indexbyte_arm64.s

    	// Different bytes have different bit masks (i.e: 1, 4, 16, 64)
    	MOVD	$0x40100401, R5
    	VMOV	R1, V0.B16
    	// Work with aligned 32-byte chunks
    	BIC	$0x1f, R0, R3
    	VMOV	R5, V5.S4
    	ANDS	$0x1f, R0, R9
    	AND	$0x1f, R2, R10
    	BEQ	loop
    
    	// Input string is not 32-byte aligned. We calculate the
    	// syndrome value for the aligned 32 bytes block containing
    	// the first bytes and mask off the irrelevant part.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 3.3K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/SingleProjectTaskReportModelTest.groovy

            def task2 = task('task2', 'group2')
            def task3 = task('task3', 'group1')
    
            when:
            def model = modelFor([task1, task2, task3])
    
            then:
            model.groups == ['group1', 'group2'] as Set
            model.getTasksForGroup('group1')*.path == [pathOf(task1), pathOf(task3)]
            model.getTasksForGroup('group2')*.path == [pathOf(task2)]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 10 17:20:29 UTC 2020
    - 4K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskCreationIntegrationTest.groovy

            result.assertNotOutput("task1")
            outputContains("Create :task2")
            outputContains("Configure :task2")
    
            when:
            run("task2")
    
            then:
            outputContains("Create :task1")
            outputContains("Configure :task1")
            outputContains("Create :task2")
            outputContains("Configure :task2")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 13 09:05:07 UTC 2021
    - 9.8K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/TaskReportRendererTest.groovy

            TaskDetails task2 = taskDetails(':task2')
            TaskDetails task3 = taskDetails(':task3', dependencies: [task1])
            RuleDetails rule1 = [getDescription: {'rule1Description'}] as RuleDetails
            RuleDetails rule2 = [getDescription: {'rule2Description'}] as RuleDetails
            List testDefaultTasks = ['task1', 'task2']
    
            when:
            renderer.showDetail(true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 10 12:50:23 UTC 2020
    - 4.5K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/DefaultGroupTaskReportModelTest.groovy

            model.getTasksForGroup('a') as List == [task1]
            model.getTasksForGroup('other') as List == [task2, task3]
        }
    
        def groupNamesAreOrderedCaseInsensitive() {
            TaskDetails task1 = taskDetails('task1')
            TaskDetails task2 = taskDetails('task2')
            TaskDetails task3 = taskDetails('task3')
            TaskDetails task4 = taskDetails('task4')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 10 12:50:23 UTC 2020
    - 3.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr2_build_lifecycle.adoc

        }
    }
    
    tasks.named("task2"){
        println("NAMED TASK2: This is executed during the configuration phase")
        doFirst {
            println("NAMED TASK2 - doFirst: This is executed during the execution phase")
        }
        doLast {
            println("NAMED TASK2 - doLast: This is executed during the execution phase")
        }
    }
    ----
    =====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 05:44:04 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/AggregateMultiProjectTaskReportModelTest.groovy

            TaskDetails task2 = taskDetails('task2')
            TaskReportModel project1 = Mock()
            TaskReportModel project2 = Mock()
            _ * project1.groups >> (['group'] as LinkedHashSet)
            _ * project1.getTasksForGroup('group') >> ([task1] as Set)
            _ * project2.groups >> (['group'] as LinkedHashSet)
            _ * project2.getTasksForGroup('group') >> ([task2] as Set)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 31 16:45:11 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/execution/TaskNameResolverTest.groovy

            def matches = asTasks(result['task1'])
    
            then:
            matches == [task1, task2]
    
            and:
            1 * tasks.names >> (['task1', 'task2'] as SortedSet)
            1 * tasks.getByName('task1') >> task1
            1 * childTasks.names >> (['task1', 'task3'] as SortedSet)
            1 * childTasks.getByName('task1') >> task2
            0 * tasks._
            0 * childTasks._
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Oct 22 03:06:58 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/DefaultPublishArtifactSetTest.groovy

            Task task1 = Mock()
            Task task2 = Mock()
            Task task3 = Mock()
    
            given:
            store.add(artifact1)
            store.add(artifact2)
            builtBy(artifact1, task1, task2)
            builtBy(artifact2, task1, task3)
    
            expect:
            set.buildDependencies.getDependencies(null) == [task1, task2, task3] as Set
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top