Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 288 for north (0.33 sec)

  1. pkg/registry/core/service/ipallocator/bitmap.go

    			r.metrics.incrementAllocationErrors(label.String(), "static")
    		}
    		return &ErrNotInRange{ip, r.net.String()}
    	}
    	if dryRun {
    		// Don't bother to check whether the IP is actually free. It's racy and
    		// not worth the effort to plumb any further.
    		return nil
    	}
    
    	allocated, err := r.alloc.Allocate(offset)
    	if err != nil {
    		// update metrics
    		r.metrics.incrementAllocationErrors(label.String(), "static")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  2. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/tasks/PublishToMavenRepository.java

    /**
     * Publishes a {@link org.gradle.api.publish.maven.MavenPublication} to a {@link MavenArtifactRepository}.
     *
     * @since 1.4
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class PublishToMavenRepository extends AbstractPublishToMaven {
        private final Transient.Var<DefaultMavenArtifactRepository> repository = varOf();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. cmd/os-reliable.go

    				i++
    				// Determine if os.NotExist error is because of
    				// baseDir's parent being present, retry it once such
    				// that the MkdirAll is retried once for the parent
    				// of dirPath.
    				// Because it is worth a retry to skip a different
    				// baseDir which is slightly higher up the depth.
    				nbaseDir := path.Dir(baseDir)
    				if baseDir != "" && nbaseDir != "" && nbaseDir != SlashSeparator {
    					baseDir = nbaseDir
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 22 17:49:30 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. src/unique/handle.go

    	// possible (for example, for strings and plain-ol'-data structs). We also get the
    	// benefit of not cramming every different type into a single map, but that's certainly
    	// not enough to outweigh the cost of two map lookups. What is worth it though, is saving
    	// on those allocations.
    	uniqueMaps = concurrent.NewHashTrieMap[*abi.Type, any]() // any is always a *uniqueMap[T].
    
    	// cleanupFuncs are functions that clean up dead weak pointers in type-specific
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildExceptionReporterTest.groovy

            def branch3 = new DefaultMultiCauseException("third failure", intermediateFailure1)
    
            def ultimateCause2 = new RuntimeException("ultimate cause 2")
            def branch4 = new DefaultMultiCauseException("forth failure", ultimateCause2)
            def branch5 = new DefaultMultiCauseException("fifth failure", ultimateCause2)
            def intermediateFailure2 = new DefaultMultiCauseException("intermediate failure 2", ultimateCause2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  6. platforms/jvm/war/src/main/java/org/gradle/api/tasks/bundling/War.java

    import java.util.Collections;
    import java.util.concurrent.Callable;
    
    import static org.gradle.api.internal.lambdas.SerializableLambdas.spec;
    
    /**
     * Assembles a WAR archive.
     */
    @DisableCachingByDefault(because = "Not worth caching")
    public abstract class War extends Jar {
        public static final String WAR_EXTENSION = "war";
    
        private File webXml;
        private FileCollection classpath;
        private final DefaultCopySpec webInf;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. maven-compat/src/main/java/org/apache/maven/repository/RepositorySystem.java

         * (if applicable). This process will essentially remove duplicate repositories by merging them into one equivalent
         * repository. It is worth to point out that merging does not simply choose one of the input repositories and
         * discards the others but actually combines their possibly different policies.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/CompactLinkedHashMap.java

     * when there is a specific reason to prioritize memory over CPU.
     *
     * @author Louis Wasserman
     */
    @J2ktIncompatible // no support for access-order mode in LinkedHashMap delegate
    @GwtIncompatible // not worth using in GWT for now
    @ElementTypesAreNonnullByDefault
    class CompactLinkedHashMap<K extends @Nullable Object, V extends @Nullable Object>
        extends CompactHashMap<K, V> {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/PgpKeyGrouper.java

    import java.util.stream.Collectors;
    
    /**
     * This class is responsible for "normalizing" trusted PGP keys.
     * It tries to identify common super modules/groups/etc... which can
     * then be moved globally.
     *
     * It's worth noting that the result is _less strict_ than keeping all
     * trusted PGP keys at the artifact level, but it significantly reduces
     * the configuration file size and helps maintenance.
     */
    class PgpKeyGrouper {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  10. src/runtime/mpagecache.go

    		c.scav &^= 1 << i  // clear bit to mark unscavenged
    		return c.base + i*pageSize, uintptr(scav) * pageSize
    	}
    	return c.allocN(npages)
    }
    
    // allocN is a helper which attempts to allocate npages worth of pages
    // from the cache. It represents the general case for allocating from
    // the page cache.
    //
    // Returns a base address and the amount of scavenged memory in the
    // allocated region in bytes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 14:30:00 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top