Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,573 for info2 (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/per_function_aggregate_analysis.h

    namespace detail {
    
    // This template defines an aggregate analysis base class, which analyzes a
    // module but the analysis info is stored per function.
    template <typename InfoT>
    class PerFunctionAggregateAnalysis {
     public:
      using Info = InfoT;
    
      // Returns the analysis info for the given function.
      const Info& GetAnalysisForFunc(func::FuncOp func) const {
        auto it = info_map_.find(func);
        assert(it != info_map_.end());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authorization/union/union_test.go

    	}
    }
    
    func getResourceRules(infos []authorizer.ResourceRuleInfo) []authorizer.DefaultResourceRuleInfo {
    	rules := make([]authorizer.DefaultResourceRuleInfo, len(infos))
    	for i, info := range infos {
    		rules[i] = authorizer.DefaultResourceRuleInfo{
    			Verbs:         info.GetVerbs(),
    			APIGroups:     info.GetAPIGroups(),
    			Resources:     info.GetResources(),
    			ResourceNames: info.GetResourceNames(),
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 7.7K bytes
    - Viewed (0)
  3. src/log/example_test.go

    }
    
    func ExampleLogger_Output() {
    	var (
    		buf    bytes.Buffer
    		logger = log.New(&buf, "INFO: ", log.Lshortfile)
    
    		infof = func(info string) {
    			logger.Output(2, info)
    		}
    	)
    
    	infof("Hello world")
    
    	fmt.Print(&buf)
    	// Output:
    	// INFO: example_test.go:36: Hello world
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jul 16 03:57:11 UTC 2017
    - 709 bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/proxier.go

    	if port.TargetPort.Type == intstr.Int {
    		targetPort = port.TargetPort.IntValue()
    	}
    
    	info.preserveDIP = preserveDIP
    	info.targetPort = targetPort
    	info.hns = proxier.hns
    	info.localTrafficDSR = localTrafficDSR
    	info.internalTrafficLocal = internalTrafficLocal
    	info.winProxyOptimization = winProxyOptimization
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  5. cmd/erasure.go

    				return nil
    			}
    			info, err := disks[index].DiskInfo(context.TODO(), DiskInfoOptions{Metrics: metrics})
    			di.DrivePath = info.MountPath
    			di.TotalSpace = info.Total
    			di.UsedSpace = info.Used
    			di.AvailableSpace = info.Free
    			di.UUID = info.ID
    			di.Major = info.Major
    			di.Minor = info.Minor
    			di.RootDisk = info.RootDisk
    			di.Healing = info.Healing
    			di.Scanning = info.Scanning
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. src/runtime/vdso_linux.go

    	var hash, gnuhash *[vdsoHashSize]uint32
    	info.symstrings = nil
    	info.symtab = nil
    	info.versym = nil
    	info.verdef = nil
    	for i := 0; dyn[i].d_tag != _DT_NULL; i++ {
    		dt := &dyn[i]
    		p := info.loadOffset + uintptr(dt.d_val)
    		switch dt.d_tag {
    		case _DT_STRTAB:
    			info.symstrings = (*[vdsoSymStringsSize]byte)(unsafe.Pointer(p))
    		case _DT_SYMTAB:
    			info.symtab = (*[vdsoSymTabSize]elfSym)(unsafe.Pointer(p))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  7. plugin/pkg/admission/certificates/util.go

    	// 'kubernetes.io/*'.
    	attr = buildWildcardAttributes(info, verb, signerName)
    	decision, reason, err = authz.Authorize(ctx, attr)
    	switch {
    	case err != nil:
    		klog.V(3).Infof("cannot authorize %q %q for policy: %v,%v", verb, attr.GetName(), reason, err)
    	case decision == authorizer.DecisionAllow:
    		return true
    	}
    
    	return false
    }
    
    func buildAttributes(info user.Info, verb, signerName string) authorizer.Attributes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 16 11:54:27 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  8. 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)
  9. pkg/log/default.go

    	return defaultScope.WarnEnabled()
    }
    
    // Info outputs a message at info level.
    func Info(fields any) {
    	defaultScope.Info(fields)
    }
    
    // Infof uses fmt.Sprintf to construct and log a message at info level.
    func Infof(format string, args ...any) {
    	defaultScope.Infof(format, args...)
    }
    
    // InfoEnabled returns whether output of messages using this scope is currently enabled for info-level output.
    func InfoEnabled() bool {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 26 20:38:10 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/discovery/token/token.go

    	klog.V(1).Infof("[discovery] Created cluster-info discovery client, requesting info from %q", endpoint)
    	insecureClusterInfo, err := getClusterInfo(client, insecureBootstrapConfig, token, interval, timeout)
    	if err != nil {
    		return nil, err
    	}
    
    	// Validate the token in the cluster info
    	insecureKubeconfigBytes, err := validateClusterInfoToken(insecureClusterInfo, token)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top