Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 173 for SetName (0.15 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/xla_legalize_tf.cc

      to.add(std::move(from.getPDLPatterns()));
    
      return to;
    }
    
    std::string OperationLegalityString(Operation *op,
                                        const ConversionTarget &target) {
      auto op_name = op->getName();
      auto action = target.getOpAction(op_name);
      if (!action.has_value()) {
        return "Unknown";
      }
      switch (action.value_or(ConversionTarget::LegalizationAction::Legal)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AbstractTransformExecution.java

                    }
                }
    
                @Override
                public BuildOperationDescriptor.Builder description() {
                    String displayName = transform.getDisplayName() + " " + inputArtifact.getName();
                    return BuildOperationDescriptor.displayName(displayName)
                        .details(ExecuteTransformActionBuildOperationType.DETAILS_INSTANCE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BuildScanPluginSmokeTest.groovy

                )
                .expectLegacyDeprecationWarningIf(versionNumber < FIRST_VERSION_CALLING_BUILD_PATH,
                    "The BuildIdentifier.getName() method has been deprecated. " +
                        "This is scheduled to be removed in Gradle 9.0. " +
                        "Use getBuildPath() to get a unique identifier for the build. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

            fails "forceResolution", "--stacktrace", "--info"
    
            outputContains("Variant Selection Exception: " + demonstration.exception.getName() + " caused by Resolution Failure: " + demonstration.failure.getName())
            failure.assertHasErrorOutput("Caused by: " + demonstration.exception.getName())
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/export_utils.cc

                GetLocationWithoutOpType(call_site.getCallee()))) {
          llvm::StringRef original_node_name, original_func_name;
          std::tie(original_node_name, original_func_name) =
              name_loc.getName().strref().split('@');
          // The location points to the current node def.
          if (node_name == original_node_name && original_func_name.empty()) {
            return absl::OkStatus();
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

          classMap.put(cls.getName(), cls);
        }
        // Foo.class -> [FooTest.class, FooTests.class, FooTestSuite.class, ...]
        Multimap<Class<?>, Class<?>> testClasses = HashMultimap.create();
        LinkedHashSet<Class<?>> candidateClasses = Sets.newLinkedHashSet();
        for (Class<?> cls : classes) {
          Optional<String> testedClassName = TEST_SUFFIX.chop(cls.getName());
          if (testedClassName.isPresent()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/classpath/DefaultModuleRegistry.java

                classpath.add(classpathFile);
                if (classpathFile.isFile() && !classpathJars.containsKey(classpathFile.getName())) {
                    String jarFileName = classpathFile.getName();
                    classpathJars.put(jarFileName, classpathFile);
                    if (gradleInstallation == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/AbstractDirectorySensitivityIntegrationSpec.groovy

                                if (entry.isDirectory()) {
                                    new File(unzipDir, entry.getName()).mkdirs()
                                    continue
                                }
                                File outFile = new File(unzipDir, entry.getName())
                                outFile.withOutputStream { outputStream ->
                                    copy(inputStream, outputStream)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    	}
    	canManage, resourceVersion := d.canManage(gvr, us.GetName(), us.GetNamespace())
    	if !canManage {
    		log.Debugf("skipping %v/%v/%v, already managed", gvr, us.GetName(), us.GetNamespace())
    		return nil
    	}
    	// Ensure our canManage assertion is not stale
    	us.SetResourceVersion(resourceVersion)
    
    	log.Debugf("applying %v", string(j))
    	if err := d.patcher(gvr, us.GetName(), us.GetNamespace(), j); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

          classMap.put(cls.getName(), cls);
        }
        // Foo.class -> [FooTest.class, FooTests.class, FooTestSuite.class, ...]
        Multimap<Class<?>, Class<?>> testClasses = HashMultimap.create();
        LinkedHashSet<Class<?>> candidateClasses = Sets.newLinkedHashSet();
        for (Class<?> cls : classes) {
          Optional<String> testedClassName = TEST_SUFFIX.chop(cls.getName());
          if (testedClassName.isPresent()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top