Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 3,861 for Largest (0.11 sec)

  1. internal/logger/targets.go

    //	group2 contains the remaining targets
    func splitTargets(targets []Target, t types.TargetType) (group1 []Target, group2 []Target) {
    	for _, target := range targets {
    		if target.Type() == t {
    			group1 = append(group1, target)
    		} else {
    			group2 = append(group2, target)
    		}
    	}
    	return
    }
    
    func cancelTargets(targets []Target) {
    	for _, target := range targets {
    		go target.Cancel()
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 03 15:44:50 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cpumanager/cpu_assignment.go

    	return a.sortAvailableCPUs()
    }
    
    // Sorts the provided list of NUMA nodes/sockets/cores/cpus referenced in 'ids'
    // by the number of available CPUs contained within them (smallest to largest).
    // The 'getCPU()' parameter defines the function that should be called to
    // retrieve the list of available CPUs for the type being referenced. If two
    // NUMA nodes/sockets/cores/cpus have the same number of available CPUs, they
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 25 23:56:21 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/manual.css

    	justify-content: space-between;
    	max-width: 75rem;
    	margin-left: auto;
    	margin-right: auto;
    	font-size: 0.875rem;
    	padding: 0.5rem 0.75rem;
    }
    
    /*
     * 1. Value is the largest computed width among 'site-footer__copy' and 'site-footer__links'.
     */
    .site-footer__copy,
    .site-footer__secondary-links {
    	flex-grow: 0;
    	flex-basis: 280px;
    	/* 1. */
    }
    
    /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    === Optimize repository order
    
    When Gradle resolves dependencies, it searches through each repository in the declared order.
    To reduce the time spent searching for dependencies, declare the repository hosting
    the largest number of your dependencies first. This minimizes the number of network requests
    required to resolve all dependencies.
    
    === Minimize repository count
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/tasks/bundling/TarTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.tasks.bundling
    
    class TarTest extends AbstractArchiveTaskTest {
        Tar tar
    
        def setup()  {
            tar = createTask(Tar)
            configure(tar)
        }
    
        @Override
        AbstractArchiveTask getArchiveTask() {
            tar
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 06 15:32:15 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  6. platforms/jvm/war/src/test/groovy/org/gradle/api/tasks/bundling/WarTest.groovy

    package org.gradle.api.tasks.bundling
    
    import org.gradle.api.Action
    import org.gradle.api.file.CopySpec
    import org.gradle.api.plugins.JavaBasePlugin
    import org.gradle.test.fixtures.archive.JarTestFixture
    
    class WarTest extends AbstractArchiveTaskTest {
        War war
    
        def setup() {
            war = createTask(War)
            configure(war)
        }
    
        @Override
        AbstractArchiveTask getArchiveTask() {
            war
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 18:51:45 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. src/runtime/mpagealloc.go

    // into memory as needed. The leaf summaries of the tree correspond to a bitmap chunk.
    //
    // The root level (referred to as L0 and index 0 in pageAlloc.summary) has each
    // summary represent the largest section of address space (16 GiB on 64-bit systems),
    // with each subsequent level representing successively smaller subsections until we
    // reach the finest granularity at the leaves, a chunk.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  8. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/jvm/tasks/JarTest.groovy

    import org.gradle.api.tasks.bundling.AbstractArchiveTask
    import org.gradle.api.tasks.bundling.AbstractArchiveTaskTest
    import org.gradle.test.fixtures.archive.JarTestFixture
    
    class JarTest extends AbstractArchiveTaskTest {
        Jar jar
    
        def setup() {
            jar = createTask(Jar)
            configure(jar)
        }
    
        @Override
        AbstractArchiveTask getArchiveTask() {
            jar
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. cmd/bucket-targets.go

    		if target.SourceBucket == bucket &&
    			target.TargetBucket == bucket &&
    			target.Endpoint == ep.Host &&
    			target.Secure == (ep.Scheme == "https") &&
    			target.Type == madmin.ReplicationService {
    			return target.Arn
    		}
    	}
    	return ""
    }
    
    // generate ARN that is unique to this target type
    func generateARN(t *madmin.BucketTarget, deplID string) string {
    	uuid := deplID
    	if uuid == "" {
    		uuid = mustGetUUID()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 01 01:09:56 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/EarTest.groovy

    import org.gradle.plugins.ear.descriptor.EarSecurityRole
    import org.gradle.plugins.ear.descriptor.internal.DefaultDeploymentDescriptor
    import org.gradle.test.fixtures.archive.JarTestFixture
    
    class EarTest extends AbstractArchiveTaskTest {
        Ear ear
    
        def setup() {
            ear = createTask(Ear)
            configure(ear)
            // This would normally be set by the EarPlugin
            ear.libDirName = "lib"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 19:58:25 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top