Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 122 for equality (0.18 sec)

  1. guava/src/com/google/common/collect/ForwardingMapEntry.java

     * to the provided {@code standardEquals} method.
     *
     * <p>Each of the {@code standard} methods, where appropriate, use {@link Objects#equal} to test
     * equality for both keys and values. This may not be the desired behavior for map implementations
     * that use non-standard notions of key equality, such as the entry of a {@code SortedMap} whose
     * comparator is not consistent with {@code equals}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 19 19:28:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProjectReportIntegTest.groovy

            "taskReport"            | []
            "propertyReport"        | []
            "htmlDependencyReport"  | []
            // projectReport depends on the other ones, and task order may not be preserved,
            // causing equality comparison between first and second outputs to fail
            //"projectReport"         | []
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. src/crypto/ecdh/nist.go

    // P256 returns a [Curve] which implements NIST P-256 (FIPS 186-3, section D.2.3),
    // also known as secp256r1 or prime256v1.
    //
    // Multiple invocations of this function will return the same value, which can
    // be used for equality checks and switch statements.
    func P256() Curve { return p256 }
    
    var p256 = &nistCurve[*nistec.P256Point]{
    	name:        "P-256",
    	newPoint:    nistec.NewP256Point,
    	scalarOrder: p256Order,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/ExtensibleEnum.java

     *
     * @since 4.0.0
     */
    @Experimental
    public interface ExtensibleEnum {
    
        /**
         * The {@code id} uniquely represents a value for this extensible enum.
         * This id should be used to compute the equality and hash code for the instance.
         *
         * @return the id
         */
        @Nonnull
        String id();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. pkg/kube/krt/util.go

    // For instance, I can make a transformation from `object => object.name` to only trigger events for changes to the name;
    // the output will be compared (using standard equality checking), and only changes will trigger the handler.
    // Note this is in addition to the normal event mechanics, so this can only filter things further.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 08:27:29 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/time_test.go

    		{"!nil =? nil", &t1, nil, false},
    	}
    
    	for _, c := range cases {
    		t.Run(c.name, func(t *testing.T) {
    			result := c.x.Equal(c.y)
    			if result != c.result {
    				t.Errorf("Failed equality test for '%v', '%v': expected %+v, got %+v", c.x, c.y, c.result, result)
    			}
    		})
    	}
    }
    
    func TestTimeBefore(t *testing.T) {
    	t1 := NewTime(time.Now())
    	cases := []struct {
    		name string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtCallableSignature.kt

     *            // On the other hand, a `KaCallableSignature` carries instantiated type information `(Int) -> String`.
     * }
     * ```
     *
     * Equality of [KaCallableSignature] is derived from its content.
     */
    public sealed class KaCallableSignature<out S : KaCallableSymbol> : KaLifetimeOwner {
        /**
         * The original symbol for this signature.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/ClassPathEncodingExtensions.kt

    import org.gradle.internal.serialize.graph.writeFile
    
    
    internal
    fun Encoder.writeClassPath(classPath: ClassPath) {
        // Ensure that the proper type is going to be restored,
        // because it is important for the equality checks.
        if (classPath is TransformedClassPath) {
            writeBoolean(true)
            writeTransformedClassPath(classPath)
        } else {
            writeBoolean(false)
            writeDefaultClassPath(classPath)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/DataStructuralEquality.kt

    import org.gradle.internal.declarativedsl.dom.DeclarativeDocument.ValueNode.ValueFactoryNode
    
    
    /**
     * Checks the data in the content of the documents for equality structurally, ignoring:
     * * the [DeclarativeDocument] implementations,
     * * the differences in the source information, like source identifiers or the offsets in the source data,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/deadness_analysis.h

        }
    
       private:
        explicit DeadnessPredicate(void* pred) : pred_(pred) {}
    
        // This is really a Predicate*, but we don't want to expose that
        // implementation detail to our clients.  `pred_` has pointer equality so we
        // can just compare the pointer in operator== and operator!=.
        void* pred_;
    
        friend class DeadnessAnalysis;
      };
    
      virtual absl::StatusOr<DeadnessPredicate> GetPredicateFor(Node* n,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top