Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,564 for remapping (0.26 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. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    <2> Remaps the path of the extracting files into the destination directory by dropping the `libs` segment from the file path
    <3> Ignores the empty directories resulting from the remapping, see Caution note below
    
    [CAUTION]
    ====
    You can not change the destination path of empty directories with this technique.
    You can learn more in https://github.com/gradle/gradle/issues/2940[this issue].
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K 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. src/main/resources/fess_indices/fess/mapping.txt

    Shinsuke Sugaya <******@****.***> 1690423667 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 27 02:07:47 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  5. test/recover4.go

    // return the current value of n. If n is not being flushed to memory
    // after each modification, the result will be a stale value of n.
    //
    // The test is set up by mmapping a 64 kB block of memory and then
    // unmapping a 16 kB hole in the middle of it. Running memcopy
    // on the resulting slice will fault when it reaches the hole.
    
    package main
    
    import (
    	"log"
    	"runtime/debug"
    	"syscall"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess/ja/mapping.txt

    Shinsuke Sugaya <******@****.***> 1690423667 +0900
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 27 02:07:47 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/meta/priority.go

    			}
    			priorities = append(priorities, gv.WithKind(AnyKind))
    		}
    		priorities = append(priorities, m.KindPriority...)
    	}
    
    	remaining := append([]*RESTMapping{}, mappings...)
    	for _, pattern := range priorities {
    		var matching []*RESTMapping
    		for _, m := range remaining {
    			if kindMatches(pattern, m.GroupVersionKind) {
    				matching = append(matching, m)
    			}
    		}
    
    		switch len(matching) {
    		case 0:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/resource/selector.go

    type Selector struct {
    	Client        RESTClient
    	Mapping       *meta.RESTMapping
    	Namespace     string
    	LabelSelector string
    	FieldSelector string
    	LimitChunks   int64
    }
    
    // NewSelector creates a resource selector which hides details of getting items by their label selector.
    func NewSelector(client RESTClient, mapping *meta.RESTMapping, namespace, labelSelector, fieldSelector string, limitChunks int64) *Selector {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 12 15:08:01 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  9. istioctl/pkg/cli/kubectl_factory.go

    	return f.full.NewBuilder()
    }
    
    func (f Factory) ClientForMapping(mapping *meta.RESTMapping) (resource.RESTClient, error) {
    	return f.full.ClientForMapping(mapping)
    }
    
    func (f Factory) UnstructuredClientForMapping(mapping *meta.RESTMapping) (resource.RESTClient, error) {
    	return f.full.UnstructuredClientForMapping(mapping)
    }
    
    func (f Factory) Validator(validationDirective string) (validation.Schema, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 09 18:17:49 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/resource/mapper.go

    		if err != nil {
    			return nil, err
    		}
    		mapping, err := restMapper.RESTMapping(gvk.GroupKind(), gvk.Version)
    		if err != nil {
    			return nil, fmt.Errorf("unable to recognize %v", err)
    		}
    		ret.Mapping = mapping
    
    		client, err := m.clientFn(gvk.GroupVersion())
    		if err != nil {
    			return nil, fmt.Errorf("unable to connect to a server to handle %q: %v", mapping.Resource, err)
    		}
    		ret.Client = client
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 03 10:53:18 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top