Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 214 for compareIDs (0.12 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-string.h

      // Compares two wide C strings.  Returns true iff they have the same
      // content.
      //
      // Unlike wcscmp(), this function can handle NULL argument(s).  A
      // NULL C string is considered different to any non-NULL C string,
      // including the empty string.
      static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs);
    
      // Compares two C strings, ignoring case.  Returns true iff they
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/cache/debugger/comparer.go

    type CacheComparer struct {
    	NodeLister corelisters.NodeLister
    	PodLister  corelisters.PodLister
    	Cache      internalcache.Cache
    	PodQueue   internalqueue.SchedulingQueue
    }
    
    // Compare compares the nodes and pods of NodeLister with Cache.Snapshot.
    func (c *CacheComparer) Compare(logger klog.Logger) error {
    	logger.V(3).Info("Cache comparer started")
    	defer logger.V(3).Info("Cache comparer finished")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 29 05:26:32 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. src/internal/runtime/atomic/types.go

    	return Loadint32(&i.value)
    }
    
    // Store updates the value atomically.
    //
    //go:nosplit
    func (i *Int32) Store(value int32) {
    	Storeint32(&i.value, value)
    }
    
    // CompareAndSwap atomically compares i's value with old,
    // and if they're equal, swaps i's value with new.
    // It reports whether the swap ran.
    //
    //go:nosplit
    func (i *Int32) CompareAndSwap(old, new int32) bool {
    	return Casint32(&i.value, old, new)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. pkg/test/util/assert/assert.go

    // Compare compares two objects and returns and error if they are not the same.
    func Compare[T any](a, b T) error {
    	if !cmp.Equal(a, b, opts(a)...) {
    		return fmt.Errorf("found diff: %v\nLeft: %v\nRight: %v", cmp.Diff(a, b, opts(a)...), a, b)
    	}
    	return nil
    }
    
    // Equal compares two objects and fails if they are not the same.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 18 17:21:50 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  5. operator/cmd/mesh/manifest-diff.go

    }
    
    func manifestDiffCmd(diffArgs *manifestDiffArgs) *cobra.Command {
    	cmd := &cobra.Command{
    		Use:   "diff <file|dir> <file|dir>",
    		Short: "Compare manifests and generate diff",
    		Long: "The diff subcommand compares manifests from two files or directories. The output is a list of\n" +
    			"changed paths with the value changes shown as OLD-VALUE -> NEW-VALUE.\n" +
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/NormalizedPathFingerprintCompareStrategy.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.execution.history.changes;
    
    /**
     * Compares by normalized path (relative/name only) and file contents. Order does not matter.
     */
    public class NormalizedPathFingerprintCompareStrategy extends AbstractFingerprintCompareStrategy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/AbsolutePathFingerprintCompareStrategy.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.execution.history.changes;
    
    /**
     * Compares by absolute paths and file contents. Order does not matter.
     */
    public class AbsolutePathFingerprintCompareStrategy extends AbstractFingerprintCompareStrategy {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionComparator.java

    import org.gradle.api.internal.artifacts.ivyservice.ivyresolve.Versioned;
    
    import java.util.Comparator;
    
    public interface VersionComparator extends Comparator<Versioned> {
        /**
         * Compares two versioned elements to see which is the 'latest'.
         */
        @Override
        int compare(Versioned element1, Versioned element2);
    
        Comparator<Version> asVersionComparator();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. docs/fr/docs/benchmarks.md

    ## Tests de performance et rapidité
    
    Lorsque vous vérifiez les tests de performance, il est commun de voir plusieurs outils de différents types comparés comme équivalents.
    
    En particulier, on voit Uvicorn, Starlette et FastAPI comparés (parmi de nombreux autres outils).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:49:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/internal/tooling/TaskNameComparatorTest.groovy

    import org.gradle.plugins.ide.internal.tooling.model.TaskNameComparator
    import spock.lang.Specification
    import spock.lang.Unroll
    
    class TaskNameComparatorTest extends Specification {
        @Unroll('compares task names #first and #second')
        def compare() {
            def comparator = new TaskNameComparator()
    
            expect:
            comparator.compare(first, second) < 0
            comparator.compare(second, first) > 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top