Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 215 for vfprintf (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.pb.go

    		`Level:` + fmt.Sprintf("%v", this.Level) + `,`,
    		`Users:` + fmt.Sprintf("%v", this.Users) + `,`,
    		`UserGroups:` + fmt.Sprintf("%v", this.UserGroups) + `,`,
    		`Verbs:` + fmt.Sprintf("%v", this.Verbs) + `,`,
    		`Resources:` + repeatedStringForResources + `,`,
    		`Namespaces:` + fmt.Sprintf("%v", this.Namespaces) + `,`,
    		`NonResourceURLs:` + fmt.Sprintf("%v", this.NonResourceURLs) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 81.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/regalloc.go

    				continue
    			}
    
    			if s.f.pass.debug > regDebug {
    				fmt.Printf("value %s\n", v.LongString())
    				fmt.Printf("  out:")
    				for _, r := range dinfo[idx].out {
    					if r != noRegister {
    						fmt.Printf(" %s", &s.registers[r])
    					}
    				}
    				fmt.Println()
    				for i := 0; i < len(v.Args) && i < 3; i++ {
    					fmt.Printf("  in%d:", i)
    					for _, r := range dinfo[idx].in[i] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    	writeTestFile(t, fmt.Sprintf("%s/recursive/rc/busybox.json", tmpDir), strings.Replace(aRC, "{id}", "0", -1))
    	writeTestFile(t, fmt.Sprintf("%s/recursive/rc/rc_1/busybox.json", tmpDir), strings.Replace(aRC, "{id}", "1", -1))
    	writeTestFile(t, fmt.Sprintf("%s/inode/hardlink/busybox.json", tmpDir), strings.Replace(aPod, "{id}", "0", -1))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
  4. pkg/apis/batch/validation/validation.go

    		maximumPodHostname := fmt.Sprintf("%s-%d", job.ObjectMeta.Name, *job.Spec.Completions-1)
    		if errs := apimachineryvalidation.IsDNS1123Label(maximumPodHostname); len(errs) > 0 {
    			allErrs = append(allErrs, field.Invalid(field.NewPath("metadata").Child("name"), job.ObjectMeta.Name, fmt.Sprintf("will not able to create pod with invalid DNS label: %s", maximumPodHostname)))
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.pb.go

    		`ServiceAccountName:` + fmt.Sprintf("%v", this.ServiceAccountName) + `,`,
    		`DeprecatedServiceAccount:` + fmt.Sprintf("%v", this.DeprecatedServiceAccount) + `,`,
    		`NodeName:` + fmt.Sprintf("%v", this.NodeName) + `,`,
    		`HostNetwork:` + fmt.Sprintf("%v", this.HostNetwork) + `,`,
    		`HostPID:` + fmt.Sprintf("%v", this.HostPID) + `,`,
    		`HostIPC:` + fmt.Sprintf("%v", this.HostIPC) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 57K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.pb.go

    		`ServiceAccountName:` + fmt.Sprintf("%v", this.ServiceAccountName) + `,`,
    		`DeprecatedServiceAccount:` + fmt.Sprintf("%v", this.DeprecatedServiceAccount) + `,`,
    		`NodeName:` + fmt.Sprintf("%v", this.NodeName) + `,`,
    		`HostNetwork:` + fmt.Sprintf("%v", this.HostNetwork) + `,`,
    		`HostPID:` + fmt.Sprintf("%v", this.HostPID) + `,`,
    		`HostIPC:` + fmt.Sprintf("%v", this.HostIPC) + `,`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  7. src/cmd/internal/testdir/testdir_test.go

    		}
    	}
    
    	if len(errs) == 0 {
    		return nil
    	}
    	if len(errs) == 1 {
    		return errs[0]
    	}
    	var buf bytes.Buffer
    	fmt.Fprintf(&buf, "\n")
    	for _, err := range errs {
    		fmt.Fprintf(&buf, "%s\n", err.Error())
    	}
    	return errors.New(buf.String())
    }
    
    func (test) updateErrors(out, file string) {
    	base := path.Base(file)
    	// Read in source file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    		argv = append(argv, "-Wl,--nxcompat")
    
    		argv = append(argv, fmt.Sprintf("-Wl,--major-os-version=%d", PeMinimumTargetMajorVersion))
    		argv = append(argv, fmt.Sprintf("-Wl,--minor-os-version=%d", PeMinimumTargetMinorVersion))
    		argv = append(argv, fmt.Sprintf("-Wl,--major-subsystem-version=%d", PeMinimumTargetMajorVersion))
    		argv = append(argv, fmt.Sprintf("-Wl,--minor-subsystem-version=%d", PeMinimumTargetMinorVersion))
    	case objabi.Haix:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    	// The policy should still be added since the effective policy is STRICT
    	assert.Equal(t,
    		s.lookup(s.addrXdsName("127.0.0.1"))[0].Address.GetWorkload().AuthorizationPolicies,
    		[]string{fmt.Sprintf("istio-system/%s", staticStrictPolicyName), fmt.Sprintf("ns1/%s", model.GetAmbientPolicyConfigName(model.ConfigKey{
    			Kind:      kind.PeerAuthentication,
    			Name:      selectorPolicyName,
    			Namespace: "ns1",
    		}))})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier.go

    		logger.Info("System initialized and --init-only specified")
    		return nil, nil
    	}
    
    	// Generate the masquerade mark to use for SNAT rules.
    	masqueradeValue := 1 << uint(masqueradeBit)
    	masqueradeMark := fmt.Sprintf("%#08x", masqueradeValue)
    	logger.V(2).Info("Using iptables mark for masquerade", "mark", masqueradeMark)
    
    	serviceHealthServer := healthcheck.NewServiceHealthServer(hostname, recorder, nodePortAddresses, healthzServer)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
Back to top