Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 151 for flavor (0.14 sec)

  1. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/PropertyResourceBundleFallbackCharset.java

     * load the file using ISO-8859-1 encoding.
     *
     * This class is only necessary because {@code sun.util.PropertyResourceBundleCharset} is not
     * available in Java 8.  This class can be removed in favor of {@code sun.util.PropertyResourceBundleCharset}
     * once Java 8 is no longer supported.
     */
    public class PropertyResourceBundleFallbackCharset extends Charset {
    
        public PropertyResourceBundleFallbackCharset() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/TypeAnnotationMetadataStore.java

     * If the {@code is}-getter is generated, and the {@code get}-getter is not ignored explicitly, then the generated
     * {@code is}-getter is automatically ignored in favor of the {@code get}-getter.
     * </p>
     */
    @ServiceScope(Scope.Global.class)
    public interface TypeAnnotationMetadataStore {
        TypeAnnotationMetadata getTypeAnnotationMetadata(Class<?> type);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/wait/error.go

    limitations under the License.
    */
    
    package wait
    
    import (
    	"context"
    	"errors"
    )
    
    // ErrWaitTimeout is returned when the condition was not satisfied in time.
    //
    // Deprecated: This type will be made private in favor of Interrupted()
    // for checking errors or ErrorInterrupted(err) for returning a wrapped error.
    var ErrWaitTimeout = ErrorInterrupted(errors.New("timed out waiting for the condition"))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. tensorflow/c/eager/abstract_tensor_handle.h

      virtual tensorflow::Status Shape(
          tensorflow::PartialTensorShape* shape) const = 0;
    
      // Returns tensor (full) type.
      // While there is no immediate plan to deprecate dtype and shape in favor
      // of only using full type type information, this is a future possibility.
      //
      // Note that map_dtype_to_child_of_tensor() from core/framework/types.h
      // can be used to set a FullTypeDef based on dtype in a derived class if
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 00:30:36 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/util/internal/NameValidatorTest.groovy

            ["flavors", new DefaultFlavorContainer(TestUtil.instantiatorFactory().decorateLenient(), CollectionCallbackActionDecorator.NOOP)],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 13 22:27:15 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/extensibility/ExtensionsStorageTest.groovy

            when:
            def val = storage.getByName("ext")
    
            then:
            val == extension
        }
    
        static interface TestExtension {
            void call(value);
        }
    
        def "favor exact same type over assignable"() {
            given:
            storage.add typeOf(Integer), 'int', 23
            storage.add typeOf(Number), 'num', 42
            storage.add new TypeOf<List<String>>() {}, 'stringList', ['string']
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/experimental/tac/common/targets.h

      } else if (inference_type == HYBRID) {
        return "HYBRID";
      } else {
        return "UNKNOWN";
      }
    }
    
    // Returns canonical representation for hardware name (All uppercase).
    // TODO(b/177376459): Remove this in favor of the string defined by hardwares
    // MyHardware::kId.
    inline std::string GetCanonicalHardwareName(const std::string& hardware_name) {
      std::string name = hardware_name;
      std::transform(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/reflect/DirectInstantiator.java

    /**
     * You should use the methods of {@link org.gradle.api.internal.InstantiatorFactory} instead of this type, as it will give better error reporting, more consistent behaviour and better performance.
     * This type will be retired in favor of {@link org.gradle.api.internal.InstantiatorFactory} at some point. Currently it is too tangled with a few things to just remove.
     */
    public class DirectInstantiator implements Instantiator {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. subprojects/core/src/crossVersionTest/groovy/org/gradle/testfixtures/ProjectBuilderCrossVersionIntegrationTest.groovy

    import spock.lang.Issue
    
    import static org.gradle.integtests.fixtures.RepoScriptBlockUtil.mavenCentralRepositoryDefinition
    
    @Issue("GRADLE-3558")
    @Requires(UnitTestPreconditions.Jdk11OrEarlier)
    // Avoid testing version range in favor of better coverage build performance.
    @TargetVersions(['5.0', '6.8'])
    class ProjectBuilderCrossVersionIntegrationTest extends MultiVersionIntegrationSpec {
    
        public static final String TEST_TASK_NAME = 'test'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/noderesources/least_allocated.go

    limitations under the License.
    */
    
    package noderesources
    
    import (
    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    // leastResourceScorer favors nodes with fewer requested resources.
    // It calculates the percentage of memory, CPU and other resources requested by pods scheduled on the node, and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 12 01:50:09 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top