Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 148 for worst (0.04 sec)

  1. docs/de/docs/advanced/generate-clients.md

    Der generierte Code enthält immer noch etwas **verdoppelte Information**.
    
    Wir wissen bereits, dass diese Methode mit den **Items** zusammenhängt, da sich dieses Wort in `ItemsService` befindet (vom Tag übernommen), aber wir haben auch immer noch den Tagnamen im Methodennamen vorangestellt. 😕
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Apr 03 03:42:11 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/RegularImmutableMap.java

          /*
           * Assume that equals uses the == optimization when appropriate, and that
           * it would check hash codes as an optimization when appropriate. If we
           * did these things, it would just make things worse for the most
           * performance-conscious users.
           */
          if (key.equals(candidateKey)) {
            return entry.getValue();
          }
        }
        return null;
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. src/internal/concurrent/hashtriemap.go

    	if oldHash == newHash {
    		// Store the old entry in the new entry's overflow list, then store
    		// the new entry.
    		newEntry.overflow.Store(oldEntry)
    		return &newEntry.node
    	}
    	// We have to add an indirect node. Worse still, we may need to add more than one.
    	newIndirect := newIndirectNode(parent)
    	top := newIndirect
    	for {
    		if hashShift == 0 {
    			panic("internal/concurrent.HashMapTrie: ran out of hash bits while inserting")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. pkg/controller/volume/pvcprotection/pvc_protection_controller.go

    	// b) was force-deleted.
    	//
    	// It's now just waiting for garbage collection. We could wait
    	// for it to actually get removed, but that may be blocked by
    	// finalizers for the pod and thus get delayed.
    	//
    	// Worse, it is possible that there is a cyclic dependency
    	// (pod finalizer waits for PVC to get removed, PVC protection
    	// controller waits for pod to get removed).  By considering
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. src/runtime/panic.go

    		// panic supercedes the outer panic. Again, we end up needing to
    		// walk the same stack frames.
    		//
    		// These are probably pretty rare occurrences in practice, and
    		// they don't seem any worse than the existing logic. But if we
    		// move the unwinding state into _panic, we could detect when we
    		// run into where the last panic started, and then just pick up
    		// where it left off instead.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/utils/convert_tensor.cc

      // calls, but is less human reader friendly. People reading protobufs are less
      // frequent than serialization, so default to using tensor content
      // representation.
      // * For scalars and short strings it may be marginally worse and a more
      //   intelligent decision could be made by caller.
      if (use_tensor_content)
        input_tensor.AsProtoTensorContent(&tensor_proto);
      else
        input_tensor.AsProtoField(&tensor_proto);
      return tensor_proto;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    [[dependency-locking]]
    = Locking dependency versions
    
    Use of dynamic dependency versions (e.g. `1.+` or `[1.0,2.0)`) makes builds non-deterministic.
    This causes builds to break without any obvious change, and worse, can be caused by a transitive dependency that the build author has no control over.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ImmutableCollection.java

     *       method to obtain a correctly-sized copy.
     *   <li>The performance of using the associated {@code Builder} class can be assumed to be no
     *       worse, and possibly better, than creating a mutable collection and copying it.
     *   <li>Implementations generally do not cache hash codes. If your element or key type has a slow
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    		}
    
    		// If this a main linux kernel mapping with a relocation symbol suffix
    		// ("[kernel.kallsyms]_text"), extract said suffix.
    		// It is fairly hacky to handle at this level, but the alternatives appear even worse.
    		const prefix = "[kernel.kallsyms]"
    		if strings.HasPrefix(m.File, prefix) {
    			m.KernelRelocationSymbol = m.File[len(prefix):]
    		}
    	}
    
    	functions := make(map[uint64]*Function, len(p.Function))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ImmutableCollection.java

     *       method to obtain a correctly-sized copy.
     *   <li>The performance of using the associated {@code Builder} class can be assumed to be no
     *       worse, and possibly better, than creating a mutable collection and copying it.
     *   <li>Implementations generally do not cache hash codes. If your element or key type has a slow
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top