Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 187 for vfprintf (0.21 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/volume/csi/csi_mounter_test.go

    		{
    			name:           "simple specName",
    			specVolumeName: "spec-0",
    			path:           filepath.Join(tmpDir, fmt.Sprintf("pods/%s/volumes/kubernetes.io~csi/%s/%s", testPodUID, "spec-0", "/mount")),
    		},
    		{
    			name:           "specName with dots",
    			specVolumeName: "test.spec.1",
    			path:           filepath.Join(tmpDir, fmt.Sprintf("pods/%s/volumes/kubernetes.io~csi/%s/%s", testPodUID, "test.spec.1", "/mount")),
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authentication/v1/generated.pb.go

    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&BoundObjectReference{`,
    		`Kind:` + fmt.Sprintf("%v", this.Kind) + `,`,
    		`APIVersion:` + fmt.Sprintf("%v", this.APIVersion) + `,`,
    		`Name:` + fmt.Sprintf("%v", this.Name) + `,`,
    		`UID:` + fmt.Sprintf("%v", this.UID) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *SelfSubjectReview) String() string {
    	if this == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 72K bytes
    - Viewed (0)
Back to top