Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 220 for Sysname (0.13 sec)

  1. src/cmd/link/internal/wasm/asm.go

    						}, &types),
    					})
    				} else {
    					panic(fmt.Sprintf("missing wasm symbol for %s", ldr.SymName(r.Sym())))
    				}
    			}
    		}
    	}
    
    	// collect functions with WebAssembly body
    	var buildid []byte
    	fns := make([]*wasmFunc, len(ctxt.Textp))
    	for i, fn := range ctxt.Textp {
    		wfn := new(bytes.Buffer)
    		if ldr.SymName(fn) == "go:buildid" {
    			writeUleb128(wfn, 0) // number of sets of locals
    			writeI32Const(wfn, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. pkg/apis/storagemigration/validation/validation.go

    	var conditionReasonRegexp = regexp.MustCompile("^" + conditionReasonFmt + "$")
    
    	if !conditionReasonRegexp.MatchString(value) {
    		return []string{validation.RegexError(conditionReasonErrMsg, conditionReasonFmt, "my_name", "MY_NAME", "MyName", "ReasonA,ReasonB", "ReasonA:ReasonB")}
    	}
    	return nil
    }
    
    func checkAndAppendError(allErrs field.ErrorList, fieldPath *field.Path, value string, message string) field.ErrorList {
    	if len(value) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. testing/architecture-test/src/test/java/org/gradle/architecture/test/TempDirectoryCreationControlTest.java

    import static com.tngtech.archunit.core.domain.Formatters.ensureSimpleName;
    import static com.tngtech.archunit.core.domain.JavaClass.Predicates.belongToAnyOf;
    import static com.tngtech.archunit.core.domain.properties.HasName.Predicates.name;
    import static com.tngtech.archunit.lang.conditions.ArchConditions.callMethod;
    import static com.tngtech.archunit.lang.conditions.ArchConditions.callMethodWhere;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. src/crypto/x509/example_test.go

    		panic("failed to parse certificate PEM")
    	}
    	cert, err := x509.ParseCertificate(block.Bytes)
    	if err != nil {
    		panic("failed to parse certificate: " + err.Error())
    	}
    
    	opts := x509.VerifyOptions{
    		DNSName: "mail.google.com",
    		Roots:   roots,
    	}
    
    	if _, err := cert.Verify(opts); err != nil {
    		panic("failed to verify certificate: " + err.Error())
    	}
    }
    
    func ExampleParsePKIXPublicKey() {
    	const pubPEM = `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 29 16:52:01 UTC 2019
    - 5.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loadpe/seh.go

    	// https://learn.microsoft.com/en-us/cpp/build/exception-handling-x64#struct-runtime_function
    	rels := ldr.Relocs(pdata)
    	if rels.Count()%3 != 0 {
    		return fmt.Errorf(".pdata symbol %q has invalid relocation count", ldr.SymName(pdata))
    	}
    	for i := 0; i < rels.Count(); i += 3 {
    		xrel := rels.At(i + 2)
    		handler := findHandlerInXDataAMD64(ldr, xrel.Sym(), xrel.Add())
    		if handler != 0 {
    			sb := ldr.MakeSymbolUpdater(rels.At(i).Sym())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 22 16:20:28 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loadmacho/ldmacho.go

    		}
    
    		if osym := l.OuterSym(s); osym != 0 {
    			if l.AttrDuplicateOK(s) {
    				continue
    			}
    			return errorf("duplicate symbol reference: %s in both %s and %s", l.SymName(s), l.SymName(osym), l.SymName(sect.sym))
    		}
    
    		bld.SetType(l.SymType(outer))
    		if l.SymSize(outer) != 0 { // skip empty section (0-sized symbol)
    			l.AddInteriorSym(outer, s)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 18:45:57 UTC 2022
    - 19.1K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/phases/upgrade/compute_test.go

    	// Kubernetes release.
    	for _, rt := range tests {
    		t.Run(rt.name, func(t *testing.T) {
    
    			dnsName := constants.CoreDNSDeploymentName
    
    			client := newMockClientForTest(t, dnsName, rt.beforeDNSVersion, rt.deployDNSFailed)
    
    			actualUpgrades, actualErr := GetAvailableUpgrades(rt.vg, rt.allowExperimental, rt.allowRCs, client, &output.TextPrinter{})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 08:39:51 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/registry.go

    		volumezone.Name:                      volumezone.New,
    		nodevolumelimits.CSIName:             runtime.FactoryAdapter(fts, nodevolumelimits.NewCSI),
    		nodevolumelimits.EBSName:             runtime.FactoryAdapter(fts, nodevolumelimits.NewEBS),
    		nodevolumelimits.GCEPDName:           runtime.FactoryAdapter(fts, nodevolumelimits.NewGCEPD),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    			l.SetSymPkg(s, libpath)
    
    			// The decodetype_* functions in decodetype.go need access to
    			// the type data.
    			sname := l.SymName(s)
    			if strings.HasPrefix(sname, "type:") && !strings.HasPrefix(sname, "type:.") {
    				su.SetData(readelfsymboldata(ctxt, f, &elfsym))
    			}
    		}
    
    		if symname != elfsym.Name {
    			l.SetSymExtname(s, elfsym.Name)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. pilot/pkg/xds/cds.go

    	kind.Gateway,
    	kind.WorkloadEntry,
    	kind.WorkloadGroup,
    	kind.AuthorizationPolicy,
    	kind.RequestAuthentication,
    	kind.Secret,
    	kind.Telemetry,
    	kind.WasmPlugin,
    	kind.ProxyConfig,
    	kind.DNSName,
    
    	kind.KubernetesGateway,
    )
    
    // Map all configs that impact CDS for gateways when `PILOT_FILTER_GATEWAY_CLUSTER_CONFIG = true`.
    var pushCdsGatewayConfig = func() sets.Set[kind.Kind] {
    	s := sets.New(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 21:27:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top