Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 80 for target01 (0.21 sec)

  1. Development.md

    To influence the generic suggestions Gradle displays, the NonGradleCause interface was introduced.
    If an exception implements this interface, Gradle will not display the `--stacktrace` option.
    
    Another more targeted interface is `CompilationFailedIndicator`.
    This interface is used to indicate that the exception is caused by a compilation failure. 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 22:54:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/dependencymanagement/SamplesComponentSelectionRulesIntegrationTest.groovy

            output.contains "Resolved: lib-1.9.jar"
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample("dependencyManagement/customizingResolution-selectionRule")
        def "can run targeted rule sample with #dsl dsl"() {
            executer.inDirectory(sample.dir.file(dsl))
    
            when:
            run "printTargetConfig"
    
            then:
            output.contains "Resolved: api-1.4.jar"
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/lower_cluster_to_runtime_ops.h

    // The output Runtime ops depends on both Device Type and Runtime Host.
    //
    // Input:
    //     Tensorflow Dialect MLIR with tf_device.cluster ops and virtual devices.
    //     xla_device_type - The device type that is being targeted.
    // Output:
    //     Tensorflow Dialect MLIR with Runtime specific ops. All tf_device.cluster
    //     ops are removed. Physical devices are assigned to ops instead of virtual
    //     devices.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 21:47:17 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. src/runtime/defs_windows_amd64.go

    	print("gs      ", hex(r.seggs), "\n")
    }
    
    type _DISPATCHER_CONTEXT struct {
    	controlPc        uint64
    	imageBase        uint64
    	functionEntry    uintptr
    	establisherFrame uint64
    	targetIp         uint64
    	context          *context
    	languageHandler  uintptr
    	handlerData      uintptr
    }
    
    func (c *_DISPATCHER_CONTEXT) ctx() *context {
    	return c.context
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 08:26:52 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedTypeWithUnmanagedPropertiesIntegrationTest.groovy

                apply type: RulePlugin
            '''
    
            then:
            succeeds "echo"
    
            and:
            output.contains('value: foo')
        }
    
        def "unmanaged property of managed type can be targeted by rules"() {
            when:
            buildScript '''
                @Managed
                interface Platform {
                    @Unmanaged
                    OperatingSystem getOperatingSystem()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-application/src/main/java/org/gradle/api/tasks/application/CreateStartScripts.java

     * }
     * </pre>
     * <p>
     * Note: the Gradle {@code "application"} plugin adds a pre-configured task of this type named {@code "startScripts"}.
     * <p>
     * The task generates separate scripts targeted at Microsoft Windows environments and UNIX-like environments (e.g. Linux, macOS).
     * The actual generation is implemented by the {@link #getWindowsStartScriptGenerator()} and {@link #getUnixStartScriptGenerator()} properties, of type
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. .github/PULL_REQUEST_TEMPLATE.md

    2. Please label this pull request according to what type of issue you are addressing, especially if this is a release targeted pull request. For reference on required PR/issue labels, read here:
    https://git.k8s.io/community/contributors/devel/sig-release/release.md#issuepr-kind-label
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Aug 01 08:59:21 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/raise_custom_ops.cc

        std::string op_name = op->getName().getIdentifier().str();
        // Wrap the operation, if
        // - the op is targeted explicitly, or
        // - the op isn't registered when there are no target list.
        if (target_op_names.contains(op_name) ||
            (target_op_names.empty() && !op->isRegistered())) {
          custom_ops.push_back(op);
        }
      });
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 07:31:01 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf_passes.td

                        "ops."}];
    
      let options = [
        Option<"device_type_", "device-type", "std::string",
            /*default=*/"\"INVALID_DEVICE_TYPE\"",
            "The device type being targeted.">,
      ];
    
      let constructor = "mlir::mhlo::CreateTFXLADeviceSpecificTransformsPass()";
    }
    
    def InfeedOpsXlaAdjustLayout : Pass<"infeed-ops-xla-adjust-layout",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 17:44:14 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/NativeBinarySpec.java

         */
        @Variant
        Flavor getFlavor();
    
        /**
         * Returns the {@link org.gradle.nativeplatform.platform.NativePlatform} that this binary is targeted to run on.
         */
        @Variant
        NativePlatform getTargetPlatform();
    
        /**
         * Returns the {@link org.gradle.nativeplatform.BuildType} used to construct this binary.
         */
        @Variant
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top