Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 275 for munmap (0.14 sec)

  1. pkg/bootstrap/instance.go

    func newTemplate(templateFilePath string) (*template.Template, error) {
    	cfgTmpl, err := os.ReadFile(templateFilePath)
    	if err != nil {
    		return nil, err
    	}
    
    	funcMap := template.FuncMap{
    		"toJSON": toJSON,
    	}
    	return template.New("bootstrap").Funcs(funcMap).Funcs(sprig.GenericFuncMap()).Parse(string(cfgTmpl))
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. pkg/volume/util/volumepathhandler/volume_path_handler.go

    func (v VolumePathHandler) UnmapDevice(mapPath string, linkName string, bindMount bool) error {
    	if len(mapPath) == 0 {
    		return fmt.Errorf("failed to unmap device from map path. mapPath is empty")
    	}
    	klog.V(5).Infof("UnmapDevice: mapPath %s", mapPath)
    	klog.V(5).Infof("UnmapDevice: linkName %s", linkName)
    
    	if bindMount {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  3. pilot/pkg/util/network/ip.go

    				ip = v.IP
    			default:
    				continue
    			}
    			ipAddr, okay := netip.AddrFromSlice(ip)
    			if !okay {
    				continue
    			}
    			// unwrap the IPv4-mapped IPv6 address
    			unwrapAddr := ipAddr.Unmap()
    			if !unwrapAddr.IsValid() || unwrapAddr.IsLoopback() || unwrapAddr.IsLinkLocalUnicast() || unwrapAddr.IsLinkLocalMulticast() {
    				continue
    			}
    			if unwrapAddr.IsUnspecified() {
    				ok = false
    				continue
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Dec 21 21:27:21 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/AbstractNavigableMap.java

        return Maps.keyOrNull(higherEntry(key));
      }
    
      abstract Iterator<Entry<K, V>> descendingEntryIterator();
    
      @Override
      public SortedMap<K, V> subMap(@ParametricNullness K fromKey, @ParametricNullness K toKey) {
        return subMap(fromKey, true, toKey, false);
      }
    
      @Override
      public SortedMap<K, V> headMap(@ParametricNullness K toKey) {
        return headMap(toKey, false);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 15 18:11:44 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/AbstractNavigableMap.java

        return Maps.keyOrNull(higherEntry(key));
      }
    
      abstract Iterator<Entry<K, V>> descendingEntryIterator();
    
      @Override
      public SortedMap<K, V> subMap(@ParametricNullness K fromKey, @ParametricNullness K toKey) {
        return subMap(fromKey, true, toKey, false);
      }
    
      @Override
      public SortedMap<K, V> headMap(@ParametricNullness K toKey) {
        return headMap(toKey, false);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jun 15 18:11:44 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  6. src/sort/gen_sort_variants.go

    	//      `j` of the value `name`.
    	Funcs template.FuncMap
    }
    
    var (
    	traditionalVariants = []Variant{
    		Variant{
    			Name:       "interface",
    			Path:       "zsortinterface.go",
    			Package:    "sort",
    			Imports:    "",
    			FuncSuffix: "",
    			TypeParam:  "",
    			ExtraParam: "",
    			ExtraArg:   "",
    			DataType:   "Interface",
    			Funcs: template.FuncMap{
    				"Less": func(name, i, j string) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  7. src/net/netip/netip.go

    // IPv6 addresses.
    func (ip Addr) Is6() bool {
    	return ip.z != z0 && ip.z != z4
    }
    
    // Unmap returns ip with any IPv4-mapped IPv6 address prefix removed.
    //
    // That is, if ip is an IPv6 address wrapping an IPv4 address, it
    // returns the wrapped IPv4 address. Otherwise it returns ip unmodified.
    func (ip Addr) Unmap() Addr {
    	if ip.Is4In6() {
    		ip.z = z4
    	}
    	return ip
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

       * This method returns a {@code ImmutableSortedMap}, consisting of the entries whose keys ranges
       * from {@code fromKey}, inclusive, to {@code toKey}, exclusive.
       *
       * <p>The {@link SortedMap#subMap} documentation states that a submap of a submap throws an {@link
       * IllegalArgumentException} if passed a {@code fromKey} less than an earlier {@code fromKey}.
       * However, this method doesn't throw an exception in that situation, but instead keeps the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/StandardRowSortedTable.java

              .rowMap();
        }
    
        @Override
        public SortedMap<R, Map<C, V>> subMap(R fromKey, R toKey) {
          checkNotNull(fromKey);
          checkNotNull(toKey);
          return new StandardRowSortedTable<R, C, V>(sortedBackingMap().subMap(fromKey, toKey), factory)
              .rowMap();
        }
    
        @Override
        public SortedMap<R, Map<C, V>> tailMap(R fromKey) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jul 15 15:41:16 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  10. cmd/dependencyverifier/dependencyverifier.go

    					mainModules[first] = true
    					mainModulesList = append(mainModulesList, first)
    				}
    			}
    			modMap[first] = append(modMap[first], second)
    		} else {
    			// skip invalid line
    			log.Printf("!!!invalid line in mod.graph: %s", line)
    			continue
    		}
    	}
    	return mainModulesList, modMap
    }
    
    // difference returns a-b and b-a as sorted lists
    func difference(a, b []string) ([]string, []string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 07 01:48:30 UTC 2023
    - 12.7K bytes
    - Viewed (0)
Back to top