Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 738 for mapLine (0.15 sec)

  1. src/net/http/mapping.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package http
    
    // A mapping is a collection of key-value pairs where the keys are unique.
    // A zero mapping is empty and ready to use.
    // A mapping tries to pick a representation that makes [mapping.find] most efficient.
    type mapping[K comparable, V any] struct {
    	s []entry[K, V] // for few pairs
    	m map[K]V       // for many pairs
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 17:47:07 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. src/main/resources/suggest_indices/analyzer/mapping-default.json

    {
      "dynamic_templates": [
        {
          "strings": {
            "mapping": {
              "type": "keyword"
            },
            "match": "*",
            "match_mapping_type": "string"
          }
        }
      ],
      "properties": {
        "settingsType": {
          "type": "keyword"
        },
        "fieldName": {
          "type": "keyword"
        },
        "readingAnalyzer": {
          "type": "keyword"
        },
        "readingTermAnalyzer": {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Aug 03 15:54:27 UTC 2018
    - 613 bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess/fa/mapping.txt

    Shinsuke Sugaya <******@****.***> 1653046245 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri May 20 11:30:45 UTC 2022
    - 771 bytes
    - Viewed (0)
  4. 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)
  5. src/cmd/internal/objfile/elf.go

    	for _, p := range f.elf.Progs {
    		if p.Type == elf.PT_LOAD && p.Flags&elf.PF_X != 0 {
    			// The memory mapping that contains the segment
    			// starts at an aligned address. Apparently this
    			// is what pprof expects, as it uses this and the
    			// start address of the mapping to compute PC
    			// delta.
    			return p.Vaddr - p.Vaddr%p.Align, nil
    		}
    	}
    	return 0, fmt.Errorf("unknown load address")
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 20:44:50 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/types/nodename.go

    //     Unfortunately, because Name is part of ObjectMeta, we can't store it as a NodeName at the API level.
    //
    //   - Hostname is the hostname of the local machine (from uname -n).
    //     However, some components allow the user to pass in a --hostname-override flag,
    //     which will override this in most places. In the absence of anything more meaningful,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/compilerapi/constants/ConstantToDependentsMappingMergerTest.groovy

            ConstantToDependentsMapping mapping = merger.merge(newMapping, null, [] as Set)
    
            then:
            mapping.getConstantDependentsForClass("a").accessibleDependentClasses == ["1", "2"] as Set
            mapping.getConstantDependentsForClass("b").accessibleDependentClasses == ["3"] as Set
            mapping.getConstantDependentsForClass("c").accessibleDependentClasses == [] as Set
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  10. okhttp-idna-mapping-table/src/main/kotlin/okhttp3/internal/idn/MappingTables.kt

    internal fun mergeAdjacentRanges(mappings: List<Mapping>): List<Mapping> {
      var index = 0
      val result = mutableListOf<Mapping>()
    
      while (index < mappings.size) {
        val mapping = mappings[index]
        val type = canonicalizeType(mapping.type)
        val mappedTo = mapping.mappedTo
    
        var unionWith: Mapping = mapping
        index++
    
        while (index < mappings.size) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top