Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,008 for locations (0.17 sec)

  1. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultSnapshotHierarchyTest.groovy

            set.invalidate(location.absolutePath, diffListener)
        }
    
        private SnapshotHierarchy snapshot(File... locations) {
            SnapshotHierarchy set = EMPTY
            for (File location : locations) {
                set = set.store(location.absolutePath, location.directory ? snapshotDir(location) : snapshotFile(location), diffListener)
            }
            return set
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/main/java/org/gradle/language/base/plugins/ComponentModelBasePlugin.java

                }
            }
    
            @Finalize
            void applyFallbackSourceConventions(@Each LanguageSourceSet languageSourceSet, ProjectIdentifier projectIdentifier) {
                // Only apply default locations when none explicitly configured
                if (languageSourceSet.getSource().getSourceDirectories().isEmpty()) {
                    File baseDir = projectIdentifier.getProjectDir();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_config.h

      // For dynamic range quantization, ops in blocklist are quantized in weight-
      // only manner.
      absl::flat_hash_set<std::string> ops_blocklist;
    
      // Names of locations to block from quantization. Used in QuantizePass.
      absl::flat_hash_set<std::string> nodes_blocklist;
    
      // Map from custom op code to custom op quantization information.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 13 10:16:19 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. src/debug/dwarf/const.go

    )
    
    func (t Tag) GoString() string {
    	if t <= TagTemplateAlias {
    		return "dwarf.Tag" + t.String()
    	}
    	return "dwarf." + t.String()
    }
    
    // Location expression operators.
    // The debug info encodes value locations like 8(R3)
    // as a sequence of these op codes.
    // This package does not implement full expressions;
    // the opPlusUconst operator is expected by the type parser.
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  5. src/runtime/pprof/proto.go

    	// incomplete symbolization results is to duplicate the mapping
    	// entry (but with different Has* fields values) and use
    	// different entries for symbolized locations and unsymbolized locations.
    	if hasFuncs {
    		b.pb.bool(tagMapping_HasFunctions, true)
    	}
    	b.pb.endMessage(tag, start)
    }
    
    func allFrames(addr uintptr) ([]runtime.Frame, symbolizeFlag) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  6. apache-maven/src/assembly/maven/conf/settings.xml

       | This is a list of profiles which can be activated in a variety of ways, and which can modify
       | the build process. Profiles provided in the settings.xml are intended to provide local machine-
       | specific paths and repository locations which allow the build to work in the local environment.
       |
       | For example, if you have an integration testing plugin - like cactus - that needs to know where
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:06:01 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/swift/plugins/SwiftLibraryPluginTest.groovy

            def link = project.tasks.linkDebug
            link.linkedFile.get().asFile == projectDir.file("build/lib/main/debug/" + OperatingSystem.current().getSharedLibraryName("Lib"))
        }
    
        def "output locations reflects changes to buildDir"() {
            given:
            project.pluginManager.apply(SwiftLibraryPlugin)
            project.evaluate()
    
            when:
            project.buildDir = "output"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/shape_inference.cc

      shape_refiner.set_require_shape_inference_fns(false);
      // TODO(dlibenzi): Verify if it is worth trying to infer shaped within
      // functions. Some functions can be called at multiple locations with
      // difference shapes, which will trigger a shape inference based on the
      // arguments passed at the first call.
      // shape_refiner.set_function_library_for_shape_inference(fnlib_def);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/remat/rematerializer.h

      struct RematSpec {
        int begin;
        int end;
        int insert;
      };
    
      // Gives the peak memory location and size after inserting operations
      // according to `remat` (but doesn't actually insert them.)  Ties are broken
      // towards later locations. `remat` must be valid (see above).
      MemSpec GetPeakMemory(const RematSpec& remat = {}) const;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 14 20:57:44 UTC 2023
    - 12K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    	// by providing weights in LocalityLbEndpoints via load_balancing_weight.
    	// By setting weights across different localities, it can allow
    	// Envoy to do weighted load balancing across different zones and geographical locations.
    	for _, localityWeightSetting := range distribute {
    		if localityWeightSetting != nil &&
    			util.LocalityMatch(locality, localityWeightSetting.From) {
    			misMatched := sets.Set[int]{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
Back to top