Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,130 for list1 (0.04 sec)

  1. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ConventionAwareHelperTest.java

        public void canMapPropertiesUsingClosure() {
            conventionAware.map("list1", TestUtil.toClosure("{ ['a'] }"));
            assertThat(conventionAware.getConventionValue(null, "list1", false), equalTo((Object) toList("a")));
    
            conventionAware.map("list1", TestUtil.toClosure("{ convention -> [convention] }"));
            assertThat(conventionAware.getConventionValue(null, "list1", false), equalTo((Object) toList(conventionAware.getConvention())));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/collection/MultiIteratorTest.java

    import static org.junit.Assert.assertThat;
    
    import java.util.Iterator;
    import java.util.List;
    
    import org.junit.Test;
    
    /**
     * @author koichik
     *
     */
    public class MultiIteratorTest {
    
        /**
         *
         */
        @Test
        public void test() {
            final List<String> list1 = asList("Foo", "Bar");
            final List<String> list2 = asList("Baz");
    
            @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/lister_watcher_test.go

    	if err != nil {
    		t.Fatalf("List failed: %v", err)
    	}
    	limit2, ok := obj2.(*example.PodList)
    	if !ok {
    		t.Fatalf("Expected PodList but got %v", limit2)
    	}
    	if limit2.Continue != "" {
    		t.Errorf("Expected list not to have Continue, but got %s", limit1.Continue)
    	}
    
    	if limit1.Items[0].Name != objects[0].Name {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 11:51:06 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/cel/library/lists.go

    //	[1.0].indexOf(1.1) // returns -1
    //	[].indexOf('string') // returns -1
    func Lists() cel.EnvOption {
    	return cel.Lib(listsLib)
    }
    
    var listsLib = &lists{}
    
    type lists struct{}
    
    func (*lists) LibraryName() string {
    	return "k8s.lists"
    }
    
    var paramA = cel.TypeParamType("A")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/list.go

    	if err == nil {
    		requirements = rs
    		// TODO(#61605): The extra ListU clause fixes a problem with Go 1.21rc3
    		// where "go mod tidy" and "go list -m -u all" fight over whether the go.sum
    		// should be considered up-to-date. The fix for now is to always treat the
    		// go.sum as up-to-date during list -m -u. Probably the right fix is more targeted,
    		// but in general list -u is looking up other checksums in the checksum database
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 22:43:50 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  6. operator/cmd/mesh/profile-list.go

    	return &cobra.Command{
    		Use:   "list",
    		Short: "Lists available Istio configuration profiles",
    		Long:  "The list subcommand lists the available Istio configuration profiles.",
    		Args:  cobra.ExactArgs(0),
    		RunE: func(cmd *cobra.Command, args []string) error {
    			return profileList(cmd, plArgs)
    		},
    	}
    }
    
    // profileList list all the builtin profiles.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/arm64/list7.go

    	}
    	return "SPC_??"
    }
    
    func rlconv(list int64) string {
    	str := ""
    
    	// ARM64 register list follows ARM64 instruction decode schema
    	// | 31 | 30 | ... | 15 - 12 | 11 - 10 | ... |
    	// +----+----+-----+---------+---------+-----+
    	// |    | Q  | ... | opcode  |   size  | ... |
    
    	firstReg := int(list & 31)
    	opcode := (list >> 12) & 15
    	var regCnt int
    	var t string
    	switch opcode {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 6K bytes
    - Viewed (0)
  8. api/api-rules/aggregator_violation_exceptions.list

    Tim Hockin <******@****.***> 1699902446 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:20 UTC 2023
    - 784 bytes
    - Viewed (0)
  9. api/api-rules/sample_apiserver_violation_exceptions.list

    Tim Hockin <******@****.***> 1699829497 -0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:22 UTC 2023
    - 784 bytes
    - Viewed (0)
  10. src/cmd/vendor/rsc.io/markdown/list.go

    			return false
    		}
    		list = &listBuilder{bullet: rune(bullet), num: num}
    		p.addBlock(list)
    	}
    	b := &itemBuilder{list: list, width: n, haveContent: !t.isBlank()}
    	list.todo = func() line {
    		p.addBlock(b)
    		list.item = b
    		return t
    	}
    	return true
    }
    
    // GitHub task list extension
    
    func (p *parseState) taskList(list *List) {
    	for _, item := range list.Items {
    		item := item.(*Item)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top