Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 169 for flavor (0.12 sec)

  1. 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)
  2. .github/CONTRIBUTING.md

    `checkstyle-result.xml` file.
    
    Some general advice
    
    - Don’t change public API lightly, avoid if possible, and include your reasoning in the PR if essential.  It causes pain for developers who use OkHttp and sometimes runtime errors.
    - Favour a working external library if appropriate.  There are many examples of OkHttp libraries that can sit on top or hook in via existing APIs.
    - Get working code on a personal branch with tests before you submit a PR.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 17 04:16:26 UTC 2019
    - 1.4K bytes
    - Viewed (0)
  3. 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)
  4. src/main/resources/fess_indices/fess/ca/stopwords.txt

    estàvem
    estaven
    estàveu
    esteu
    et
    etc
    ets
    fins
    fora
    gairebé
    ha
    han
    has
    havia
    he
    hem
    heu
    hi 
    ho
    i
    igual
    iguals
    ja
    l'hi
    la
    les
    li
    li'n
    llavors
    m'he
    ma
    mal
    malgrat
    mateix
    mateixa
    mateixes
    mateixos
    me
    mentre
    més
    meu
    meus
    meva
    meves
    molt
    molta
    moltes
    molts
    mon
    mons
    n'he
    n'hi
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/scheduler/framework/plugins/noderesources/most_allocated.go

    limitations under the License.
    */
    
    package noderesources
    
    import (
    	"k8s.io/kubernetes/pkg/scheduler/apis/config"
    	"k8s.io/kubernetes/pkg/scheduler/framework"
    )
    
    // mostResourceScorer favors nodes with most requested resources.
    // It calculates the percentage of memory and CPU requested by pods scheduled on the node, and prioritizes
    // based on the maximum of the average of the fraction of requested to capacity.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 15:23:47 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r42/BuildProgressTaskActionsCrossVersionSpec.groovy

        }
    
        //This is the current behavior. Snapshotting might become not-a-task-action in the future.
        // NOTE: This operation captures more than just snapshotting, and will be removed in a later release in favor of separate snapshotting operations
        def "snapshot task inputs action has an informative name"() {
            given:
            buildFile << "task custom { doLast {} }"
            propertiesFile << "org.gradle.caching=true"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelIncrementalIntegrationTest.groovy

            then:
            executedAndNotSkipped ":appVisualStudioSolution"
            executedAndNotSkipped getComponentTasks("main")
    
            when:
            buildFile << """
                model {
                    flavors {
                        orange
                        banana
                    }
                }
            """
            run "visualStudio"
    
            then:
            executedAndNotSkipped ":appVisualStudioSolution"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top