Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,773 for compared (0.24 sec)

  1. src/main/java/jcifs/smb1/smb1/ACE.java

     * "The .NET Developer's Guide to Windows Security" (which is also
     * available online).
     * <p>
     * Direct ACEs are evaluated first in order. The SID of the user performing
     * the operation and the desired access bits are compared to the SID
     * and access mask of each ACE. If the SID matches, the allow/deny flags
     * and access mask are considered. If the ACE is a "deny"
     * ACE and <i>any</i> of the desired access bits match bits in the access
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 7.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.h

      // should be revisited for new resource-allocators that might potentially
      // break our currently guaranteed correctness.
      // For context, we are very conservative here compared to
      // `auto_control_deps.py` where it is assumed that allocated resource values
      // NEVER alias. We should align our assumptions in the future.
      static constexpr int64_t kUnknownResourceId = -1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/CompactLinkedHashMap.java

     * function doing a good job of distributing the elements to the buckets to a distribution not far
     * from uniform), and amortized since some operations can trigger a hash table resize.
     *
     * <p>As compared with {@link java.util.LinkedHashMap}, this structure places significantly reduced
     * load on the garbage collector by only using a constant number of internal objects.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. docs/ja/docs/deployment/server-workers.md

    ここでは<a href="https://gunicorn.org/" class="external-link" target="_blank">**Gunicorn**</a>が**Uvicornのワーカー・プロセス**を管理する場合の使い方について紹介していきます。
    
    !!! info
        <!-- NOTE: the current version of docker.md is outdated compared to English one.  -->
        DockerやKubernetesなどのコンテナを使用している場合は、次の章で詳しく説明します: [コンテナ内のFastAPI - Docker](docker.md){.internal-link target=_blank}
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    		Comments:          comments,
    		DefaultSampleType: defaultSampleType,
    	}
    	copy(p.SampleType, srcs[0].SampleType)
    	return p, nil
    }
    
    // compatible determines if two profiles can be compared/merged.
    // returns nil if the profiles are compatible; otherwise an error with
    // details on the incompatibility.
    func (p *Profile) compatible(pb *Profile) error {
    	if !equalValueType(p.PeriodType, pb.PeriodType) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/collections.adoc

    [[domainobjectset]]
    == 1. `DomainObjectSet`
    
    A link:{javadocPath}/org/gradle/api/DomainObjectSet.html[`DomainObjectSet`] simply holds a set of configurable objects.
    
    Compared to `NamedDomainObjectContainer`, a `DomainObjectSet` doesn't manage the objects in the collection.
    They need to be created and added manually.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. pkg/controlplane/apiserver/options/options_test.go

    	if !s.Authorization.AreLegacyFlagsSet() {
    		t.Errorf("expected legacy authorization flags to be set")
    	}
    	// setting the method to nil since methods can't be compared with reflect.DeepEqual
    	s.Authorization.AreLegacyFlagsSet = nil
    
    	if !reflect.DeepEqual(expected, s) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  8. 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)
  9. test/typeparam/maps.go

    	r := make([]V, 0, len(m))
    	for _, v := range m {
    		r = append(r, v)
    	}
    	return r
    }
    
    // _Equal reports whether two maps contain the same key/value pairs.
    // _Values are compared using ==.
    func _Equal[K, V comparable](m1, m2 map[K]V) bool {
    	if len(m1) != len(m2) {
    		return false
    	}
    	for k, v1 := range m1 {
    		if v2, ok := m2[k]; !ok || v1 != v2 {
    			return false
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/comparison/DiffUtils.java

     * https://en.wikipedia.org/wiki/Longest_common_subsequence_problem
     *
     * Original author Yun Peng (******@****.***)
     */
    public final class DiffUtils {
        // A list of unique strings appeared in compared texts.
        // The index of each string is its incremental Id.
        private final List<String> stringList = new ArrayList<>();
        // A map to record each unique string and its incremental id.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top