Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 412 for patched (0.13 sec)

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

    func (p *Profile) ShowFrom(showFrom *regexp.Regexp) (matched bool) {
    	if showFrom == nil {
    		return false
    	}
    	// showFromLocs stores location IDs that matched ShowFrom.
    	showFromLocs := make(map[uint64]bool)
    	// Apply to locations.
    	for _, loc := range p.Location {
    		if filterShowFromLocation(loc, showFrom) {
    			showFromLocs[loc.ID] = true
    			matched = true
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/bridge_logger_test.cc

                                         &mlir_module_with_add));
    
      std::unique_ptr<mlir::Pass> shape_inference_pass =
          mlir::TF::CreateTFShapeInferencePass();
    
      // String filter is matched but pass filter is not.
      setenv("MLIR_BRIDGE_LOG_STRING_FILTER",
             "(tensor<3x4x5xf32>, tensor<3x4x5xf32>) -> tensor<3x4x5xf32>", 1);
      setenv("MLIR_BRIDGE_LOG_PASS_FILTER", "ensorFlowShapeInferencePass", 1);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 04:50:13 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/InclusiveRepositoryContentDescriptor.java

         * For example, if the prefix is {@code org.gradle}, then {@code org.gradle} is matched as a group,
         * and {@code org.gradle.foo} and {@code org.gradle.foo.bar} are matched as subgroups. {@code org.gradlefoo}
         * is not matched as a subgroup.
         * </p>
         *
         * @param groupPrefix the group prefix to include
         * @since 8.1
         */
        @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 10 23:09:47 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. src/text/template/helper.go

    // the files identified by the pattern. The files are matched according to the
    // semantics of [filepath.Match], and the pattern must match at least one file.
    // The returned template will have the [filepath.Base] name and (parsed)
    // contents of the first file matched by the pattern. ParseGlob is equivalent to
    // calling [ParseFiles] with the list of files matched by the pattern.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:54:08 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. pkg/filewatcher/filewatcher.go

    type fileWatcher struct {
    	mu sync.RWMutex
    
    	// The watcher maintain a map of workers,
    	// keyed by watched dir (parent dir of watched files).
    	workers map[string]*workerState
    
    	funcs *patchTable
    }
    
    type workerState struct {
    	worker *worker
    	count  int
    }
    
    // functions that can be replaced in a test setting
    type patchTable struct {
    	newWatcher     func() (*fsnotify.Watcher, error)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_downgrade_missing.txt

    # not yet present in that module should report the version mismatch
    # rather than a "matched no packages" warning.
    
    ! go get example.net/pkgadded@v1.1.0 example.net/pkgadded/subpkg/...
    stderr '^go: example.net/pkgadded@v1.1.0 conflicts with example.net/pkgadded/subpkg/...@upgrade \(v1.2.0\)$'
    ! stderr 'matched no packages'
    cmp go.mod.orig go.mod
    
    
    # A wildcard pattern should match the pattern with that path.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. src/crypto/rand/rand.go

    // On return, n == len(b) if and only if err == nil.
    func Read(b []byte) (n int, err error) {
    	return io.ReadFull(Reader, b)
    }
    
    // batched returns a function that calls f to populate a []byte by chunking it
    // into subslices of, at most, readMax bytes.
    func batched(f func([]byte) error, readMax int) func([]byte) error {
    	return func(out []byte) error {
    		for len(out) > 0 {
    			read := len(out)
    			if read > readMax {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:02:21 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/vfs/BuildLifecycleAwareVirtualFileSystem.java

         *
         * Only locations within watchable hierarchies will be watched for changes.
         * This method is first called for the root directory of the root project.
         * It is also called for the root directories of included builds, and all other nested builds.
         */
        void registerWatchableHierarchy(File rootDirectoryForWatching);
    
        /**
         * Returns if anything is being watched.
         */
        boolean isWatchingAnyLocations();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. pkg/test/util/file/file.go

    	if err != nil {
    		return nil, err
    	}
    	res := []string{}
    	for _, d := range dir {
    		matched := len(extensions) == 0 // If none are set, match anything
    		for _, ext := range extensions {
    			if filepath.Ext(d.Name()) == ext {
    				matched = true
    				break
    			}
    		}
    		if matched {
    			res = append(res, filepath.Join(filePath, d.Name()))
    		}
    	}
    	return res, nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 17 02:22:22 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java/toolchain-filters/tests/toolchainFiltersWithoutCC.sample.conf

        args: "build -DtestToolchain=knownVendor"
    }, {
        executable: gradle
        args: "build -DtestToolchain=matchingVendor"
        expect-failure: true  # The matching vendor uses a dummy vendor string that is never matched
        expected-output-file: matchingVendorWithoutCC.out
        allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 346 bytes
    - Viewed (0)
Back to top