Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,020 for Replacer (0.29 sec)

  1. src/cmd/go/testdata/script/mod_import_meta.txt

    ! stderr 'internal error'
    stderr '^importstd[/\\]x.go:3:8: "std" is not an importable package; see ''go help packages''$'
    
    
    # Not even if such a path is theoretically provided by a (necessarily replaced) module.
    
    go mod edit -replace std@v0.1.0=./modstd
    go mod edit -require std@v0.1.0
    
    ! go list -deps ./importstd
    stderr '^importstd[/\\]x.go:3:8: "std" is not an importable package; see ''go help packages''$'
    
    
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 22 20:45:27 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/sourceparser/PreprocessingReaderTest.groovy

            then:
            output == "Here is a single line with continuations \\and \\ slashes\\\t\n too\\ \n."
        }
    
        def "replaces inline comments with space"() {
            when:
            input = """
    Here/* comment */is a string/*
    multiline
    comment
    here */that contains/**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_list.txt

    # go clean -modcache can delete read-only dependencies
    go clean -modcache
    ! exists $GOPATH/pkg/mod/rsc.io/quote@v1.5.2
    
    # list {{.Dir}} shows replaced directories
    cp go.mod2 go.mod
    go list -mod=mod -f {{.Dir}} rsc.io/quote
    go list -m -f '{{.Path}} {{.Version}} {{.Dir}}{{with .Replace}} {{.GoMod}} => {{.Version}} {{.Dir}} {{.GoMod}}{{end}}' all
    stdout 'mod[\\/]rsc.io[\\/]quote@v1.5.1'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 18:16:28 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/escape/Escapers.java

        /**
         * Adds a replacement string for the given input character. The specified character will be
         * replaced by the given string whenever it occurs in the input, irrespective of whether it lies
         * inside or outside the 'safe' range.
         *
         * @param c the character to be replaced
         * @param replacement the string to replace the given character
         * @return the builder instance
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileCollectionTest.groovy

            def collection2 = new TestCompositeFileCollection(source2)
    
            def filtered = collection.filter(spec)
    
            when:
            def replaced = filtered.replace(other, {})
            def replaced2 = filtered.replace(collection, { collection2 })
    
            then:
            replaced.is(filtered)
            replaced2 != filtered
            0 * _
        }
    
        private class TestCompositeFileCollection extends CompositeFileCollection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/escape/Escapers.java

        /**
         * Adds a replacement string for the given input character. The specified character will be
         * replaced by the given string whenever it occurs in the input, irrespective of whether it lies
         * inside or outside the 'safe' range.
         *
         * @param c the character to be replaced
         * @param replacement the string to replace the given character
         * @return the builder instance
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_freeze_variables.cc

    }
    
    // Propagates a resource usage across the graph where
    // 'user_op' uses a resource and is passed to this op at 'argument_index'.
    // This resource should be replaced by 'value'.
    // Output params:
    // - work_list: Is updated with new regions to process that is called
    //   by 'user_op';
    // - arguments_to_erase: Captures updates to the graph - which arguments
    //   to remove from the op;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/resource/local/UniquePathKeyFileStore.java

    import org.gradle.api.NonNullApi;
    import org.gradle.internal.hash.ChecksumService;
    
    import java.io.File;
    
    /**
     * Assumes that files do not need to be replaced in the filestore.
     *
     * Can be used as an optimisation if path contains a checksum of the file, as there is no point to perform the replace in that circumstance.
     */
    @NonNullApi
    public class UniquePathKeyFileStore extends DefaultPathKeyFileStore {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 06 12:56:56 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  9. testing/internal-testing/src/main/groovy/org/gradle/util/internal/ToBeImplemented.java

     *
     * <p>This annotation replaces {@literal @}{@link groovy.test.NotYetImplemented}.
     * The problem with {@code NotYetImplemented} is that it succeeds no matter what causes the marked test
     * to fail. Tests like that can pass because the expected failure is still present, or even if the
     * expected failure is replaced by some other failure. It's better to write a test that explicitly
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileCollectionSpec.groovy

            collection.from(collection1, collection2)
    
            when:
            def replaced = collection.replace(collection1, supplier)
    
            then:
            replaced != collection
            replaced.sourceCollections == [replaced1, collection2]
    
            1 * collection1.replace(collection1, supplier) >> replaced1
            1 * collection2.replace(collection1, supplier) >> collection2
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top