Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for getStep (0.18 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    Deprecation warnings found by the Kotlin compiler are reported on the console when compiling the scripts.
    
    [source,text]
    ----
    > Configure project :
    w: build.gradle.kts:4:5: 'getter for uploadTaskName: String!' is deprecated. Deprecated in Java
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        const auto f_attr = mlir::dyn_cast<FlatSymbolRefAttr>(call_op.getFAttr());
        StringRef function_name = f_attr.getValue();
        // TODO(b/228928859): Improve the getter function to match attributes rather
        // than function name.
        // If enable_legacy_weight_only is enabled, QuantizeFunctionsPattern
        // does not get called and function remains as composite
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module('org.gradle.test:lib:1.0')
                }
            }
        }
    
        def "can use the version catalog getter to register catalogs"() {
            settingsFile << """
                dependencyResolutionManagement {
                    versionCatalogs.create('libs') {
                        library("myLib", "org.gradle.test", "lib").version {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Use the `mainClass` property instead.
    
    ==== AbstractExecTask API Cleanup
    
    The deprecated `execResult` getter property of the `AbstractExecTask` task type has been removed.
    Use the `executionResult` getter property instead.
    
    ==== AbstractTestTask API Cleanup
    
    The deprecated `binResultsDir` property of the `AbstractTestTask` task type has been removed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. pilot/pkg/model/push_context_test.go

    		}
    		gotHTTPHosts := make([]string, 0)
    		for _, r := range rules {
    			vs := r.Spec.(*networking.VirtualService)
    			for _, route := range vs.GetHttp() {
    				for _, dst := range route.Route {
    					gotHTTPHosts = append(gotHTTPHosts, dst.Destination.Host)
    				}
    			}
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/Project.java

     * <code>rootProject</code> property.  The properties of this scope are readable or writable depending on the presence
     * of the corresponding getter or setter method.</li>
     *
     * <li>The extra properties of the project.  Each project maintains a map of extra properties, which
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      );
    
      TF_DerivedOperandSizeAttr N = TF_DerivedOperandSizeAttr<0>;
    }
    
    
    // Following ops are manually defined as the ops are using inputs with name `t`
    // that will lead to conflict with getter for attribute `T` as both becomes
    // getT().
    def TF_BatchNormWithGlobalNormalizationOp : TF_Op<"BatchNormWithGlobalNormalization", [Pure]> {
      let summary = "Batch normalization.";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    The old convention object defines the `distsDirName`, `libsDirName` and `archivesBaseName` properties with simple getter and setter methods.
    Those methods are available in the extension only to maintain backwards compatibility.
    Build scripts should solely use the properties of type `Property`:
    
    ====
    [.multi-language-sample]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top