Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,484 for replaced (0.12 sec)

  1. src/cmd/go/internal/robustio/robustio.go

    func Rename(oldpath, newpath string) error {
    	return rename(oldpath, newpath)
    }
    
    // ReadFile is like os.ReadFile, but on Windows retries errors that may
    // occur if the file is concurrently replaced.
    //
    // (See golang.org/issue/31247 and golang.org/issue/32188.)
    func ReadFile(filename string) ([]byte, error) {
    	return readFile(filename)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/exec/BuildOutcomeReportingBuildActionRunner.java

            BuildLogger buildLogger = buildLoggerFactory.create(Logging.getLogger(BuildLogger.class), startParameter, buildStartedTime, buildRequestMetaData);
            // Register as a 'logger' to support this being replaced by build logic.
            buildController.beforeBuild(gradle -> gradle.useLogger(buildLogger));
    
            Result result = delegate.run(action, buildController);
    
            buildLogger.logResult(result.getBuildFailure());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ScopedListenerManager.java

         * However, the reverse is not true:
         * events broadcast in the parent are not received by the listeners in the children.
         * The child inherits the loggers of its parent, though these can be replaced.
         *
         * @return The child
         */
        ScopedListenerManager createChild(Class<? extends Scope> scope);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 10:09:43 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top