Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for producer_name (0.18 sec)

  1. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/XcodePropertyAdapter.java

            this.project = project;
        }
    
        public String getAction() {
            return getXcodeProperty("ACTION");
        }
    
        public String getProductName() {
            return getXcodeProperty("PRODUCT_NAME");
        }
    
        public String getConfiguration() {
            return getXcodeProperty("CONFIGURATION");
        }
    
        public String getBuiltProductsDir() {
            return getXcodeProperty("BUILT_PRODUCTS_DIR");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/plugins/customPlugin/tests/java-gradle-plugin-check.sample.conf

        executable: gradle
        args: check
    },{
        execution-subdirectory: java-gradle-plugin
        executable: gradle
        args: publish
    },{
        execution-subdirectory: consumer
        executable: gradle
        args: "hello -PproducerName=java-gradle-plugin -q"
        expected-output-file: hello.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 349 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/plugins/customPlugin/tests/plugin-check.sample.conf

        executable: gradle
        args: check
    },{
        execution-subdirectory: java-gradle-plugin
        executable: gradle
        args: publish
    },{
        execution-subdirectory: consumer
        executable: gradle
        args: "hello -PproducerName=java-gradle-plugin -q"
        expected-output-file: hello.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 349 bytes
    - Viewed (0)
  4. dbflute_fess/dfprop/conditionBeanMap.dfprop

    #     # and LessThan at PRODUCT.PRODUCT_NAME and PRODUCT.PRODUCT_HANDLE_CODE,
    #     # and InScope for LONGVARCHAR(e.g. text type) is excluded.
    #     ; String = map:{
    #         ; GreaterThan = map:{ MEMBER = list:{ MEMBER_ACCOUNT } }
    #         ; LessThan = map:{ PRODUCT = list:{ PRODUCT_NAME ; PRODUCT_HANDLE_CODE } }
    #         ; !InScope = map:{ $$ALL$$ = list:{ type:LONGVARCHAR } }
    #     }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 4K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/tasks/GenerateXcodeProjectFileTask.java

            testRunnerSettings.put("PRODUCT_NAME", target.getProductName());
            testRunnerSettings.put("OTHER_LDFLAGS", "-help");
            testRunnerSettings.put("OTHER_CFLAGS", "-help");
            testRunnerSettings.put("OTHER_SWIFT_FLAGS", "-help");
            testRunnerSettings.put("SWIFT_INSTALL_OBJC_HEADER", "NO");
            testRunnerSettings.put("SWIFT_OBJC_INTERFACE_HEADER_NAME", "$(PRODUCT_NAME).h");
    
            return target;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSingleCppProjectIntegrationTest.groovy

            project.targets[0].buildArgumentsString == '-Porg.gradle.internal.xcode.bridge.ACTION="${ACTION}" -Porg.gradle.internal.xcode.bridge.PRODUCT_NAME="${PRODUCT_NAME}" -Porg.gradle.internal.xcode.bridge.CONFIGURATION="${CONFIGURATION}" -Porg.gradle.internal.xcode.bridge.BUILT_PRODUCTS_DIR="${BUILT_PRODUCTS_DIR}" :_xcode__${ACTION}_${PRODUCT_NAME}_${CONFIGURATION}'
    
            project.targets[0].assertIsTool()
            project.targets[0].name == "App"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 27.7K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/testFixtures/groovy/org/gradle/ide/xcode/fixtures/ProjectFile.groovy

            void assertProductNameEquals(String expectedProductName) {
                assert this.productName == expectedProductName
                assert this.buildConfigurationList.buildConfigurations.every { it.buildSettings.PRODUCT_NAME == expectedProductName }
            }
    
            ProductType getProductType() {
                return ProductType.values().find { it.identifier == getProperty("productType")}
            }
    
            void assertIsTool() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_rewrite_pass.cc

                                                      output_types, inputs);
      auto producer_name_attr = cluster_func->getAttr("_producer_name");
      if (producer_name_attr)
        (*execute_op)->setAttr("_producer_name", producer_name_attr);
      return success();
    }
    
    // Given a `ParallelExecute`, replace it with a new `ParallelExecute`. The
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/plugins/XcodePlugin.java

            String projectPath = "";
            if (!isRoot()) {
                projectPath = project.getPath();
            }
            return projectPath + ":_xcode__${ACTION}_${PRODUCT_NAME}_${CONFIGURATION}";
        }
    
        private void configureForSwiftPlugin(final Project project) {
            project.getPlugins().withType(SwiftApplicationPlugin.class, new Action<SwiftApplicationPlugin>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 24.4K bytes
    - Viewed (0)
Back to top