Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 549 for Unrecognized (0.3 sec)

  1. src/cmd/internal/pkgpath/pkgpath.go

    	} else if bytes.Contains(buf, []byte("go.l..u00e4ufer.Run")) {
    		return toSymbolV2, nil
    	} else if bytes.Contains(buf, []byte("go.l__ufer.Run")) {
    		return toSymbolV1, nil
    	} else {
    		return nil, errors.New(cmd + ": unrecognized mangling scheme")
    	}
    }
    
    // mangleCheckCode is the package we compile to determine the mangling scheme.
    const mangleCheckCode = `
    package läufer
    func Run(x int) int {
      return 1
    }
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  2. tests/integration/pilot/testdata/mcs-serviceimport-crd.yaml

            properties:
              apiVersion:
                description: 'APIVersion defines the versioned schema of this representation
                  of an object. Servers should convert recognized schemas to the latest
                  internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
                type: string
              kind:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 00:51:29 UTC 2021
    - 7K bytes
    - Viewed (0)
  3. src/cmd/gofmt/gofmt_test.go

    		case "":
    			// no flags
    		case "-r":
    			*rewriteRule = value
    		case "-s":
    			*simplifyAST = true
    		case "-stdin":
    			// fake flag - pretend input is from stdin
    			info = nil
    		default:
    			t.Errorf("unrecognized flag name: %s", name)
    		}
    	}
    
    	initParserMode()
    	initRewrite()
    
    	const maxWeight = 2 << 20
    	var buf, errBuf bytes.Buffer
    	s := newSequencer(maxWeight, &buf, &errBuf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 19:22:49 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/binutils/addr2liner_llvm.go

    		case 2:
    			// filename:line
    			if line, err := strconv.Atoi(split[1]); err == nil {
    				linenumber = line
    			}
    			fallthrough
    		case 1:
    			// filename
    			fileline = split[0]
    		default:
    			// Unrecognized, ignore
    		}
    	}
    
    	return plugin.Frame{Func: funcname, File: fileline, Line: linenumber, Column: columnnumber}, false
    }
    
    // addrInfo returns the stack frame information for a specific program
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__authentication.k8s.io__v1_openapi.json

            "properties": {
              "apiVersion": {
                "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
                "type": "string"
              },
              "kind": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  6. src/cmd/internal/objfile/objfile.go

    	}
    	for _, try := range openers {
    		if raw, err := try(r); err == nil {
    			return &File{r, []*Entry{{raw: raw}}}, nil
    		}
    	}
    	r.Close()
    	return nil, fmt.Errorf("open %s: unrecognized object file", name)
    }
    
    func (f *File) Close() error {
    	return f.r.Close()
    }
    
    func (f *File) Entries() []*Entry {
    	return f.entries
    }
    
    func (f *File) Symbols() ([]Sym, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 24 16:01:55 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/dispatcher.go

    				Binding:    binding,
    			})
    		default:
    			deniedDecisions = append(deniedDecisions, policyDecisionWithMetadata{
    				PolicyDecision: PolicyDecision{
    					Action:  ActionDeny,
    					Message: fmt.Errorf("unrecognized failure policy: '%v'", policy).Error(),
    				},
    				Definition: definition,
    				Binding:    binding,
    			})
    		}
    	}
    
    	authz := newCachingAuthorizer(c.authz)
    
    	for _, hook := range hooks {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  8. tests/integration/pilot/validation_test.go

    					tested.Insert(key)
    				}
    			}
    
    			for rec := range recognized {
    				if ignored.Contains(rec) {
    					continue
    				}
    				if !tested.Contains(rec) {
    					t.Errorf("CRD does not have a validation test: %v", rec)
    				}
    			}
    
    			for tst := range tested {
    				if _, found := recognized[tst]; !found {
    					t.Errorf("Unrecognized validation test data found: %v", tst)
    				}
    			}
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 15:19:36 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/asm.go

    	if cond != "" {
    		switch p.arch.Family {
    		case sys.ARM:
    			if !arch.ARMConditionCodes(prog, cond) {
    				p.errorf("unrecognized condition code .%q", cond)
    				return
    			}
    
    		case sys.ARM64:
    			if !arch.ARM64Suffix(prog, cond) {
    				p.errorf("unrecognized suffix .%q", cond)
    				return
    			}
    
    		case sys.AMD64, sys.I386:
    			if err := x86.ParseSuffix(prog, cond); err != nil {
    				p.errorf("%v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  10. src/cmd/link/internal/loadxcoff/ldxcoff.go

    			}
    			return sym.Sxxx, fmt.Sprintf("unrecognised Section Type 0x%x for Storage Class 0x%x with Storage Map XMC_PR", sectType, s.StorageClass)
    
    		// Read/Write Data
    		case xcoff.XMC_RW:
    			if sectType == xcoff.STYP_DATA {
    				return sym.SDATA, ""
    			}
    			if sectType == xcoff.STYP_BSS {
    				return sym.SBSS, ""
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.2K bytes
    - Viewed (0)
Back to top