Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,517 for colist (0.16 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

                                            return plugins.values().stream().toList();
                                        }
                                        return List.of();
                                    }
                                })
                                .toList();
                    }
                };
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/DocList.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.util;
    
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    
    public class DocList extends ArrayList<Map<String, Object>> {
    
        private static final long serialVersionUID = 1L;
    
        private long contentSize = 0;
    
        private long processingTime = 0;
    
        @Override
        public void clear() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. cni/test/testdata/pre/noname_calico.conflist

    Ben Leggett <******@****.***> 1716316321 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 499 bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/ResultsStoreHelper.java

         */
        public static String toArray(List<String> list) {
            return list == null ? null : "(" + String.join(",", list) + ")";
        }
    
        public static List<String> toList(Object[] objects) {
            return Stream.of(objects).map(Object::toString).map(String::trim).collect(Collectors.toList());
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. cni/test/testdata/pre/calico.conflist

    Ben Leggett <******@****.***> 1716316321 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 528 bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/ExecutionGraph.java

            this.data = Arrays.asList(lines);
        }
    
        String getData() {
            return JsonOutput.toJson(data);
        }
    
        String getTicks() {
            List<List<Object>> ticks = IntStream.range(0, data.get(0).data.size())
                .mapToObj(index -> Arrays.<Object>asList(index, index))
                .collect(Collectors.toList());
            return JsonOutput.toJson(ImmutableMap.of("ticks", ticks));
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/templates/structuring-software-projects/user-feature/table/src/main/java/com/example/myproduct/user/table/TableBuilder.java

    import java.util.Arrays;
    import java.util.List;
    import java.util.stream.Collectors;
    
    public class TableBuilder {
    
        public static List<List<String>> build() {
            List<MyProductRelease> releases = DataRetriever.retrieve().getReleases();
            return build(releases);
        }
    
        protected static List<List<String>> build(List<MyProductRelease> releases) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/AbstractLongRunningOperation.java

        }
    
        protected static @Nullable <T> List<T> rationalizeInput(@Nullable T[] arguments) {
            return arguments != null && arguments.length > 0 ? Arrays.asList(arguments) : null;
        }
    
        protected static @Nullable <T> List<T> rationalizeInput(@Nullable Iterable<? extends T> arguments) {
            return arguments != null && arguments.iterator().hasNext() ? CollectionUtils.toList(arguments) : null;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/const.go

    			case Int:
    				var s = uint(sizeof(typ)) * 8
    				return int64(-1)<<(s-1) <= x && x <= int64(1)<<(s-1)-1
    			case Int8:
    				const s = 8
    				return -1<<(s-1) <= x && x <= 1<<(s-1)-1
    			case Int16:
    				const s = 16
    				return -1<<(s-1) <= x && x <= 1<<(s-1)-1
    			case Int32:
    				const s = 32
    				return -1<<(s-1) <= x && x <= 1<<(s-1)-1
    			case Int64, UntypedInt:
    				return true
    			case Uint, Uintptr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/plist.go

    	"cmd/internal/src"
    	"fmt"
    	"internal/abi"
    	"strings"
    )
    
    type Plist struct {
    	Firstpc *Prog
    	Curfn   Func
    }
    
    // ProgAlloc is a function that allocates Progs.
    // It is used to provide access to cached/bulk-allocated Progs to the assemblers.
    type ProgAlloc func() *Prog
    
    func Flushplist(ctxt *Link, plist *Plist, newprog ProgAlloc) {
    	if ctxt.Pkgpath == "" {
    		panic("Flushplist called without Pkgpath")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:52:41 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top