Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for flist (0.07 sec)

  1. src/go/doc/example.go

    				Order:       len(flist),
    			})
    		}
    		if !hasTests && numDecl > 1 && len(flist) == 1 {
    			// If this file only has one example function, some
    			// other top-level declarations, and no tests or
    			// benchmarks, use the whole file as the example.
    			flist[0].Code = file
    			flist[0].Play = playExampleFile(file)
    		}
    		list = append(list, flist...)
    	}
    	// sort by name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/builtin.go

    //go:noinline
    func newSig(params, results []*types.Field) *types.Type {
    	return types.NewSignature(nil, params, results)
    }
    
    func params(tlist ...*types.Type) []*types.Field {
    	flist := make([]*types.Field, len(tlist))
    	for i, typ := range tlist {
    		flist[i] = types.NewField(src.NoXPos, nil, typ)
    	}
    	return flist
    }
    
    var runtimeDecls = [...]struct {
    	name string
    	tag  int
    	typ  int
    }{
    	{"newobject", funcTag, 4},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/sidecar/selector.go

    		return true
    	})
    
    	reportedResources := make(map[string]bool)
    	for p, sList := range podsToSidecars {
    		podResource := pods[p]
    
    		if len(sList) == 1 && !util.PodInAmbientMode(podResource) {
    			continue
    		}
    
    		sNames := getNames(sList)
    
    		for _, rs := range sList {
    			// We don't want to report errors for pods in ambient mode, since there is no sidecar,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. api/api-rules/violation_exceptions.list

    carlory <******@****.***> 1711012885 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 29.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/cbor_test.go

    					"apiVersion": "v",
    					"kind":       "kList",
    				},
    				Items: []unstructured.Unstructured{
    					{Object: map[string]interface{}{"foo": int64(1)}},
    					{Object: map[string]interface{}{"foo": int64(2)}},
    				},
    			},
    			assertOnWriter: func() (io.Writer, func(t *testing.T)) {
    				var b bytes.Buffer
    				return &b, func(t *testing.T) {
    					// {'kind': 'kList', 'items': [{'foo': 1}, {'foo': 2}], 'apiVersion': 'v'}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 14:57:12 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  6. docs/metrics/prometheus/list.md

    Shubhendu <******@****.***> 1718317614 +0530
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  7. src/cmd/asm/main.go

    			diag = true
    			log.Printf(format, args...)
    		}
    		if *flags.SymABIs {
    			ok = parser.ParseSymABIs(buf)
    		} else {
    			pList := new(obj.Plist)
    			pList.Firstpc, ok = parser.Parse()
    			// reports errors to parser.Errorf
    			if ok {
    				obj.Flushplist(ctxt, pList, nil)
    			}
    		}
    		if !ok {
    			failedFile = f
    			break
    		}
    	}
    	if ok && !*flags.SymABIs {
    		ctxt.NumberSyms()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  8. pkg/config/analysis/analyzers/telemetry/selector.go

    				m.Line = line
    			}
    
    			c.Report(gvk.Telemetry, m)
    		}
    
    		return true
    	})
    
    	for p, sList := range podsToTelemetries {
    		if len(sList) == 1 {
    			continue
    		}
    
    		sNames := getNames(sList)
    		for _, rs := range sList {
    			m := msg.NewConflictingTelemetryWorkloadSelectors(rs, sNames, p.Namespace.String(), p.Name.String())
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/build.gradle.kts

            errorprone.enabled = false
        }
    }
    
    dependencies {
        api(libs.groovy)
        api(libs.guava)
        api(libs.inject)
        api(libs.jsr305)
        api(libs.plist)
        api(project(":base-ide-plugins"))
        api(project(":base-services"))
        api(project(":core"))
        api(project(":core-api"))
        api(project(":file-collections"))
        api(project(":ide"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/convert_attr.cc

          return ConvertTensorProto(value.tensor(), builder);
        case AttrValue::kList: {
          absl::InlinedVector<mlir::Attribute, 8> attrs;
          for (const auto& item : value.list().i())
            attrs.push_back(builder->getI64IntegerAttr(item));
          for (const auto& item : value.list().s())
            attrs.push_back(builder->getStringAttr(item));
          for (const auto& item : value.list().f())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top