Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 110 for checkcast (0.16 sec)

  1. 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)
  2. 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)
  3. test/typeparam/list2.go

    	l3 := _New[int]()
    	l3.PushBackList(l1)
    	checkList(l3, []interface{}{1, 2, 3})
    	l3.PushBackList(l2)
    	checkList(l3, []interface{}{1, 2, 3, 4, 5})
    
    	l3 = _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 = _New[int]()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. 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)
  5. cmd/kubeadm/app/preflight/checks_test.go

    			}
    			for _, check := range checks {
    				if check.Name() == ipv4File {
    					checkList = append(checkList, ipv4File)
    				}
    				if check.Name() == ipv6File {
    					checkList = append(checkList, ipv6File)
    				}
    			}
    			if diff := cmp.Diff(checkList, rt.expStr); diff != "" {
    				t.Fatalf("unexpected file content check (-want,+got):\n%s", diff)
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/samples/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)
  10. platforms/software/test-suites-base/src/main/java/org/gradle/testing/base/plugins/TestingModelBasePlugin.java

            void attachBinariesCheckTasksToCheckLifecycle(@Path("tasks.check") Task checkTask, @Path("binaries") ModelMap<BinarySpec> binaries) {
                for (BinarySpec binary : binaries) {
                    if (binary.isBuildable()) {
                        Task binaryCheckTask = binary.getCheckTask();
                        if (binaryCheckTask != null) {
                            checkTask.dependsOn(binaryCheckTask);
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 16:02:04 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top