Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for checkcast (0.13 sec)

  1. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-additional-test-types/tests/checkTask.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/testing/test-suite-multi-configure-each-matching/tests/checkTask.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 50 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/testing/test-suite-multi-configure-each/tests/checkTask.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 50 bytes
    - Viewed (0)
  4. test/typeparam/listimp2.dir/main.go

    	l3 := a.New[int]()
    	l3.PushBackList(l1)
    	checkList(l3, []interface{}{1, 2, 3})
    	l3.PushBackList(l2)
    	checkList(l3, []interface{}{1, 2, 3, 4, 5})
    
    	l3 = a.New[int]()
    	l3.PushFrontList(l2)
    	checkList(l3, []interface{}{4, 5})
    	l3.PushFrontList(l1)
    	checkList(l3, []interface{}{1, 2, 3, 4, 5})
    
    	checkList(l1, []interface{}{1, 2, 3})
    	checkList(l2, []interface{}{4, 5})
    
    	l3 = a.New[int]()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  5. src/container/list/list_test.go

    	l2.PushBack(5)
    
    	l3 := New()
    	l3.PushBackList(l1)
    	checkList(t, l3, []any{1, 2, 3})
    	l3.PushBackList(l2)
    	checkList(t, l3, []any{1, 2, 3, 4, 5})
    
    	l3 = New()
    	l3.PushFrontList(l2)
    	checkList(t, l3, []any{4, 5})
    	l3.PushFrontList(l1)
    	checkList(t, l3, []any{1, 2, 3, 4, 5})
    
    	checkList(t, l1, []any{1, 2, 3})
    	checkList(t, l2, []any{4, 5})
    
    	l3 = New()
    	l3.PushBackList(l1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 7.7K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/main/java/org/gradle/api/internal/AbstractBuildableComponentSpec.java

        }
    
        @Nullable
        @Override
        public Task getCheckTask() {
            return checkTask;
        }
    
        @Override
        public void setCheckTask(@Nullable Task checkTask) {
            this.checkTask = checkTask;
            if (checkTask != null) {
                checkTask.dependsOn(checkTaskDependencies);
            }
        }
    
        @Override
        public void checkedBy(Object... tasks) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/main/java/org/gradle/language/base/plugins/LifecycleBasePlugin.java

                assembleTask.setGroup(BUILD_GROUP);
            });
        }
    
        private void addCheck(Project project) {
            project.getTasks().register(CHECK_TASK_NAME, checkTask -> {
                checkTask.setDescription("Runs all checks.");
                checkTask.setGroup(VERIFICATION_GROUP);
            });
        }
    
        private void addBuild(final Project project) {
            project.getTasks().register(BUILD_TASK_NAME, buildTask -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/incubating/java/modules-multi-project-with-integration-tests/tests/testTask.sample.conf

    commands: [{
        executable: gradle
        args: check
        expected-output-file: checkTask.out
        allow-additional-output: true
        allow-disordered-output: true
    },{
        executable: gradle
        args: run
        expected-output-file: runTask.out
        allow-additional-output: true
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 310 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/java/modules-multi-project/tests/testTask.sample.conf

    commands: [{
        executable: gradle
        args: check
        expected-output-file: checkTask.out
        allow-additional-output: true
        allow-disordered-output: true
    },{
        executable: gradle
        args: run
        expected-output-file: runTask.out
        allow-additional-output: true
        allow-disordered-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 310 bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentBinariesIntegrationTest.groovy

            buildFile << '''
    model {
        tasks {
            verify(Task) {
                doLast {
                    def binaries = $.components.mylib.binaries
                    assert binaries.main.checkTask != null
                    assert binaries.test.checkTask != null
                }
            }
        }
    }
    '''
    
            expect:
            succeeds "verify"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top