Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 591 for choosing (0.3 sec)

  1. guava-gwt/src-super/com/google/common/base/super/com/google/common/base/Platform.java

      static CharMatcher precomputeCharMatcher(CharMatcher matcher) {
        // CharMatcher.precomputed() produces CharMatchers that are maybe a little
        // faster (and that's debatable), but definitely more memory-hungry. We're
        // choosing to turn .precomputed() into a no-op in GWT, because it doesn't
        // seem to be a worthwhile tradeoff in a browser.
        return matcher;
      }
    
      static String formatCompact4Digits(double value) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 27 13:56:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KaResolver.kt

         * corresponding to this [KtElement].
         *
         * [resolveCallOld] only returns the final result of overload resolution, i.e., the selected callable after considering candidate
         * applicability and choosing the most specific candidate.
         */
        public fun KtElement.collectCallCandidatesOld(): List<KaCallCandidateInfo> = withValidityAssertion {
            analysisSession.resolver.collectCallCandidates(this)
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/util/workloadinstances/util.go

    		// TODO: take auto-registration group into account once it's included into workload instance
    		return wi.Namespace == proxy.ConfigNamespace
    	})
    	if instance != nil {
    		return instance
    	}
    
    	// fall back to choosing one of the workload instances
    
    	// NOTE: for the sake of backwards compatibility, we don't enforce
    	//       instance.Namespace == proxy.ConfigNamespace
    	return instances[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 17:36:41 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/common/case_format.cc

          wordStart = true;
        }
    
        // add delimiter
        if (wordStart && toSnake && !inputStart) {
          result.push_back(delimiter);
        }
    
        // add the next letter from the input string (choosing upper/lower case)
        const bool shouldCapIfSnake = toUpper;
        const bool shouldCapIfCamel = wordStart && (toUpper || !inputStart);
        if ((toSnake && shouldCapIfSnake) || (!toSnake && shouldCapIfCamel)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. pkg/volume/util/volumeattributesclass.go

    		}
    		return defaultClasses[i].CreationTimestamp.UnixNano() > defaultClasses[j].CreationTimestamp.UnixNano()
    	})
    	if len(defaultClasses) > 1 {
    		klog.V(4).Infof("%d default VolumeAttributesClass were found, choosing: %s", len(defaultClasses), defaultClasses[0].Name)
    	}
    
    	return defaultClasses[0], nil
    }
    
    // IsDefaultVolumeAttributesClassAnnotation returns a boolean if the default
    // volume attributes class annotation is set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. pkg/volume/util/storageclass.go

    		}
    		return defaultClasses[i].CreationTimestamp.UnixNano() > defaultClasses[j].CreationTimestamp.UnixNano()
    	})
    	if len(defaultClasses) > 1 {
    		klog.V(4).Infof("%d default StorageClasses were found, choosing: %s", len(defaultClasses), defaultClasses[0].Name)
    	}
    
    	return defaultClasses[0], nil
    }
    
    // IsDefaultAnnotation returns a boolean if the default storage class
    // annotation is set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 03 09:27:59 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_capability_conflict.adoc

    In the relocation example above, Gradle was able to tell you that you have two versions of the same API on classpath: an "old" module and a "relocated" one.
    Now we can solve the conflict by automatically choosing the component which has the highest capability version:
    
    .Conflict resolution by capability versioning
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. ci/official/upload.sh

    # job chain to GCS and PyPI.
    source "${BASH_SOURCE%/*}/utilities/setup.sh"
    
    # Update the version numbers for Nightly only, then fetch the version numbers
    # for choosing the final directory name. This adds "-devYYYYMMDD" to the end of
    # the version string (.devYYYYMMDD for Python; see pypi.org/project/tf-nightly)
    if [[ "$TFCI_NIGHTLY_UPDATE_VERSION_ENABLE" == 1 ]]; then
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 24 20:52:12 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue60377.go

    }
    
    // This example would fail if we were to infer the type argument int for P
    // exactly because any type argument would be ok for the first argument.
    // Choosing the wrong type would cause the second argument to not match.
    
    type T[P any] interface{}
    
    func g6[P any](T[P], P) {}
    
    func _() {
    	var x T[int]
    	g6(x, 1.2)
    	g6(x, "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 20:19:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/encode.go

    		ShortestFloat: cbor.ShortestFloat16,
    
    		// ShortestFloat doesn't apply to NaN or Inf values. Inf values are losslessly
    		// encoded to float16. RFC 8949 recommends choosing a single representation of NaN
    		// in applications that do not smuggle additional information inside NaN values, we
    		// use 0x7e00.
    		NaNConvert: cbor.NaNConvert7e00,
    		InfConvert: cbor.InfConvertFloat16,
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 15:31:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top