Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 773 for mapLine (0.17 sec)

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

    		key.buildIDOrFile = m.File
    	default:
    		// A mapping containing neither build ID nor file name is a fake mapping. A
    		// key with empty buildIDOrFile is used for fake mappings so that they are
    		// treated as the same mapping during merging.
    	}
    	return key
    }
    
    type mappingKey struct {
    	size, offset  uint64
    	buildIDOrFile string
    }
    
    func (pm *profileMerger) mapLine(src Line) Line {
    	ln := Line{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/configuration/ImportsReader.java

         * machine consumption, use the {@link #getSimpleNameToFullClassNamesMapping()} method, as it
         * provides a direct mapping from each simple name to the qualified name of the class to use.
         */
        String[] getImportPackages();
    
        /**
         * Returns a mapping from simple to qualified class name, derived from
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. testing/performance/docs/performance-bisect.md

    //            }
            }
            baselineVersions
        }
    ...
    ```
    
    ## Perform the search
    
    While doing the search no other activity should be done on the machine. Therefore, it
    is best to have a dedicated machine running the search, e.g., using the CI infrastructure.
    
    In order to check if the test passes for the current revision you can use [check-rev.sh](check-rev.sh).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/cache/internal/CacheVersionMappingTest.groovy

            mapping.getVersionUsedBy(version("1.0-rc-3")).get() == CacheVersion.of(1)
            mapping.getVersionUsedBy(version("1.0")).get() == CacheVersion.of(1)
            mapping.getVersionUsedBy(version("1.1-milestone-1")).get() == CacheVersion.of(1)
            mapping.getVersionUsedBy(version("1.1-rc-1")).get() == CacheVersion.of(2)
            mapping.getVersionUsedBy(version("2.0")).get() == CacheVersion.of(2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:40:24 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/cache/internal/UnusedVersionsCacheCleanupTest.groovy

            temporaryFolder.file("$CACHE_NAME-$version")
        }
    
        CacheVersionMapping toCacheVersionMapping(List<List<?>> mapping, CacheVersion parentCacheVersion) {
            assert mapping[0][0] == 1
            def builder = CacheVersionMapping.introducedIn(mapping[0][1])
            mapping.tail().each {
                builder.changedTo(it[0], it[1])
            }
            return builder.build(parentCacheVersion)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:40:24 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/ProviderConventionMappingIntegrationTest.groovy

        private void expectDocumentedFailure() {
            failure.assertHasDocumentedCause('Using internal convention mapping with a Provider backed property. Consult the upgrading guide for further information: https://docs.gradle.org/current/userguide/upgrading_version_7.html#convention_mapping')
        }
    
        def "emits deprecation warning when convention mapping is used with Provider"() {
            buildFile << """
                abstract class MyTask extends DefaultTask {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 12:27:37 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    		}
    	}
    
    	// Map into memory.
    	var mapping mmap.Data
    	if existing != nil {
    		mapping, err = memmap(f, existing.mapping)
    	} else {
    		mapping, err = memmap(f, nil)
    	}
    	if err != nil {
    		return nil, err
    	}
    	m.mapping = &mapping
    	if !bytes.HasPrefix(m.mapping.Data, hdr) {
    		return nil, fmt.Errorf("counter: header mismatch")
    	}
    	m.hdrLen = uint32(len(hdr))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. src/debug/elf/elf.go

    // Machine is found in Header.Machine.
    type Machine uint16
    
    const (
    	EM_NONE          Machine = 0   /* Unknown machine. */
    	EM_M32           Machine = 1   /* AT&T WE32100. */
    	EM_SPARC         Machine = 2   /* Sun SPARC. */
    	EM_386           Machine = 3   /* Intel i386. */
    	EM_68K           Machine = 4   /* Motorola 68000. */
    	EM_88K           Machine = 5   /* Motorola 88000. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    			continue
    		}
    		// Swap what we guess is main to position 0.
    		p.Mapping[0], p.Mapping[i] = p.Mapping[i], p.Mapping[0]
    		break
    	}
    
    	// Keep the mapping IDs neatly sorted
    	for i, m := range p.Mapping {
    		m.ID = uint64(i + 1)
    	}
    }
    
    // adjacent returns whether two mapping entries represent the same
    // mapping that has been split into two. Check that their addresses are adjacent,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtMetadataCalculator.kt

         *
         * @param mapping map containing the light elements ([KtLightElement]) for each callable declaration in this class.
         */
        public fun KtClassOrObject.calculateMetadata(mapping: Multimap<KtElement, PsiElement>): Metadata =
            withValidityAssertion { analysisSession.metadataCalculator.calculateMetadata(this, mapping) }
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top