Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 572 for addLine (0.23 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_merge_variables_with_execute.cc

                     << execute << "\n");
          var_access_info.per_resource_info.shrink_and_clear();
          return var_access_info;
        }
    
        VLOG(2) << "Adding read op to merge candidates: " << debugString(read_op);
        auto& info = emplace_res.first->getSecond();
        info.execute_input_index = operand.index();
        info.read = read_op;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 17:52:11 UTC 2024
    - 27K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    They also serve as the primary mechanism for organizing build logic.
    
    == Benefits of plugins
    
    Writing many tasks and duplicating configuration blocks in build scripts can get messy.
    Plugins offer several advantages over adding logic directly to the build script:
    
    - *Promotes Reusability*: Reduces the need to duplicate similar logic across projects.
    - *Enhances Modularity*: Allows for a more modular and organized build script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileProcessorTest.groovy

            when:
            modified(dep5)
    
            then:
            checkCompile recompiled: [source2], removed: []
        }
    
        def "detects dependency file change adding dependency cycle"() {
            given:
            initialFiles()
    
            when:
            modified(dep3, [dep1])
    
            then:
            checkCompile recompiled: [source1, source2], removed: []
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:31:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    Some of the types of changes that do not affect the public API and are ignored:
    
    * Changing a method body
    * Changing a comment
    * Adding, removing or changing private methods, fields, or inner classes
    * Adding, removing or changing a resource
    * Changing the name of jars or directories in the classpath
    * Renaming a parameter
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      pass_manager.addNestedPass<mlir::func::FuncOp>(
          mlir::TFL::CreatePostQuantizePass(emit_quant_adaptor_ops));
      // TODO(b/265081639): When added PrepareQuantizeVariablesPass before adding
      // PrepareQuantizePass, an error occurs in certain model. It could fix it by
      // roll-back to run PrepareQuantizeVariablesPass, QuantizePass,
      // PostQuantizePass as suggested in cl/479634700. Need to figure out the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  6. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishBasicIntegTest.groovy

        }
    
        @Issue("https://github.com/gradle/gradle/issues/15009")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.9K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

            testNg.setVerbose(0);
            testNg.setGroups(CollectionUtils.join(",", spec.getIncludeGroups()));
            testNg.setExcludedGroups(CollectionUtils.join(",", spec.getExcludeGroups()));
    
            // Adding custom test listeners before Gradle's listeners.
            // This way, custom listeners are more powerful and, for example, they can change test status.
            for (String listenerClass : spec.getListeners()) {
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/fold_broadcast_pass.cc

      if (!mlir::isa<ElementType>(etype)) {
        return {};
      }
    
      // Special case for folding splats no matter how large.
      // Only covers the case of both attrs being splats; operation-specific cases
      // like adding a zero or multiplying by one are handled elsewhere.
      SplatElementsAttr splatLhs = mlir::dyn_cast<SplatElementsAttr>(lhs);
      SplatElementsAttr splatRhs = mlir::dyn_cast<SplatElementsAttr>(rhs);
      if (splatLhs && splatRhs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenSnapshotResolveIntegrationTest.groovy

                    attribute(DocsType.DOCS_TYPE_ATTRIBUTE, getObjects().named(DocsType, "pom"))
                }
                withFiles {
                    removeAllFiles()
                    addFile("\${context.details.id.name}-\${context.details.id.version}.pom")
                }
            }
        }
    }
    
    """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 39K bytes
    - Viewed (0)
  10. pkg/kubelet/images/image_gc_manager.go

    	for _, image := range images {
    		imageKey := image.ID
    		if !isRuntimeClassInImageCriAPIEnabled {
    			klog.V(5).InfoS("Adding image ID to currentImages", "imageID", imageKey)
    		} else {
    			imageKey = getImageTuple(image.ID, image.Spec.RuntimeHandler)
    			klog.V(5).InfoS("Adding image ID with runtime class to currentImages", "imageKey", imageKey, "runtimeHandler", image.Spec.RuntimeHandler)
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top