Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,235 for Builders (0.24 sec)

  1. src/os/path_windows_test.go

    	if testenv.Builder() == "" {
    		t.Skipf("skipping non-hermetic test outside of Go builders")
    	}
    
    	const prefix = `\\?\`
    	vol := filepath.VolumeName(t.TempDir()) + `\`
    	if len(vol) < 4 || vol[:4] != prefix {
    		vol = prefix + vol
    	}
    	testMkdirAllAtRoot(t, vol)
    }
    
    func TestMkdirAllVolumeNameAtRoot(t *testing.T) {
    	if testenv.Builder() == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:37:32 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/primitives/ByteArrayAsListTest.java

                    .named("Bytes.asList, middle subList"));
    
        TestSuite suite = new TestSuite();
        for (ListTestSuiteBuilder<Byte> builder : builders) {
          suite.addTest(
              builder
                  .withFeatures(
                      CollectionSize.ONE,
                      CollectionSize.SEVERAL,
                      CollectionFeature.RESTRICTS_ELEMENTS,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/primitives/CharArrayAsListTest.java

                    .named("Chars.asList, middle subList"));
    
        TestSuite suite = new TestSuite();
        for (ListTestSuiteBuilder<Character> builder : builders) {
          suite.addTest(
              builder
                  .withFeatures(
                      CollectionSize.ONE,
                      CollectionSize.SEVERAL,
                      CollectionFeature.RESTRICTS_ELEMENTS,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/primitives/DoubleArrayAsListTest.java

                    .named("Doubles.asList, middle subList"));
    
        TestSuite suite = new TestSuite();
        for (ListTestSuiteBuilder<Double> builder : builders) {
          suite.addTest(
              builder
                  .withFeatures(
                      CollectionSize.ONE,
                      CollectionSize.SEVERAL,
                      CollectionFeature.RESTRICTS_ELEMENTS,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpEmptyProjectIntegrationTest.groovy

            settingsFile << "rootProject.name = 'empty'"
    
            buildFile << "apply plugin: 'eclipse-wtp'"
    
            when:
            run "eclipse"
    
            then:
            // Builders and natures
            def project = project
            project.assertHasNatures()
            project.assertHasBuilders()
    
            // Classpath
            !testDirectory.file('.classpath').exists()
    
            // Facets
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r48/CustomBuildFinishedAction.java

    import org.gradle.tooling.BuildAction;
    import org.gradle.tooling.BuildController;
    
    public class CustomBuildFinishedAction implements BuildAction<String> {
        // Tasks graph is already calculated and tasks executed. Action or model builders can access tasks results.
    
        @Override
        public String execute(BuildController controller) {
            // Print something to verify it is after task execution
            System.out.println("buildFinishedAction");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/utils/stablehlo_type_utils_test.cc

      }
    
      MLIRContext ctx_;
      OpBuilder builder_{&ctx_};
    };
    
    TEST_F(StablehloTypeUtilsTest, IsStablehloOpSucceedsWithStablehloOp) {
      const OwningOpRef<mlir::stablehlo::ConstantOp> constant_op =
          builder_.create<mlir::stablehlo::ConstantOp>(
              builder_.getUnknownLoc(), builder_.getI32IntegerAttr(0));
      EXPECT_TRUE(IsStablehloOp(*constant_op));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 25 00:32:20 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/common/cost.h

    #include <string>
    
    #include "mlir/IR/Builders.h"  // from @llvm-project
    #include "mlir/IR/Operation.h"  // from @llvm-project
    
    namespace mlir {
    namespace TFL {
    namespace tac {
    
    // Cost attribute string on the TFL dialect.
    constexpr char kCost[] = "tac.cost";
    
    inline void UpdateCost(Operation* op, float cost, OpBuilder* builder) {
      op->setAttr(kCost, builder->getF32FloatAttr(cost));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 21 01:22:53 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/primitives/IntArrayAsListTest.java

                    .named("Ints.asList, middle subList"));
    
        TestSuite suite = new TestSuite();
        for (ListTestSuiteBuilder<Integer> builder : builders) {
          suite.addTest(
              builder
                  .withFeatures(
                      CollectionSize.ONE,
                      CollectionSize.SEVERAL,
                      CollectionFeature.RESTRICTS_ELEMENTS,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 01 09:32:35 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/tooling/provider/model/ToolingModelBuilderRegistry.java

     */
    
    package org.gradle.tooling.provider.model;
    
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    /**
     * A registry of tooling model builders. Adding a builder to this registry makes a model (or models) available via the tooling API.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top