Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 57 for filemap (0.39 sec)

  1. pkg/config/analysis/local/context.go

    	fmstring := cfg.Meta.Annotations[file.FieldMapKey]
    	var out map[string]int
    	if fmstring != "" {
    		err := json.Unmarshal([]byte(fmstring), &out)
    		if err != nil {
    			return nil, fmt.Errorf("error parsing fieldmap: %s", err)
    		}
    	}
    	refstring := cfg.Meta.Annotations[file.ReferenceKey]
    	var outref resource.Reference
    	if refstring != "" {
    		outref = &kube.Position{}
    		err := json.Unmarshal([]byte(refstring), outref)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 6.3K 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. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencyUnresolvedModuleIntegrationTest.groovy

                    doLast {
                        def filesA = configurations.first.incoming.artifactView { lenient = true }.files.files*.name
                        def filesB = configurations.second.incoming.artifactView { lenient = true }.files.files*.name
                        def filesC = configurations.third.incoming.artifactView { lenient = true }.files.files*.name
                        println "Resolved: \${filesA} \${filesB} \${filesC}"
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 11:51:18 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  4. operator/pkg/translate/translate_value.go

    func translateStrategy(fieldName string, outPath string, value any, cpSpecTree map[string]any) error {
    	fieldMap := map[string]string{
    		"rollingMaxSurge":       "maxSurge",
    		"rollingMaxUnavailable": "maxUnavailable",
    	}
    	newFieldName, ok := fieldMap[fieldName]
    	if !ok {
    		return fmt.Errorf("expected field name found in values.yaml: %s", fieldName)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 08 03:52:24 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/CrawlerTest.java

                        rule.setResponseProcessor(container.getComponent("sitemapsResponseProcessor"));
                        rule.setRuleId("sitemapsRule");
                        rule.addRule("url", ".*sitemap.*");
                    })//
                    .<DefaultResponseProcessor> singleton("defaultResponseProcessor", DefaultResponseProcessor.class, processor -> {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 18K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/symtab.go

    	// The pcHeader
    	moduledata.AddAddr(ctxt.Arch, pcln.pcheader)
    
    	// The function name slice
    	sliceSym(pcln.funcnametab)
    
    	// The cutab slice
    	sliceSym(pcln.cutab)
    
    	// The filetab slice
    	sliceSym(pcln.filetab)
    
    	// The pctab slice
    	sliceSym(pcln.pctab)
    
    	// The pclntab slice
    	slice(pcln.pclntab, uint64(ldr.SymSize(pcln.pclntab)))
    
    	// The ftab slice
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  10. 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)
Back to top