Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 603 for Region (0.14 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/ResolutionFailureHandler.java

        public ResolutionFailureHandler(ResolutionFailureDescriberRegistry failureDescriberRegistry) {
            this.defaultFailureDescribers = failureDescriberRegistry;
        }
    
        // region Artifact Variant Selection Failures
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/stack_ops_decomposition.cc

                 << result.getResultNumber()
                 << ", resource type results are expected to have been "
                    "canonicalized away for region based control flow ops";
        }
      }
      for (Region& region : op.getRegions()) {
        if (failed(DecomposeStackOpsInternal(&region.front(), module,
                                             data_var_to_size_var,
                                             decomposed_partitioned_call_callees)))
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

      // regions attached to the op's in the block.
      if (metadata_map.empty()) {
        for (Operation& op : *block) {
          for (Region& region : op.getRegions()) {
            if (!llvm::hasSingleElement(region))
              return op.emitOpError("Expected single block region");
            if (failed(FormClustersInBlock(&region.front(), side_effect_analysis,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

        OptionalAttr<DictArrayAttr>:$res_attrs
      );
    
      let results = (outs);
    
      // When the regions is empty, the tfr.func is an external function and used
      // to model the element type constraints of the tf op. Otherwise, there is one
      // region containing the composition.
      let regions = (region VariadicRegion<AnyRegion>:$body);
    
      let skipDefaultBuilders = 1;
    
      let builders = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. src/cmd/trace/pprof.go

    		})
    		var lastTimestamp trace.Time
    		var n int
    		// Select only the outermost regions.
    		for _, i := range intervals {
    			if lastTimestamp <= i.start {
    				intervals[n] = i // new non-overlapping region starts.
    				lastTimestamp = i.end
    				n++
    			}
    			// Otherwise, skip because this region overlaps with a previous region.
    		}
    		gToIntervals[g] = intervals[:n]
    	}
    	return gToIntervals, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. pkg/config/validation/agent/validation_test.go

    		{
    			name: "invalid LocalityLoadBalancerSetting specify both failoverPriority and region in failover",
    			in: &networking.LocalityLoadBalancerSetting{
    				Failover: []*networking.LocalityLoadBalancerSetting_Failover{
    					{
    						From: "region1",
    						To:   "region2",
    					},
    				},
    				FailoverPriority: []string{"topology.kubernetes.io/region"},
    			},
    			outlier: &networking.OutlierDetection{},
    			err:     true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

     * different types of failures.
     */
    class ResolutionFailureHandlerIntegrationTest extends AbstractIntegrationSpec {
        // region resolution failures
        // region Graph Variant failures
        def "demonstrate ambiguous graph variant selection failure with single disambiguating value for project"() {
            ambiguousGraphVariantForProjectWithSingleDisambiguatingAttribute.prepare()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/passes.h

    // Sinks `tf.Const` operations in the ClusterOp region using them. This is
    // performed in order to limit the number of values implicitly captured in this
    // region before outlining.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateClusterConstantSinkingPass(
        llvm::function_ref<bool(tf_device::ClusterOp, ElementsAttr)> filter = {});
    
    // Creates a pass that outlines regions of tf_device.cluster operations.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 31.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/cli.go

    	// Contention profile options
    	flagTotalDelay := flag.Bool("total_delay", false, "Display total delay at each region")
    	flagContentions := flag.Bool("contentions", false, "Display number of delays at each region")
    	flagMeanDelay := flag.Bool("mean_delay", false, "Display mean delay at each region")
    	flagTools := flag.String("tools", os.Getenv("PPROF_TOOLS"), "Path for object tool pathnames")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

      unformat_operands.append(replicated_block_args.begin(),
                               replicated_block_args.end());
      unformat_operands.append(packed_block_args.begin(), packed_block_args.end());
      unformat_operands.push_back(state);
    
      // Insert the default key as the second last operand.
      unformat_operands.insert(
          unformat_operands.begin() + unformat_operands.size() - 1,
          default_state_key.getResult());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top