Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 294 for collision (0.3 sec)

  1. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    }
    
    // Recomposition
    // We use 32-bit keys instead of 64-bit for the two codepoint keys.
    // This clips off the bits of three entries, but we know this will not
    // result in a collision. In the unlikely event that changes to
    // UnicodeData.txt introduce collisions, the compiler will catch it.
    // Note that the recomposition map for NFC and NFKC are identical.
    
    // combine returns the combined rune or 0 if it doesn't exist.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/hash/Striped64.java

       * which is still better than alternatives.
       *
       * Per-thread hash codes are initialized to random values.
       * Contention and/or table collisions are indicated by failed
       * CASes when performing an update operation (see method
       * retryUpdate). Upon a collision, if the table size is less than
       * the capacity, it is doubled in size unless some other thread
       * holds the lock. If a hashed slot is empty, and lock is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/Striped64.java

       * which is still better than alternatives.
       *
       * Per-thread hash codes are initialized to random values.
       * Contention and/or table collisions are indicated by failed
       * CASes when performing an update operation (see method
       * retryUpdate). Upon a collision, if the table size is less than
       * the capacity, it is doubled in size unless some other thread
       * holds the lock. If a hashed slot is empty, and lock is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apps/v1beta2/types_swagger_doc_generated.go

    	"collisionCount":         "Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.",
    	"conditions":             "Represents the latest available observations of a DaemonSet's current state.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 05:34:30 UTC 2023
    - 34.3K bytes
    - Viewed (0)
  5. src/runtime/netpoll_windows.go

    )
    
    const _DWORD_MAX = 0xffffffff
    
    const _INVALID_HANDLE_VALUE = ^uintptr(0)
    
    // Sources are used to identify the event that created an overlapped entry.
    // The source values are arbitrary. There is no risk of collision with user
    // defined values because the only way to set the key of an overlapped entry
    // is using the iocphandle, which is not accessible to user code.
    const (
    	netpollSourceReady = iota + 1
    	netpollSourceBreak
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. pkg/controller/deployment/sync.go

    		// If the Deployment owns the ReplicaSet and the ReplicaSet's PodTemplateSpec is semantically
    		// deep equal to the PodTemplateSpec of the Deployment, it's the Deployment's new ReplicaSet.
    		// Otherwise, this is a hash collision and we need to increment the collisionCount field in
    		// the status of the Deployment and requeue to try the creation in the next sync.
    		controllerRef := metav1.GetControllerOf(rs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 23:39:52 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/apps/v1beta1/generated.proto

      // +patchMergeKey=type
      // +patchStrategy=merge
      repeated DeploymentCondition conditions = 6;
    
      // collisionCount is the count of hash collisions for the Deployment. The Deployment controller uses this
      // field as a collision avoidance mechanism when it needs to create the name for the
      // newest ReplicaSet.
      // +optional
      optional int32 collisionCount = 8;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 24K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/Striped64.java

       * which is still better than alternatives.
       *
       * Per-thread hash codes are initialized to random values.
       * Contention and/or table collisions are indicated by failed
       * CASes when performing an update operation (see method
       * retryUpdate). Upon a collision, if the table size is less than
       * the capacity, it is doubled in size unless some other thread
       * holds the lock. If a hashed slot is empty, and lock is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/Striped64.java

       * which is still better than alternatives.
       *
       * Per-thread hash codes are initialized to random values.
       * Contention and/or table collisions are indicated by failed
       * CASes when performing an update operation (see method
       * retryUpdate). Upon a collision, if the table size is less than
       * the capacity, it is doubled in size unless some other thread
       * holds the lock. If a hashed slot is empty, and lock is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. pilot/pkg/model/extensions.go

    	WasmPolicyEnv          = pm.WasmPolicyEnv
    	WasmResourceVersionEnv = pm.WasmResourceVersionEnv
    
    	// WasmPluginResourceNamePrefix is the prefix of the resource name of WasmPlugin,
    	// preventing the name collision with other resources.
    	WasmPluginResourceNamePrefix = "extenstions.istio.io/wasmplugin/"
    )
    
    // WasmPluginType defines the type of wasm plugin
    type WasmPluginType int
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top