Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 104 for substituted (0.33 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

                subjectName == "producer.jar (project :producer)"
            }
    
            checkExecuteTransformWorkOperations(executePlannedStepOp, 1)
        }
    
        def "planned transform for external dependency substituted by included build"() {
            createDirs("included/nested-producer")
            file("included/settings.gradle") << """
                include 'nested-producer'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

        }
    
        @Issue("gradle/gradle#8944")
        def 'verify that cleaning up constraints no longer causes a ConcurrentModificationException'() {
            given:
            // Direct dependency with transitive to be substituted by project
            def project = mavenRepo.module('org', 'project', '1.0')
            mavenRepo.module('org', 'direct', '1.0').dependsOn(project).publish()
    
            // Updated version no longer depends on project
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top