Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 568 for pruned (0.15 sec)

  1. src/cmd/vendor/github.com/google/pprof/profile/prune.go

    					break
    				}
    			}
    		}
    
    		if i >= 0 {
    			// Found matching entry to prune.
    			pruneBeneath[loc.ID] = true
    
    			// Remove the matching location.
    			if i == len(loc.Line)-1 {
    				// Matched the top entry: prune the whole location.
    				prune[loc.ID] = true
    			} else {
    				loc.Line = loc.Line[i+1:]
    			}
    		}
    	}
    
    	// Prune locs from each Sample
    	for _, sample := range p.Sample {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.cc

            if (llvm::isa<ResourceEffects::MustExecute>(effect.getResource()))
              // We have this fake resource to avoid that certain ops are considered
              // dead or get pruned, ignore it for side effect analysis.
              continue;
    
            // Add side effects for op resource ID. If `op` does not have
            // `GetResourceInstanceInterface`, then all op instances will keep an
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 41.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

    // `tf_device.cluster` and associated terminator. Results that have no uses
    // outside of the cluster (i.e. results of ops in the cluster are only consumed
    // by other ops in the cluster) are pruned.
    llvm::SmallVector<Value, 8> CollectClusterResults(
        Block* block, const OpSetVector& cluster_ops) {
      llvm::SmallVector<Value, 8> results;
    
      for (Operation* op : cluster_ops) {
    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. src/internal/profile/prune.go

    					}
    				}
    			}
    		}
    
    		if i >= 0 {
    			// Found matching entry to prune.
    			pruneBeneath[loc.ID] = true
    
    			// Remove the matching location.
    			if i == len(loc.Line)-1 {
    				// Matched the top entry: prune the whole location.
    				prune[loc.ID] = true
    			} else {
    				loc.Line = loc.Line[i+1:]
    			}
    		}
    	}
    
    	// Prune locs from each Sample
    	for _, sample := range p.Sample {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 17 19:35:56 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  5. src/main/resources/fess_config.properties

    crawler.document.html.lang.xpath=//HTML/@lang
    crawler.document.html.digest.xpath=//META[@name='description']/@content
    crawler.document.html.canonical.xpath=//LINK[@rel='canonical'][1]/@href
    crawler.document.html.pruned.tags=noscript,script,style,header,footer,aside,nav,a[rel=nofollow]
    crawler.document.html.max.digest.length=120
    crawler.document.html.default.lang=
    crawler.document.html.default.include.index.patterns=
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/import.go

    			// However, in order to actually compile it we need to know what
    			// Go language version to use, which requires its go.mod file.
    			//
    			// If the module graph is pruned and this is a test-only dependency
    			// of a package in "all", we didn't necessarily load that file
    			// when we read the module graph, so do it now to be sure.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    			},
    		},
    		Components: &spec3.Components{
    			Schemas: staticOpenAPISpec,
    		},
    	}
    
    	specs := []*spec3.OpenAPI{staticSpecV3}
    	for _, v := range crd.Spec.Versions {
    		// Defaults are not pruned here, but before being served.
    		// See flag description in builder.go for flag usage
    		s, err := builder.BuildOpenAPIV3(crd, v.Name, builder.Options{})
    		if err != nil {
    			return nil, err
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. tensorflow/c/eager/tape.h

      //
      // Executes the backward function in order to trace its gradient, which will
      // waste computation if executing eagerly (when graph building the unneeded
      // computation is pruned). Temporarily sets `backward_tape` so that
      // Accumulate will forward op executions to the tape while the backward
      // function is running; this effectively adds the backward tape to the active
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      // other end of the incoming edges. Since we're proceding in a valid
      // topological order, all lookups of these tokens in
      // (*control_nodes)[incoming] should be valid. However, we might (in theory)
      // have pruned an operator above, so we only emit values that have been
      // populated.
      llvm::SmallVector<Value, 2> control_tokens;
      for (const int incoming : maybe_control_node->second.incoming) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/object_count_tracker.go

    	wait.PollUntil(
    		pruneInterval,
    		func() (bool, error) {
    			// always prune at every pruneInterval
    			return false, t.prune(pruneInterval)
    		}, stopCh)
    	klog.InfoS("StorageObjectCountTracker pruner is exiting")
    }
    
    func (t *objectCountTracker) prune(threshold time.Duration) error {
    	oldestLastUpdatedAtAllowed := t.clock.Now().Add(-threshold)
    
    	// lock for writing
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 16 09:12:00 UTC 2022
    - 5K bytes
    - Viewed (0)
Back to top