Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 566 for substituted (0.25 sec)

  1. src/cmd/gofmt/rewrite.go

    	case reflect.Interface:
    		return match(m, p.Elem(), v.Elem())
    	}
    
    	// Handle token integers, etc.
    	return p.Interface() == v.Interface()
    }
    
    // subst returns a copy of pattern with values from m substituted in place
    // of wildcards and pos used as the position of tokens from the pattern.
    // if m == nil, subst returns a copy of pattern and doesn't change the line
    // number information.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:07:13 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/PublishedDependencyConstraintsIntegrationTest.groovy

                root(":", ":test:") {
                    module("org:bar:1.0")
                    module("org:first-level:1.0")
                }
            }
        }
    
        void "dependency constraint on substituted module is recognized properly"() {
            given:
            def available = featureAvailable()
            repository {
                'org:foo:1.0'()
                'org:foo:1.1'()
                'org:bar:1.0'()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  3. src/regexp/regexp.go

    	})
    	return string(b)
    }
    
    // ReplaceAllLiteralString returns a copy of src, replacing matches of the [Regexp]
    // with the replacement string repl. The replacement repl is substituted directly,
    // without using [Regexp.Expand].
    func (re *Regexp) ReplaceAllLiteralString(src, repl string) string {
    	return string(re.replaceAll(nil, src, 2, func(dst []byte, match []int) []byte {
    		return append(dst, repl...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

        "ici_weight_distribution_mlir_bridge_marker";
    
    struct XlaBroadcast : public impl::XlaBroadcastPassBase<XlaBroadcast> {
      void runOnOperation() override;
    };
    
    // Returns true iff the broadcast val can be substituted with an XlaAllReduce.
    // Sets `zero` and `shape` as params for the dummy zeros that will be created.
    bool GetDummyParams(OpBuilder& builder, Value val_bcast, Attribute& zero,
                        DenseIntElementsAttr& shape) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

            }
            return null;
        }
    
        private List<NodeState> findTargetNodes() {
            List<NodeState> targetNodes = this.targetNodes;
            if (targetNodes.isEmpty()) {
                // happens for substituted dependencies
                ComponentState targetComponent = getTargetComponent();
                if (targetComponent != null) {
                    targetNodes = targetComponent.getNodes();
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. src/cmd/dist/buildtool.go

    // no other slashes, which are commands, and other paths, which are packages
    // supporting the commands. Packages in the standard library can be listed
    // if a newer copy needs to be substituted for the Go bootstrap copy when used
    // by the command packages. Paths ending with /... automatically
    // include all packages within subdirectories as well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/HashFunction.java

     *
     * <p>Java's baked-in concept of hash codes is constrained to 32 bits, and provides no separation
     * between hash algorithms and the data they act on, so alternate hash algorithms can't be easily
     * substituted. Also, implementations of {@code hashCode} tend to be poor-quality, in part because
     * they end up depending on <i>other</i> existing poor-quality {@code hashCode} implementations,
     * including those in many JDK classes.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/hash/HashFunction.java

     *
     * <p>Java's baked-in concept of hash codes is constrained to 32 bits, and provides no separation
     * between hash algorithms and the data they act on, so alternate hash algorithms can't be easily
     * substituted. Also, implementations of {@code hashCode} tend to be poor-quality, in part because
     * they end up depending on <i>other</i> existing poor-quality {@code hashCode} implementations,
     * including those in many JDK classes.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 25 18:22:59 UTC 2021
    - 10.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithFileInputsIntegrationTest.groovy

            outputContains("processing c.jar using [d.jar.red, e.jar.red]")
            outputContains("result = [b.jar.green, c.jar.green]")
        }
    
        def "transform can receive a file collection containing substituted external dependencies as parameter"() {
            createDirs("tools", "tools/tool-a", "tools/tool-b")
            file("tools/settings.gradle") << """
                include 'tool-a', 'tool-b'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/text/unicode/bidi/bracket.go

    //    is identical for the opening and closing bracket. It is left to do these
    //    mappings.
    //  - The BPA algorithm requires that bracket characters that are canonical
    //    equivalents of each other be able to be substituted for each other.
    //    It is the responsibility of the caller to do this canonicalization.
    //
    // In implementing BD16, this implementation departs slightly from the "logical"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 11.2K bytes
    - Viewed (0)
Back to top