Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,705 for grouped (0.21 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/resource/local/GroupedAndNamedUniqueFileStore.java

        private final Grouper<K> grouper;
        private final Namer<K> namer;
        private final FileAccessTracker checksumDirAccessTracker;
        private final File baseDir;
        private final ChecksumService checksumService;
    
        public GroupedAndNamedUniqueFileStore(File baseDir, TemporaryFileProvider temporaryFileProvider, FileAccessTimeJournal fileAccessTimeJournal, Grouper<K> grouper, Namer<K> namer, ChecksumService checksumService) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 02 16:14:10 UTC 2021
    - 4.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/info.go

    // manage breaks. See TODO comment above.
    //
    // Note 3: according to the spec, it is possible for the Extend category to
    // introduce breaks between other categories grouped in Letter. However, this
    // is undesirable for our purposes. ICU prevents breaks in such cases as well.
    
    // isBreak returns whether this rune should introduce a break.
    func (c info) isBreak() bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/file/FilePermissions.java

     * <p>
     * Permissions are grouped into 3 distinct categories (representing different classes of users):
     * <ul>
     *     <li>OWNER (user) permissions: what actions the owner of the file/directory can perform on the file/directory</li>
     *     <li>GROUP permissions: what actions a user, who is a member of the group that a file/directory belongs to, can perform on the file/directory</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. build-logic-commons/code-quality-rules/src/main/resources/classycle/classycle_report_resources.zip

    </style></head><body>"); list.document.writeln(text); list.document.writeln("</body></html>"); list.document.close(); list.focus(); } //--> Analysis of Date: Summary no class cycles class cycle class cycles class layers classes (using external classes) grouped in packages no package cycles package cycle package cycles no package packages Type Number of classes Averaged (maximum) size in bytes Averaged (maximum) number of usage by other classes Averaged (maximum) number of used internal classes Averaged...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 23.4K bytes
    - Viewed (0)
  5. src/math/arith_s390x.go

    import "internal/cpu"
    
    func expTrampolineSetup(x float64) float64
    func expAsm(x float64) float64
    
    func logTrampolineSetup(x float64) float64
    func logAsm(x float64) float64
    
    // Below here all functions are grouped in stubs.go for other
    // architectures.
    
    const haveArchLog10 = true
    
    func archLog10(x float64) float64
    func log10TrampolineSetup(x float64) float64
    func log10Asm(x float64) float64
    
    const haveArchCos = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 15:48:19 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs-asciidoctor-extensions-base/src/main/resources/multi-language-samples.js

    function postProcessCodeBlocks() {
      // Assumptions:
      //  1) All siblings that are marked with class="multi-language-sample" should be grouped
      //  2) Only one language can be selected per domain (to allow selection to persist across all docs pages)
      //  3) There is exactly 1 small set of languages to choose from. This does not allow for multiple language preferences. For example, users cannot prefer both Kotlin and ZSH.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/options/BooleanOptionElement.java

        }
    
        /**
         * Returns a comparator that groups opposite option pairs together.
         *
         * <p>Options are sorted in the natural order of their names,
         * except for disable options which are sorted after their opposite option.
         * For example, {@code "--foo"} and {@code "--no-foo"} are grouped together
         * and are sorted after {@code "--bar"} and {@code "--no-bar"}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 18 06:43:54 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/dependency_management_basics.adoc

    <3> Adds the Mockito dependency to the project. Mockito is a mocking framework for testing Java code. This library will be used to compile and run the _test_ source code in this project.
    
    Dependencies in Gradle are grouped by *configurations*.
    
    - The `material` library is added to the `implementation` configuration, which is used for compiling and running _production_ code.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:47:52 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. pkg/proxy/endpointslicecache.go

    type EndpointSliceCache struct {
    	// lock protects trackerByServiceMap.
    	lock sync.Mutex
    
    	// trackerByServiceMap is the basis of this cache. It contains endpoint
    	// slice trackers grouped by service name and endpoint slice name. The first
    	// key represents a namespaced service name while the second key represents
    	// an endpoint slice name. Since endpoints can move between slices, we
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:07:21 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. pkg/volume/util/nested_volumes.go

    			}
    			myMPSlash := myMountPoint + string(os.PathSeparator)
    			// The previously found nested mountpoints.
    			// NOTE: We can't simply rely on sort.Strings to have all the mountpoints sorted and
    			// grouped. For example, the following strings are sorted in this exact order:
    			// /dir/nested, /dir/nested-vol, /dir/nested.vol, /dir/nested/double, /dir/nested2
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 18 12:19:17 UTC 2022
    - 4.1K bytes
    - Viewed (0)
Back to top