Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for checkList (0.23 sec)

  1. 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)
  2. 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)
  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. 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)
  5. src/cmd/go/internal/mvs/mvs_test.go

    				list, err := BuildList([]module.Version{m(kf[1])}, reqs)
    				checkList(t, key, list, err, val)
    			})
    			continue
    		case "upgrade*":
    			if len(kf) != 2 {
    				t.Fatalf("upgrade* takes one argument: %q", line)
    			}
    			fns = append(fns, func(t *testing.T) {
    				list, err := UpgradeAll(m(kf[1]), reqs)
    				checkList(t, key, list, err, val)
    			})
    			continue
    		case "upgradereq":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. .github/PULL_REQUEST_TEMPLATE.md

    - [ ] New feature (non-breaking change which adds functionality)
    - [ ] Optimization (provides speedup with no functional changes)
    - [ ] Breaking change (fix or feature that would cause existing functionality to change)
    
    ## Checklist:
    - [ ] Fixes a regression (If yes, please add `commit-id` or `PR #` here)
    - [ ] Unit tests added/updated
    - [ ] Internal documentation updated
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 14 17:29:11 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. .github/ISSUE_TEMPLATE/bug_report.yaml

          multiple: true
          options:
            - Android
            - GWT
            - Java 8
            - Java 11
            - Java 17
    
      - type: checkboxes
        attributes:
          label: Checklist
          options:
            - label: >
                I agree to follow the
                [code of conduct](https://github.com/google/.github/blob/master/CODE_OF_CONDUCT.md).
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 27 19:53:41 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. .github/PULL_REQUEST_TEMPLATE.md

    <!--- The issue this PR addresses -->
    <!-- Fixes #? -->
    
    ### Context
    <!--- Why do you believe many users will benefit from this change? -->
    <!--- Link to relevant issues or forum discussions here -->
    
    ### Contributor Checklist
    - [ ] [Review Contribution Guidelines](https://github.com/gradle/gradle/blob/master/CONTRIBUTING.md).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 13 22:36:19 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. .github/pull_request_template.md

    Following this checklist to help us incorporate your
    contribution quickly and easily:
    
     - [ ] Make sure there is a [JIRA issue](https://issues.apache.org/jira/browse/MNG) filed
           for the change (usually before you start working on it).  Trivial changes like typos do not
           require a JIRA issue. Your pull request should address just this issue, without
           pulling in other changes.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 20 13:14:27 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. .github/ISSUE_TEMPLATE/feature_enhancement_request.yaml

          label: Concrete Use Cases
          description: Please provide use cases that actually came up in the real world.
        validations:
          required: true
    
      - type: checkboxes
        attributes:
          label: Checklist
          options:
            - label: >
                I agree to follow the
                [code of conduct](https://github.com/google/.github/blob/master/CODE_OF_CONDUCT.md).
              required: true
            - label: >
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top