Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for satconv (0.19 sec)

  1. src/cmd/go/alldocs.go

    //   - For GOARCH=riscv64,
    //     GORISCV64=rva20u64 and rva22u64 correspond to the riscv64.rva20u64
    //     and riscv64.rva22u64 build tags.
    //   - For GOARCH=wasm, GOWASM=satconv and signext
    //     correspond to the wasm.satconv and wasm.signext feature build tags.
    //
    // For GOARCH=amd64, arm, ppc64, ppc64le, and riscv64, a particular feature level
    // sets the feature build tags for all previous levels as well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    import (
    	"archive/tar"
    	"bytes"
    	"context"
    	"encoding/hex"
    	"encoding/xml"
    	"errors"
    	"fmt"
    	"io"
    	"net/http"
    	"net/http/httptest"
    	"net/textproto"
    	"net/url"
    	"os"
    	"sort"
    	"strconv"
    	"strings"
    	"sync/atomic"
    	"time"
    	"unicode"
    
    	"github.com/google/uuid"
    	"github.com/klauspost/compress/gzhttp"
    	miniogo "github.com/minio/minio-go/v7"
    	"github.com/minio/minio-go/v7/pkg/credentials"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    	if err != nil || interval < time.Second {
    		interval = defaultMetricsInterval
    	}
    
    	n, err := strconv.Atoi(r.Form.Get("n"))
    	if err != nil || n <= 0 {
    		n = math.MaxInt32
    	}
    
    	var types madmin.MetricType
    	if t, _ := strconv.ParseUint(r.Form.Get("types"), 10, 64); t != 0 {
    		types = madmin.MetricType(t)
    	} else {
    		types = madmin.MetricsAll
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	ctx, otelSpan := kl.tracer.Start(ctx, "syncPod", trace.WithAttributes(
    		semconv.K8SPodUIDKey.String(string(pod.UID)),
    		attribute.String("k8s.pod", klog.KObj(pod).String()),
    		semconv.K8SPodNameKey.String(pod.Name),
    		attribute.String("k8s.pod.update_type", updateType.String()),
    		semconv.K8SNamespaceNameKey.String(pod.Namespace),
    	))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (1)
  5. pkg/scheduler/schedule_one_test.go

    			{
    				Resources: v1.ResourceRequirements{
    					Requests: v1.ResourceList{
    						v1.ResourceCPU: resource.MustParse(
    							strconv.FormatInt(schedutil.DefaultMilliCPURequest, 10) + "m"),
    						v1.ResourceMemory: resource.MustParse(
    							strconv.FormatInt(schedutil.DefaultMemoryRequest, 10)),
    					},
    				},
    			},
    		},
    	}
    	small2 := small
    	small2.NodeName = "node2"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  6. src/debug/elf/elf.go

    	for j := len(names) - 1; j >= 0; j-- {
    		n := names[j]
    		if n.i < i {
    			s := n.s
    			if goSyntax {
    				s = "elf." + s
    			}
    			return s + "+" + strconv.FormatUint(uint64(i-n.i), 10)
    		}
    	}
    
    	return strconv.FormatUint(uint64(i), 10)
    }
    
    func flagName(i uint32, names []intName, goSyntax bool) string {
    	s := ""
    	for _, n := range names {
    		if n.i&i == n.i {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller_test.go

    					Completions:    ptr.To[int32](501),
    				},
    			},
    			pods: func() []*v1.Pod {
    				pods := make([]*v1.Pod, 501)
    				for i := range pods {
    					pods[i] = buildPod().uid(strconv.Itoa(i)).index(strconv.Itoa(i)).phase(v1.PodSucceeded).trackingFinalizer().Pod
    				}
    				return pods
    			}(),
    			wantRmFinalizers: 500,
    			wantStatusUpdates: []batch.JobStatus{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    	}
    
    	// We have SWIG version 3.x.
    	if len(matches[2]) > 0 {
    		minor, err := strconv.Atoi(string(matches[2][1:]))
    		if err != nil {
    			return nil
    		}
    		if minor > 0 {
    			// 3.1 or later
    			return nil
    		}
    	}
    
    	// We have SWIG version 3.0.x.
    	if len(matches[3]) > 0 {
    		patch, err := strconv.Atoi(string(matches[3][1:]))
    		if err != nil {
    			return nil
    		}
    		if patch < 6 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. pkg/printers/internalversion/printers.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package internalversion
    
    import (
    	"bytes"
    	"fmt"
    	"net"
    	"sort"
    	"strconv"
    	"strings"
    	"time"
    
    	apiserverinternalv1alpha1 "k8s.io/api/apiserverinternal/v1alpha1"
    	appsv1beta1 "k8s.io/api/apps/v1beta1"
    	autoscalingv1 "k8s.io/api/autoscaling/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  10. pkg/config/validation/validation.go

    // limitations under the License.
    
    package validation
    
    import (
    	"encoding/json"
    	"errors"
    	"fmt"
    	"math"
    	"net"
    	"net/http"
    	"net/url"
    	"path"
    	"regexp"
    	"strconv"
    	"strings"
    	"time"
    
    	"github.com/hashicorp/go-multierror"
    	"github.com/lestrrat-go/jwx/jwk"
    
    	"istio.io/api/annotation"
    	extensions "istio.io/api/extensions/v1alpha1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top