Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 189 for substituted (0.17 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirPsiTypeProvider.kt

                // E.g., Comparable<Test>
                val newType = substituteOrNull(type) ?: continue
                // Visit new type: e.g., Test, as a type argument, is substituted with Comparable<Test>, again.
                if (newType.hasRecursiveTypeArgument(visited)) return true
            }
            return false
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/compile/internal/types2/instantiate.go

    			return updateContexts(inst)
    		}
    	}
    
    	switch orig := orig.(type) {
    	case *Named:
    		res = check.newNamedInstance(pos, orig, targs, expanding) // substituted lazily
    
    	case *Alias:
    		// TODO(gri) is this correct?
    		assert(expanding == nil) // Alias instances cannot be reached from Named types
    
    		tparams := orig.TypeParams()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. src/go/types/instantiate.go

    			return updateContexts(inst)
    		}
    	}
    
    	switch orig := orig.(type) {
    	case *Named:
    		res = check.newNamedInstance(pos, orig, targs, expanding) // substituted lazily
    
    	case *Alias:
    		// TODO(gri) is this correct?
    		assert(expanding == nil) // Alias instances cannot be reached from Named types
    
    		tparams := orig.TypeParams()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Preconditions.java

       *     errorMessageArgs[0]}, etc. Unmatched arguments will be appended to the formatted message in
       *     square braces. Unmatched placeholders will be left as-is.
       * @param errorMessageArgs the arguments to be substituted into the message template. Arguments
       *     are converted to strings using {@link String#valueOf(Object)}.
       * @throws IllegalArgumentException if {@code expression} is false
       */
      public static void checkArgument(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Preconditions.java

       *     errorMessageArgs[0]}, etc. Unmatched arguments will be appended to the formatted message in
       *     square braces. Unmatched placeholders will be left as-is.
       * @param errorMessageArgs the arguments to be substituted into the message template. Arguments
       *     are converted to strings using {@link String#valueOf(Object)}.
       * @throws IllegalArgumentException if {@code expression} is false
       */
      public static void checkArgument(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/internal/language/language.go

    // components.
    func (t Tag) HasString() bool {
    	return t.str != ""
    }
    
    // Parent returns the CLDR parent of t. In CLDR, missing fields in data for a
    // specific language are substituted with fields from the parent language.
    // The parent for a language may change for newer versions of CLDR.
    func (t Tag) Parent() Tag {
    	if t.str != "" {
    		// Strip the variants and extensions.
    		b, s, r := t.Raw()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 16.8K bytes
    - Viewed (0)
Back to top