Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 275 for munmap (0.1 sec)

  1. platforms/documentation/docs/src/docs/css/javadoc.css

    .two-column-summary {
        display: grid;
        grid-template-columns: minmax(25%, max-content) minmax(25%, auto);
    }
    .three-column-summary {
        display: grid;
        grid-template-columns: minmax(15%, max-content) minmax(20%, max-content) minmax(20%, auto);
    }
    .three-column-release-summary {
        display: grid;
        grid-template-columns: minmax(40%, max-content) minmax(10%, max-content) minmax(40%, auto);
    }
    .four-column-summary {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 14:25:49 UTC 2024
    - 50.5K bytes
    - Viewed (0)
  2. src/text/template/template.go

    // It is legal to overwrite elements of the map. The return value is the template,
    // so calls can be chained.
    func (t *Template) Funcs(funcMap FuncMap) *Template {
    	t.init()
    	t.muFuncs.Lock()
    	defer t.muFuncs.Unlock()
    	addValueFuncs(t.execFuncs, funcMap)
    	addFuncs(t.parseFuncs, funcMap)
    	return t
    }
    
    // Lookup returns the template with the given name that is associated with t.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ForwardingNavigableMap.java

        return descendingMap().navigableKeySet();
      }
    
      /**
       * A sensible definition of {@link #subMap(Object, Object)} in terms of {@link #subMap(Object,
       * boolean, Object, boolean)}. If you override {@code subMap(K, boolean, K, boolean)}, you may
       * wish to override {@code subMap} to forward to this implementation.
       */
      @Override
      protected SortedMap<K, V> standardSubMap(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 15 18:11:44 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ForwardingNavigableMap.java

        return descendingMap().navigableKeySet();
      }
    
      /**
       * A sensible definition of {@link #subMap(Object, Object)} in terms of {@link #subMap(Object,
       * boolean, Object, boolean)}. If you override {@code subMap(K, boolean, K, boolean)}, you may
       * wish to override {@code subMap} to forward to this implementation.
       */
      @Override
      protected SortedMap<K, V> standardSubMap(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 15 18:11:44 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  5. src/text/template/funcs.go

    }
    
    // createValueFuncs turns a FuncMap into a map[string]reflect.Value
    func createValueFuncs(funcMap FuncMap) map[string]reflect.Value {
    	m := make(map[string]reflect.Value)
    	addValueFuncs(m, funcMap)
    	return m
    }
    
    // addValueFuncs adds to values the functions in funcs, converting them to reflect.Values.
    func addValueFuncs(out map[string]reflect.Value, in FuncMap) {
    	for name, fn := range in {
    		if !goodName(name) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/SafeTreeMap.java

      }
    
      @Override
      public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) {
        return new SafeTreeMap<>(
            delegate.subMap(checkValid(fromKey), fromInclusive, checkValid(toKey), toInclusive));
      }
    
      @Override
      public SortedMap<K, V> subMap(K fromKey, K toKey) {
        return subMap(fromKey, true, toKey, false);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 20 17:00:05 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/conc_alloc.go

    	rap.ascendingIndices[i], rap.ascendingIndices[j] = rap.ascendingIndices[j], rap.ascendingIndices[i]
    }
    
    // minMax records the minimum and maximum value seen while scanning a set of numbers
    type minMax struct {
    	min float64
    	max float64
    }
    
    // note scans one more number
    func (mm *minMax) note(x float64) {
    	mm.min = math.Min(mm.min, x)
    	mm.max = math.Max(mm.max, x)
    }
    
    const MinTarget = 0.001
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  8. guava-testlib/src/com/google/common/collect/testing/NavigableMapTestSuiteBuilder.java

          } else if (from == Bound.EXCLUSIVE && to == Bound.EXCLUSIVE) {
            return map.subMap(firstExclusive, false, lastExclusive, false);
          } else if (from == Bound.EXCLUSIVE && to == Bound.INCLUSIVE) {
            return map.subMap(firstExclusive, false, lastInclusive, true);
          } else if (from == Bound.INCLUSIVE && to == Bound.INCLUSIVE) {
            return map.subMap(firstInclusive, true, lastInclusive, true);
          } else {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. src/runtime/race/race_darwin_amd64.go

    //go:cgo_import_dynamic __bzero __bzero ""
    //go:cgo_import_dynamic __error __error ""
    //go:cgo_import_dynamic __fork __fork ""
    //go:cgo_import_dynamic __mmap __mmap ""
    //go:cgo_import_dynamic __munmap __munmap ""
    //go:cgo_import_dynamic __stack_chk_fail __stack_chk_fail ""
    //go:cgo_import_dynamic __stack_chk_guard __stack_chk_guard ""
    //go:cgo_import_dynamic _dyld_get_image_header _dyld_get_image_header ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:29:22 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. src/runtime/race/race_darwin_arm64.go

    //go:cgo_import_dynamic _NSGetExecutablePath _NSGetExecutablePath ""
    //go:cgo_import_dynamic __error __error ""
    //go:cgo_import_dynamic __fork __fork ""
    //go:cgo_import_dynamic __mmap __mmap ""
    //go:cgo_import_dynamic __munmap __munmap ""
    //go:cgo_import_dynamic __stack_chk_fail __stack_chk_fail ""
    //go:cgo_import_dynamic __stack_chk_guard __stack_chk_guard ""
    //go:cgo_import_dynamic _dyld_get_image_header _dyld_get_image_header ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:29:22 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top