Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for filemap (0.16 sec)

  1. internal/config/config.go

    			tgtName := strings.TrimPrefix(k, envVarPrefix)
    			if tgtName != "" {
    				if v, ok := filterMap[k]; ok {
    					if strings.HasPrefix(envVarPrefix, v) {
    						filterMap[k] = envVarPrefix
    					}
    				} else {
    					filterMap[k] = envVarPrefix
    				}
    			}
    		}
    	}
    
    	for k, v := range filterMap {
    		seen.Add(strings.TrimPrefix(k, v))
    	}
    
    	seen.Remove(Default)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  2. src/net/http/fs_test.go

    	dirMod := time.Unix(123, 0).UTC()
    	fileMod := time.Unix(1000000000, 0).UTC()
    	fs := fakeFS{
    		"/": &fakeFileInfo{
    			dir:     true,
    			modtime: dirMod,
    			ents: []*fakeFileInfo{
    				{
    					basename: "b",
    					modtime:  fileMod,
    					contents: contents,
    				},
    				{
    					basename: "a",
    					modtime:  fileMod,
    					contents: contents,
    				},
    			},
    		},
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  3. src/runtime/symtab.go

    	funcnameOffset uintptr // offset to the funcnametab variable from pcHeader
    	cuOffset       uintptr // offset to the cutab variable from pcHeader
    	filetabOffset  uintptr // offset to the filetab variable from pcHeader
    	pctabOffset    uintptr // offset to the pctab variable from pcHeader
    	pclnOffset     uintptr // offset to the pclntab variable from pcHeader
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    				killMap := make(map[kubecontainer.ContainerID]containerToKillInfo)
    				killMap[kcs.ID] = containerToKillInfo{
    					container: &pod.Spec.Containers[0],
    					name:      pod.Spec.Containers[0].Name,
    				}
    				pa := podActions{
    					SandboxID:          podStatus.SandboxStatuses[0].Id,
    					ContainersToStart:  []int{0},
    					ContainersToKill:   killMap,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  5. pkg/scheduler/schedule_one.go

    			statuses[failedNodeName] = framework.NewStatus(framework.UnschedulableAndUnresolvable, aggregatedReasons...)
    		}
    
    		for failedNodeName, failedMsg := range failedMap {
    			if _, found := failedAndUnresolvableMap[failedNodeName]; found {
    				// failedAndUnresolvableMap takes precedence over failedMap
    				// note that this only happens if the extender returns the node in both maps
    				continue
    			}
    			if _, found := statuses[failedNodeName]; !found {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  6. istioctl/pkg/precheck/precheck.go

    }
    
    func (o clusterOrigin) Namespace() resource.Namespace {
    	return ""
    }
    
    func (o clusterOrigin) Reference() resource.Reference {
    	return nil
    }
    
    func (o clusterOrigin) FieldMap() map[string]int {
    	return make(map[string]int)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. src/encoding/json/decode_test.go

    	String  string
    	PString *string
    
    	Map   map[string]Small
    	MapP  map[string]*Small
    	PMap  *map[string]Small
    	PMapP *map[string]*Small
    
    	EmptyMap map[string]Small
    	NilMap   map[string]Small
    
    	Slice   []Small
    	SliceP  []*Small
    	PSlice  *[]Small
    	PSliceP *[]*Small
    
    	EmptySlice []Small
    	NilSlice   []Small
    
    	StringSlice []string
    	ByteSlice   []byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  8. pkg/scheduler/schedule_one_test.go

    	return func(_ context.Context, _ runtime.Object, _ framework.Handle) (framework.Plugin, error) {
    		return &falseMapPlugin{}, nil
    	}
    }
    
    func (pl *falseMapPlugin) Name() string {
    	return "FalseMap"
    }
    
    func (pl *falseMapPlugin) Score(_ context.Context, _ *framework.CycleState, _ *v1.Pod, _ string) (int64, *framework.Status) {
    	return 0, framework.AsStatus(errPrioritize)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	var tag_buff [8]byte
    	DecodeData(tag_buff[:], 8, tag)
    	return Setxattr(path, "filetag", tag_buff[:], XATTR_REPLACE)
    }
    
    func impl_Chtag(path string, ccsid uint64, textbit uint64) error {
    	tag := ccsid<<16 | textbit<<15
    	var tag_buff [4]byte
    	DecodeData(tag_buff[:], 4, tag)
    	return Setxattr(path, "system.filetag", tag_buff[:], XATTR_REPLACE)
    }
    
    // End of Chtag
    
    // Nanosleep
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.funcnametab", 0), sect)
    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.cutab", 0), sect)
    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.filetab", 0), sect)
    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.pctab", 0), sect)
    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.functab", 0), sect)
    	ldr.SetSymSect(ldr.LookupOrCreateSym("runtime.epclntab", 0), sect)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top