Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,535 for Comparer (0.28 sec)

  1. guava/src/com/google/common/primitives/Longs.java

          builder.append(separator).append(array[i]);
        }
        return builder.toString();
      }
    
      /**
       * Returns a comparator that compares two {@code long} arrays <a
       * href="http://en.wikipedia.org/wiki/Lexicographical_order">lexicographically</a>. That is, it
       * compares, using {@link #compare(long, long)}), the first pair of values that follow any common
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  2. src/internal/bytealg/compare_ppc64x.s

    TEXT runtime·cmpstring<ABIInternal>(SB),NOSPLIT|NOFRAME,$0-40
    	// incoming:
    	// R3 a addr -> R5
    	// R4 a len  -> R3
    	// R5 b addr -> R6
    	// R6 b len  -> R4
    	//
    	// on entry to cmpbody:
    	// R3 compare value if compared length is same.
    	// R5 a addr
    	// R6 b addr
    	// R9 min(len(a),len(b))
    	SETB_INIT()
    	CMP	R4,R6,CR0
    	CMP	R3,R5,CR7
    	ISEL	CR0LT,R4,R6,R9
    	MOVD	R5,R6
    	MOVD	R3,R5
    	SETB_CR0(R3)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:33:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/doc.go

    	MOVH R4,2(R3)		<=>	sth r4,2(r3)
    	MOVBU R4,(R3)(R5)		<=>	stbux r4,r3,r5
    
    4. Compares
    
    When an instruction does a compare or other operation that might
    result in a condition code, then the resulting condition is set
    in a field of the condition register. The condition register consists
    of 8 4-bit fields named CR0 - CR7. When a compare instruction
    identifies a CR then the resulting condition is set in that field
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 16:47:45 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. pilot/pkg/config/monitor/monitor.go

    		log.Warnf("Failed to delete config (%+v): %v ", *c, err)
    	}
    }
    
    // compareIDs compares the IDs (i.e. Namespace, GroupVersionKind, and Name) of the two configs and returns
    // 0 if a == b, -1 if a < b, and 1 if a > b. Used for sorting config arrays.
    func compareIDs(a, b *config.Config) int {
    	return strings.Compare(a.Key(), b.Key())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/primitives/Ints.java

          builder.append(separator).append(array[i]);
        }
        return builder.toString();
      }
    
      /**
       * Returns a comparator that compares two {@code int} arrays <a
       * href="http://en.wikipedia.org/wiki/Lexicographical_order">lexicographically</a>. That is, it
       * compares, using {@link #compare(int, int)}), the first pair of values that follow any common
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access.go

    	if err != nil {
    		return err
    	}
    
    	key := newQuota.Namespace + "/" + newQuota.Name
    	e.updatedQuotas.Add(key, updatedQuota)
    	return nil
    }
    
    var etcdVersioner = storage.APIObjectVersioner{}
    
    // checkCache compares the passed quota against the value in the look-aside cache and returns the newer
    // if the cache is out of date, it deletes the stale entry.  This only works because of etcd resourceVersions
    // being monotonically increasing integers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. test/fixedbugs/issue13480.go

    	switch m {
    	case M(nil): // ERROR "compare.*to nil|operator \=\= not defined for .|cannot compare"
    	}
    
    	_ = f == F(nil) // ERROR "compare.*to nil|operator \=\= not defined for .|cannot compare"
    	_ = F(nil) == f // ERROR "compare.*to nil|operator \=\= not defined for .|cannot compare"
    	switch f {
    	case F(nil): // ERROR "compare.*to nil|operator \=\= not defined for .|cannot compare"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 09 23:59:57 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/topologymanager/policy.go

    		// of them encode unpreferred allocations.
    		mergedHint := mergePermutation(defaultAffinity, permutation)
    
    		// Compare the current bestHint with the candidate mergedHint and
    		// update bestHint if appropriate.
    		bestHint = m.compare(bestHint, &mergedHint)
    	})
    
    	if bestHint == nil {
    		bestHint = &TopologyHint{defaultAffinity, false}
    	}
    
    	return *bestHint
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 09:45:25 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_performance.adoc

    == Cache impact on CI builds
    
    The best way to learn about the impact of caching on CI is to set up the same builds with the cache enabled and disabled, and compare the results over time. If you have a single Gradle build step that you want to enable caching for, it's easy to compare the results using your CI system's built-in statistical tools.
    
    Measuring complex pipelines may require more work or external tools to collect and process measurements.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 09:28:20 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/runtime/registry_test.go

    				t.Errorf("DecodeInto(): failed to decode plugin config, expected: %+v, got: %+v",
    					test.expected, pluginFooConf)
    			}
    		})
    	}
    }
    
    // isRegistryEqual compares two registries for equality. This function is used in place of
    // reflect.DeepEqual() and cmp() as they don't compare function values.
    func isRegistryEqual(registryX, registryY Registry) bool {
    	for name, pluginFactory := range registryY {
    		if val, ok := registryX[name]; ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 6.5K bytes
    - Viewed (0)
Back to top