Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 87 for main2 (0.14 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter_test.cc

                            expected_op_metadata->op_costs()->Get(i));
          }
        }
      }
    }
    
    TEST(ExporterTest, Valid) {
      const std::string kMLIR = R"(
    func.func @main(%arg0: tensor<1xf32>, %arg1: tensor<1xf32>, %arg2: tensor<1xf32>, %arg3: tensor<1xf32>) -> tensor<2x1xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Session.java

        /**
         * Shortcut for {@code getService(DependencyResolver.class).flatten(...)}.
         *
         * @param node node for which to get a flattened list
         * @param scope build path scope (main compile, test compile, etc.) of desired nodes
         * @return flattened list of node with the given build path scope
         * @throws org.apache.maven.api.services.DependencyResolverException if the dependency flattening failed
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. pom.xml

                    -->
                    <exclude>src/main/appended-resources/licenses/EPL-1.0.txt</exclude>
                    <exclude>src/main/appended-resources/licenses/unrecognized-aopalliance-1.0.txt</exclude>
                    <exclude>src/main/appended-resources/licenses/unrecognized-javax.annotation-api-1.3.2.txt</exclude>
                  </excludes>
                </configuration>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:13:34 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. .github/workflows/tests.yml

            dbversion: [ 'v6.5.0' ]
            go: ['1.22', '1.21', '1.20']
            platform: [ ubuntu-latest ]
        runs-on: ${{ matrix.platform }}
    
        steps:
          - name: Setup TiDB
            uses: Icemap/tidb-action@main
            with:
              port: 9940
              version: ${{matrix.dbversion}}
    
          - name: Set up Go 1.x
            uses: actions/setup-go@v4
            with:
              go-version: ${{ matrix.go }}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:24:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller_test.go

    									ContainerName: ptr.To("main-container"),
    									Operator:      batch.PodFailurePolicyOnExitCodesOpIn,
    									Values:        []int32{1, 2, 3},
    								},
    							},
    							{
    								Action: batch.PodFailurePolicyActionFailJob,
    								OnExitCodes: &batch.PodFailurePolicyOnExitCodesRequirement{
    									ContainerName: ptr.To("main-container"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

        def "can construct file collection from the elements of a source directory set"() {
            buildFile """
                def fileCollection = objects.fileCollection()
                def sourceDirs = objects.sourceDirectorySet('main', 'main files')
                sourceDirs.srcDirs("dir1", "dir2")
                fileCollection.from(sourceDirs.srcDirTrees)
                println("files = \${fileCollection.files.name.sort()}")
            """
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // Entry functions for signature defs.
      std::vector<FuncOp> entry_functions;
      std::vector<FuncOp> non_entry_functions;
      FuncOp main_fn = module_.lookupSymbol<FuncOp>("main");
      if (main_fn != nullptr) {
        // Treat the main function as a signature def when the given main function
        // contains on the tf.entry_function attribute.
        auto attrs =
            main_fn->getAttrOfType<mlir::DictionaryAttr>("tf.entry_function");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/experimental/tac/execution_metadata_exporter.cc

    }
    
    }  // namespace
    
    std::optional<std::string> ExportRuntimeMetadata(mlir::ModuleOp module) {
      mlir::func::FuncOp main_fn = module.lookupSymbol<mlir::func::FuncOp>("main");
      if (!main_fn) return std::string("");
    
      flatbuffers::FlatBufferBuilder fb_builder;
      std::vector<mlir::func::FuncOp> funcs;
      funcs.push_back(main_fn);
      module.walk([&](mlir::func::FuncOp fn) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 06:11:34 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheGroovyClosureIntegrationTest.groovy

                // The cause is not reported
            }
        }
    
        def "discards implicit objects for Groovy closure"() {
            given:
            createDir("buildSrc") {
                file("src/main/groovy/GroovyTask.groovy") << """
                    import ${DefaultTask.name}
                    import ${Internal.name}
                    import ${TaskAction.name}
    
                    class GroovyTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIntegrationTest.groovy

                      id = 'com.example.my-plugin'
                      implementationClass = 'com.example.MyPlugin'
                    }
                  }
                }
            """
            file('src/main/java/com/example/MyPlugin.java') << """
                package com.example;
                public class MyPlugin implements $Plugin.name<$Project.name> {
                  @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top