Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,726 for avoided (0.13 sec)

  1. test/fixedbugs/bug303.go

    // run
    
    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 1011.  Removing either #1 or #3 avoided the crash at #2.
    
    package main
    
    import (
    	"io"
    	"strings"
    )
    
    func readU16BE(b []byte) uint16 {
    	b[0] = 0
    	b[1] = 1
    	return uint16(b[0])<<8 + uint16(b[1]) // #1
    	n := uint16(b[0])<<8 + uint16(b[1])
    	return n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 693 bytes
    - Viewed (0)
  2. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/SerializerRegistry.java

         */
        <T> void register(Class<T> implementationType, Serializer<T> serializer);
    
        /**
         * Use Java serialization for the specified type and all subtypes. Should be avoided, but useful when migrating to using serializers or when dealing with
         * arbitrary user types.
         */
        <T> void useJavaSerialization(Class<T> implementationType);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. src/reflect/float32reg_ppc64x.s

    	FMOVD	reg+0(FP), F1
    	// Normally a float64->float32 conversion
    	// would need rounding, but that is not needed
    	// here since the uint64 was originally converted
    	// from float32, and should be avoided to
    	// preserve SNaN values.
    	FMOVS	F1, ret+8(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 838 bytes
    - Viewed (0)
  4. testing/architecture-test/src/test/java/org/gradle/architecture/test/ConfigurationCreationTest.java

        /**
         * Ensures no new usages of resolvable + dependency scope Configurations are added and ensures usages of "maybe" methods are avoided.
         */
        @ArchTest
        public static final ArchRule maybe_create_and_resolvable_dependency_scope_factory_methods_are_avoided = freeze(
            ArchRuleDefinition.noClasses()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/connection/RouteDatabase.kt

      }
    
      /** Records success connecting to [route]. */
      @Synchronized fun connected(route: Route) {
        _failedRoutes.remove(route)
      }
    
      /** Returns true if [route] has failed recently and should be avoided. */
      @Synchronized fun shouldPostpone(route: Route): Boolean = route in _failedRoutes
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/component/UsageContext.java

     */
    
    package org.gradle.api.internal.component;
    
    import org.gradle.api.attributes.Usage;
    import org.gradle.api.component.SoftwareComponentVariant;
    
    /**
     * This is a legacy type and should be avoided if possible. Use {@link SoftwareComponentVariant} instead.
     */
    public interface UsageContext extends SoftwareComponentVariant {
        @Deprecated
        default Usage getUsage(){
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 04 19:31:46 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. cmd/xl-storage-format-utils.go

    		// branch
    		fi.Data = inData.find(fi.DataDir)
    	}
    	return fi, nil
    }
    
    // hashDeterministicString will return a deterministic hash for the map values.
    // Trivial collisions are avoided, but this is by no means a strong hash.
    func hashDeterministicString(m map[string]string) uint64 {
    	// Seed (random)
    	crc := uint64(0xc2b40bbac11a7295)
    	// Xor each value to make order independent
    	for k, v := range m {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 22:18:44 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Interner.java

     * are available from the {@link Interners} class.
     *
     * <p>Note that {@code String.intern()} has some well-known performance limitations, and should
     * generally be avoided. Prefer {@link Interners#newWeakInterner} or another {@code Interner}
     * implementation even for {@code String} interning.
     *
     * @author Kevin Bourrillion
     * @since 3.0
     */
    @DoNotMock("Use Interners.new*Interner")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 13 14:30:51 UTC 2023
    - 2K bytes
    - Viewed (0)
  9. test/live1.go

    // like the live.go test does.
    // Instead, this test relies on the fact that the liveness
    // analysis turns any non-live parameter on entry into
    // a compile error. Compiling successfully means that bug
    // has been avoided.
    
    package main
    
    // The liveness analysis used to get confused by the tail return
    // instruction in the wrapper methods generated for T1.M and (*T1).M,
    // causing a spurious "live at entry: ~r1" for the return result.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantGraphResolveMetadata.java

    public interface VariantGraphResolveMetadata extends HasAttributes {
        /**
         * Returns the name for this variant, which is unique for the variants of its owning component.
         *
         * In general, this method should be avoided. The internal engine should not need to know the name of a node and
         * should instead identify nodes based on their integer node ID. This method should only be used for
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
Back to top