Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 180 for _Equal (0.12 sec)

  1. kotlin-js-store/yarn.lock

      integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
    
    fast-deep-equal@^3.1.1:
      version "3.1.3"
      resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
      integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jul 22 12:28:51 UTC 2023
    - 87.4K bytes
    - Viewed (0)
  2. src/debug/elf/file_test.go

    				t.Errorf("open %s: Symbols() expected no symbols, have %v", tt.file, symbols)
    			}
    		} else {
    			if err != nil {
    				t.Errorf("open %s: Symbols() unexpected error %v", tt.file, err)
    			}
    			if !slices.Equal(symbols, tt.symbols) {
    				t.Errorf("open %s: Symbols() = %v, want %v", tt.file, symbols, tt.symbols)
    			}
    		}
    	}
    }
    
    // elf.NewFile requires io.ReaderAt, which compress/gzip cannot
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/runtime/framework.go

    // This function is called from two different places: Schedule and Preempt.
    // When it is called from Schedule, we want to test whether the pod is
    // schedulable on the node with all the existing pods on the node plus higher
    // and equal priority pods nominated to run on the node.
    // When it is called from Preempt, we should remove the victims of preemption
    // and add the nominated pods. Removal of the victims is done by
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  4. guava/src/com/google/common/reflect/TypeToken.java

       *
       * <p>Specifically, returns true if any of the following conditions is met:
       *
       * <ol>
       *   <li>'this' and {@code formalType} are equal.
       *   <li>'this' and {@code formalType} have equal canonical form.
       *   <li>{@code formalType} is {@code <? extends Foo>} and 'this' is a subtype of {@code Foo}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  5. cmd/xl-storage_test.go

    		if err != testCase.err {
    			t.Errorf("TestXLStorage %d: Expected err \"%v\", got err \"%v\"", i+1, testCase.err, err)
    			continue
    		}
    		if err == nil {
    			if !bytes.Equal(dataRead, []byte("Hello, World")) {
    				t.Errorf("TestXLStorage %d: Expected the data read to be \"%s\", but instead got \"%s\"", i+1, "Hello, World", string(dataRead))
    			}
    		}
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 11 17:45:28 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_test.cc

      int64_t values[list_size];
      EXPECT_TF_META("v", list_size, TF_ATTR_INT, -1);
      TF_OperationGetAttrIntList(oper, "v", values, list_size, s_);
      EXPECT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      EXPECT_TRUE(std::equal(std::begin(list), std::end(list), std::begin(values)));
    }
    
    TEST_F(CApiAttributesTest, Float) {
      auto desc = init("float");
      TF_SetAttrFloat(desc, "v", 2.718);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/reflect/TypeToken.java

       *
       * <p>Specifically, returns true if any of the following conditions is met:
       *
       * <ol>
       *   <li>'this' and {@code formalType} are equal.
       *   <li>'this' and {@code formalType} have equal canonical form.
       *   <li>{@code formalType} is {@code <? extends Foo>} and 'this' is a subtype of {@code Foo}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

                }
                if (o == null || getClass() != o.getClass()) {
                    return false;
                }
                TaskSelector that = (TaskSelector) o;
                return Objects.equal(taskName, that.taskName) && Objects.equal(taskType, that.taskType);
            }
    
            @Override
            public int hashCode() {
                return Objects.hashCode(taskName, taskType);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    }
    
    func checkReasons(t *testing.T, actual, expected ConflictReasons) {
    	equal := len(actual) == len(expected)
    	sort.Sort(actual)
    	sort.Sort(expected)
    	if equal {
    		for i, reason := range actual {
    			if reason != expected[i] {
    				equal = false
    				break
    			}
    		}
    	}
    	if !equal {
    		t.Errorf("expected failure reasons %s, got %s", reasonNames(expected), reasonNames(actual))
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // Macros for comparing floating-point numbers.
    //
    //    * {ASSERT|EXPECT}_FLOAT_EQ(expected, actual):
    //         Tests that two float values are almost equal.
    //    * {ASSERT|EXPECT}_DOUBLE_EQ(expected, actual):
    //         Tests that two double values are almost equal.
    //    * {ASSERT|EXPECT}_NEAR(v1, v2, abs_error):
    //         Tests that v1 and v2 are within the given distance to each other.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top