Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 3,365 for replaced (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/convert_to_legacy_compile_and_replicate_attributes.cc

    // This transformation pass converts unified compilation and replication
    // attributes into legacy attributes. For example,  _replication_info=X
    // and _xla_compile_device_type=TPU should be replaced with _tpu_replicate=X.
    // This ensures the unified attributes not get exposed outside of the MLIR
    // bridge with V1 pipeline in some cases.
    
    #include "llvm/ADT/StringRef.h"
    #include "llvm/Support/Debug.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 23:50:19 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Message.java

        /**
         * Read back an object from the provided stream that has been serialized by a call to {@link #send(Object, java.io.OutputStream)}. Any {@link Throwable} that cannot be de-serialized (for whatever
         * reason) will be replaced by a {@link PlaceholderException}.
         *
         * @param inputSteam stream to read the object from
         * @param classLoader loader used to load exception classes
         * @return the de-serialized object
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/model/PropertyDoc.groovy

            return metaData.deprecated && !referringClass.deprecated
        }
    
        boolean isIncubating() {
            return metaData.incubating || metaData.ownerClass.incubating
        }
    
        boolean isReplaced() {
            return metaData.replaced
        }
    
        @Override
        String getReplacement() {
            return metaData.replacement
        }
    
        Element getDescription() {
            return comment.find { it.nodeName == 'para' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize/quantize.mlir

        %7 = "quantfork.dcast"(%6) : (tensor<1x3x!quant.uniform<i8:f32, 1.000000e-03:-3>>) -> tensor<1x3xf32>
        return %7 : tensor<1x3xf32>
      }
    // Test that the inputs and output of the tf.XlaCallModule op has been replaced
    // by quantized types, and the corresponding quantfork.dcast ops that turned
    // those quantized types back to float types are removed.
    // CHECK: %[[CONST_0:.+]] = stablehlo.constant dense<1.000000e+00> : tensor<4x3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 01:38:40 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_replace_import.txt

    stderr '^go: localhost.fail imports\n\tnonexist: nonexist@v0.1.0: replacement directory ../nonexist does not exist$'
    
    -- go.mod --
    module example.com/m
    
    replace (
    	example.com/a => ./a
    	example.com/a/b => ./b
    )
    
    replace (
    	example.com/x => ./x
    	example.com/x/v3 => ./v3
    )
    
    replace (
    	example.com/y/z/w => ./w
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilder.java

            BundleModel previous = bundles.put(AliasNormalizer.normalize(intern(alias)), new BundleModel(components, currentContext));
            if (previous != null) {
                LOGGER.warn("Duplicate entry for bundle '{}': {} is replaced with {}", alias, previous.getComponents(), components);
            }
        }
    
        @Nullable
        private String intern(@Nullable String value) {
            if (value == null) {
                return null;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  7. hack/build-go.sh

    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    
    # For help output
    ARGHELP=""
    if [[ "$#" -gt 0 ]]; then
        ARGHELP="WHAT='$*'"
    fi
    
    echo "NOTE: $0 has been replaced by 'make' or 'make all'"
    echo
    echo "The equivalent of this invocation is: "
    echo "    make ${ARGHELP}"
    echo
    echo
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 27 02:13:09 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/ClasspathBuilder.java

    /**
     * Helper for building a jar.
     */
    public interface ClasspathBuilder {
    
        /**
         * Creates a Jar file using the given action to add entries to the file. If the file already exists it will be replaced.
         */
        void jar(File destinationFile, Action action);
    
        /**
         * Creates a directory using the given action to add entries to it. If the directory already exists, it will be cleared first.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:05:09 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/main/java/org/gradle/api/internal/file/FileCollectionInternal.java

        /**
         * Returns a copy of this collection, with the given collection replaced with the value returned by the given supplier.
         *
         * This is used to deal with the case where a mutable collection may be added to itself. This is intended to become an error at some point.
         */
        FileCollectionInternal replace(FileCollectionInternal original, Supplier<FileCollectionInternal> supplier);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 14:55:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderDependenciesTest.groovy

            eclipseChild2.projectDependencies.collect { it.path } == []
            // jars that replace the project dependencies + the transitive dependency from :a
            eclipseChild2.classpath.collect { it.file.name } == ['child1.jar', 'child1-tests.jar', 'test-1.0.jar']
        }
    
        def "custom project dependencies are replaced when project is closed"() {
            setup:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top