Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 83 for vfprintf (0.18 sec)

  1. staging/src/k8s.io/api/autoscaling/v2beta2/generated.pb.go

    		`Type:` + fmt.Sprintf("%v", this.Type) + `,`,
    		`Status:` + fmt.Sprintf("%v", this.Status) + `,`,
    		`LastTransitionTime:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.LastTransitionTime), "Time", "v1.Time", 1), `&`, ``, 1) + `,`,
    		`Reason:` + fmt.Sprintf("%v", this.Reason) + `,`,
    		`Message:` + fmt.Sprintf("%v", this.Message) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 163K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/networking/v1/generated.pb.go

    	}
    	s := strings.Join([]string{`&IPBlock{`,
    		`CIDR:` + fmt.Sprintf("%v", this.CIDR) + `,`,
    		`Except:` + fmt.Sprintf("%v", this.Except) + `,`,
    		`}`,
    	}, "")
    	return s
    }
    func (this *Ingress) String() string {
    	if this == nil {
    		return "nil"
    	}
    	s := strings.Join([]string{`&Ingress{`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 158.2K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    			return nil
    		}
    		if _, err := io.Copy(zwriter, r); err != nil {
    			adminLogIf(ctx, err)
    		}
    		return nil
    	}
    
    	// save args passed to inspect command
    	var sb bytes.Buffer
    	fmt.Fprintf(&sb, "Inspect path: %s%s%s\n", volume, slashSeparator, file)
    	sb.WriteString("Server command line args:")
    	for _, pool := range globalEndpoints {
    		sb.WriteString(" ")
    		sb.WriteString(pool.CmdLine)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1beta1/generated.pb.go

    		return "nil"
    	}
    	s := strings.Join([]string{`&IngressBackend{`,
    		`ServiceName:` + fmt.Sprintf("%v", this.ServiceName) + `,`,
    		`ServicePort:` + strings.Replace(strings.Replace(fmt.Sprintf("%v", this.ServicePort), "IntOrString", "intstr.IntOrString", 1), `&`, ``, 1) + `,`,
    		`Resource:` + strings.Replace(fmt.Sprintf("%v", this.Resource), "TypedLocalObjectReference", "v11.TypedLocalObjectReference", 1) + `,`,
    		`}`,
    	}, "")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  5. pkg/volume/util/operationexecutor/operation_generator.go

    		}
    
    		devicePath := volumeToMount.DevicePath
    		if volumeAttacher != nil {
    			// Wait for attachable volumes to finish attaching
    			klog.InfoS(volumeToMount.GenerateMsgDetailed("MountVolume.WaitForAttach entering", fmt.Sprintf("DevicePath %q", volumeToMount.DevicePath)), "pod", klog.KObj(volumeToMount.Pod))
    
    			devicePath, err = volumeAttacher.WaitForAttach(
    				volumeToMount.VolumeSpec, devicePath, volumeToMount.Pod, waitForAttachTimeout)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet_test.go

    		if !tc.success {
    			assert.Error(t, err, fmt.Sprintf("[case %d] error", i))
    		} else {
    			assert.NoError(t, err, "[case %d] error", i)
    		}
    		// Access the log of the previous, terminated container
    		previous = true
    		_, err = kubelet.validateContainerLogStatus("podName", podStatus, containerName, previous)
    		if !tc.pSuccess {
    			assert.Error(t, err, fmt.Sprintf("[case %d] error", i))
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    	var buf strings.Builder
    	fmt.Fprintf(&buf, "\nselect {\n")
    	for i, cas := range info {
    		fmt.Fprintf(&buf, "%d: %s", i, cas.desc)
    		if cas.recv.IsValid() {
    			fmt.Fprintf(&buf, " val=%#v", cas.recv.Interface())
    		}
    		if cas.canSelect {
    			fmt.Fprintf(&buf, " canselect")
    		}
    		if cas.panic {
    			fmt.Fprintf(&buf, " panic")
    		}
    		fmt.Fprintf(&buf, "\n")
    	}
    	fmt.Fprintf(&buf, "}")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  8. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	totalNum := 10
    	expectedPods := make([]v1.Pod, 0, totalNum)
    	for i := 0; i < totalNum; i++ {
    		priority := int32(i)
    		p := st.MakePod().Name(fmt.Sprintf("pod%d", i)).Namespace(fmt.Sprintf("ns%d", i)).UID(fmt.Sprintf("upns%d", i)).Priority(priority).Obj()
    		expectedPods = append(expectedPods, *p)
    		// priority is to make pods ordered in the PriorityQueue
    		q.Add(logger, p)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  9. pkg/config/validation/validation.go

    	case *networking.HTTPRoute:
    		if r.Name != "" {
    			return fmt.Sprintf("%q", r.Name)
    		}
    		// TCP and TLS routes have no names
    	}
    
    	return fmt.Sprintf("#%d", routen)
    }
    
    func requestName(match any, matchn int) string {
    	switch mr := match.(type) {
    	case *networking.HTTPMatchRequest:
    		if mr != nil && mr.Name != "" {
    			return fmt.Sprintf("%q", mr.Name)
    		}
    		// TCP and TLS matches have no names
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  10. cmd/server_test.go

    	// Content for the object to be uploaded.
    	buffer := bytes.NewReader([]byte("hello world"))
    	// make long object name.
    	longObjName := fmt.Sprintf("%0255d/%0255d/%0255d", 1, 1, 1)
    	if IsDocker() || IsKubernetes() {
    		longObjName = fmt.Sprintf("%0242d/%0242d/%0242d", 1, 1, 1)
    	}
    	// create new HTTP request to insert the object.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
Back to top