Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 105 for collision (0.12 sec)

  1. 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)
  2. 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. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/api/apps/v1/generated.proto

      // (ready for at least spec.minReadySeconds)
      // +optional
      optional int32 numberUnavailable = 8;
    
      // 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.
      // +optional
      optional int32 collisionCount = 9;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:14:59 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/cluster_tf_ops_pass.cc

        builder.create<func::ReturnOp>(loc, results_after_mapping);
        symbol_table.insert(func_op, metadata.insertion_point++);
        // Record the actual name. The symbol table might rename the FuncOp if there
        // is name collision.
        metadata.partition_name = func_op.getName();
      }
    }
    
    // Creates a tf_device.remote_run call for every remote function. And replaces
    // usages of the results of the original operations with the results of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_collective.cc

        return success();
      }
    };
    
    void LegalizeTFCollective::runOnOperation() {
      // FIXME(b/226139061): Figure out a way to share the channel_id with
      // send/recv Ops. For now, start with a different range to avoid collision.
      int64_t channel_id = 10000;
      auto module = getOperation();
      MLIRContext* context = module->getContext();
    
      RewritePatternSet patterns(context);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. src/internal/concurrent/hashtriemap.go

    // produces a subtree of indirect nodes to hold the two new entries.
    func (ht *HashTrieMap[K, V]) expand(oldEntry, newEntry *entry[K, V], newHash uintptr, hashShift uint, parent *indirect[K, V]) *node[K, V] {
    	// Check for a hash collision.
    	oldHash := ht.keyHash(unsafe.Pointer(&oldEntry.key), ht.seed)
    	if oldHash == newHash {
    		// Store the old entry in the new entry's overflow list, then store
    		// the new entry.
    		newEntry.overflow.Store(oldEntry)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/types.go

    	// [replicas-updatedReplicas,replicas)
    	UpdateRevision string `json:"updateRevision,omitempty" protobuf:"bytes,7,opt,name=updateRevision"`
    
    	// collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller
    	// uses this field as a collision avoidance mechanism when it needs to create the name for the
    	// newest ControllerRevision.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
Back to top