Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for noinfo (0.13 sec)

  1. src/runtime/pprof/proto.go

    	period     int64
    	m          profMap
    
    	// encoding state
    	w         io.Writer
    	zw        *gzip.Writer
    	pb        protobuf
    	strings   []string
    	stringMap map[string]int
    	locs      map[uintptr]locInfo // list of locInfo starting with the given PC.
    	funcs     map[string]int      // Package path-qualified function name to Function.ID
    	mem       []memMap
    	deck      pcDeck
    }
    
    type memMap struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 13 20:40:52 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kuberuntime/instrumented_services.go

    	const operation = "image_fs_info"
    	defer recordOperation(operation, time.Now())
    
    	fsInfo, err := in.service.ImageFsInfo(ctx)
    	recordError(operation, err)
    	return fsInfo, nil
    }
    
    func (in instrumentedRuntimeService) CheckpointContainer(ctx context.Context, options *runtimeapi.CheckpointContainerRequest) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. pkg/kubelet/stats/cri_stats_provider_windows_test.go

    		},
    	}
    
    	inputContainer := &runtimeapi.Container{
    		CreatedAt: containerStartTime.Unix(),
    		Metadata: &runtimeapi.ContainerMetadata{
    			Name: "c0",
    		},
    	}
    
    	inputRootFsInfo := &cadvisorapiv2.FsInfo{}
    
    	// Used by the getPodContainerLogStats() call in makeWinContainerStats()
    	inputPodSandboxMetadata := &runtimeapi.PodSandboxMetadata{
    		Namespace: "sb0-ns",
    		Name:      "sb0-name",
    		Uid:       "sb0-uid",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 17 00:02:10 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. pkg/kubelet/stats/provider_test.go

    			TxBytes:  0,
    			TxErrors: 0,
    		}},
    	}
    	return cinfo
    }
    
    func getContainerInfoWithZeroCpuMem(seed int, podName string, podNamespace string, containerName string) cadvisorapiv2.ContainerInfo {
    	cinfo := getTestContainerInfo(seed, podName, podNamespace, containerName)
    	cinfo.Stats[0].Memory.RSS = 0
    	cinfo.Stats[0].CpuInst.Usage.Total = 0
    	return cinfo
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. src/runtime/stkframe.go

    			// getStackMap from "leaking param content:
    			// frame".  That leak propagates up to getgcmask, then
    			// GCMask, then verifyGCInfo, which converts the stack
    			// gcinfo tests into heap gcinfo tests :(
    		}
    	}
    
    	return
    }
    
    var methodValueCallFrameObjs [1]stackObjectRecord // initialized in stackobjectinit
    
    func stkobjinit() {
    	var abiRegArgsEface any = abi.RegArgs{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    	}
    	for _, name := range nostatsOverrides {
    		info, found := infos[name]
    		if !found {
    			t.Errorf("No container defined with name %v", name)
    		}
    		info.Spec.Memory = cadvisorapiv2.MemorySpec{}
    		info.Spec.Cpu = cadvisorapiv2.CpuSpec{}
    		info.Spec.HasMemory = false
    		info.Spec.HasCpu = false
    		info.Spec.HasNetwork = false
    		infos[name] = info
    	}
    
    	options := cadvisorapiv2.RequestOptions{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

    import org.apache.lucene.search.TotalHits.Relation;
    import org.codelibs.core.collection.ArrayUtil;
    import org.codelibs.fess.Constants;
    import org.codelibs.fess.entity.FacetInfo;
    import org.codelibs.fess.entity.GeoInfo;
    import org.codelibs.fess.entity.HighlightInfo;
    import org.codelibs.fess.entity.SearchRequestParams;
    import org.codelibs.fess.mylasta.action.FessUserBean;
    import org.codelibs.fess.mylasta.direction.FessConfig;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  8. src/testing/fstest/testfs.go

    func formatInfoEntry(info fs.FileInfo) string {
    	return fmt.Sprintf("%s IsDir=%v Type=%v", info.Name(), info.IsDir(), info.Mode().Type())
    }
    
    // formatInfo formats an fs.FileInfo into a string for error messages and comparison.
    func formatInfo(info fs.FileInfo) string {
    	return fmt.Sprintf("%s IsDir=%v Mode=%v Size=%d ModTime=%v", info.Name(), info.IsDir(), info.Mode(), info.Size(), info.ModTime())
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

                return SearchConditionBuilder.builder(searchRequestBuilder).query(query).offset(params.getStartPosition())
                        .size(params.getPageSize()).facetInfo(params.getFacetInfo()).geoInfo(params.getGeoInfo())
                        .highlightInfo(params.getHighlightInfo()).similarDocHash(params.getSimilarDocHash())
                        .responseFields(params.getResponseFields()).searchRequestType(params.getType())
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorTest.java

    import java.util.HashMap;
    import java.util.Locale;
    import java.util.Map;
    
    import org.apache.lucene.search.TotalHits.Relation;
    import org.codelibs.fess.entity.FacetInfo;
    import org.codelibs.fess.entity.GeoInfo;
    import org.codelibs.fess.entity.HighlightInfo;
    import org.codelibs.fess.entity.SearchRequestParams;
    import org.codelibs.fess.mylasta.action.FessUserBean;
    import org.codelibs.fess.rank.fusion.SearchResult.SearchResultBuilder;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 25.6K bytes
    - Viewed (0)
Back to top