Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 70 for sdk2 (0.09 sec)

  1. src/internal/syscall/windows/syscall_windows.go

    	// in SetFileInformationByHandle on windows/386.
    	//
    	// https://learn.microsoft.com/en-us/cpp/build/reference/zp-struct-member-alignment?view=msvc-170
    	// says that “The C/C++ headers in the Windows SDK assume the platform's
    	// default alignment is used.” What we see here is padding rather than
    	// alignment, but maybe it is related.
    	_ uint32
    }
    
    const (
    	IfOperStatusUp             = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. src/cmd/dist/buildtool.go

    	// with PGO. And as it is not a text file the import path
    	// rewrite will break it.
    	".pgo",
    	// Skip editor backup files.
    	"~",
    }
    
    var tryDirs = []string{
    	"sdk/go1.17",
    	"go1.17",
    }
    
    func bootstrapBuildTools() {
    	goroot_bootstrap := os.Getenv("GOROOT_BOOTSTRAP")
    	if goroot_bootstrap == "" {
    		home := os.Getenv("HOME")
    		goroot_bootstrap = pathf("%s/go1.4", home)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. go.work.sum

    github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da h1:8GUt8eRujhVEGZFFEjBj46YV4rDjvGrNxb0KMWYkL2I=
    github.com/armon/go-radix v0.0.0-20180808171621-7fddfc383310 h1:BUAU3CGlLvorLI26FmByPp2eC2qla6E1Tw+scpcg/to=
    github.com/aws/aws-sdk-go v1.35.24 h1:U3GNTg8+7xSM6OAJ8zksiSM4bRqxBWmVwwehvOSNG3A=
    github.com/bgentry/speakeasy v0.1.0 h1:ByYyxL9InA1OWqxJqqp2A5pYHUrCiAL6K3J+LKSsQkY=
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:12 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  4. samples/bookinfo/src/productpage/productpage.py

    from opentelemetry import trace
    from opentelemetry.instrumentation.flask import FlaskInstrumentor
    from opentelemetry.propagate import set_global_textmap
    from opentelemetry.propagators.b3 import B3MultiFormat
    from opentelemetry.sdk.trace import TracerProvider
    from prometheus_client import Counter, generate_latest
    import asyncio
    import logging
    import os
    import requests
    import simplejson as json
    import sys
    
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/mod/module/module.go

    //
    // The safe escaped form is to replace every uppercase letter
    // with an exclamation mark followed by the letter's lowercase equivalent.
    //
    // For example,
    //
    //	github.com/Azure/azure-sdk-for-go ->  github.com/!azure/azure-sdk-for-go.
    //	github.com/GoogleCloudPlatform/cloudsql-proxy -> github.com/!google!cloud!platform/cloudsql-proxy
    //	github.com/Sirupsen/logrus -> github.com/!sirupsen/logrus.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. pkg/volume/util/fsquota/quota_linux_test.go

    			t.Errorf("Case %s got mountpoint %s, expected %s", name, mountpoint, testcase.expectedResult)
    		}
    	}
    }
    
    var dummyMountPoints = []mount.MountPoint{
    	{
    		Device: "/dev/sda2",
    		Path:   "/quota1",
    		Type:   "ext4",
    		Opts:   []string{"rw", "relatime", "prjquota"},
    	},
    	{
    		Device: "/dev/sda3",
    		Path:   "/quota2",
    		Type:   "ext4",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  7. cmd/server_test.go

    		userAgent       string
    	}{
    		{
    			getListObjectsV2URL(s.endPoint, bucketName, "pfx/a/", "2", "", "", "/"),
    			[]string{
    				"<Contents><Key>pfx/a/1.txt</Key>",
    			},
    			"Hadoop 3.3.2, aws-sdk-java/1.12.262 Linux/5.14.0-362.24.1.el9_3.x86_64 OpenJDK_64-Bit_Server_VM/11.0.22+7 java/11.0.22 scala/2.12.15 vendor/Eclipse_Adoptium cfg/retry-mode/legacy",
    		},
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  8. go.mod

    	go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful v0.42.0
    	go.opentelemetry.io/otel v1.20.0
    	go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.20.0
    	go.opentelemetry.io/otel/sdk v1.20.0
    	go.opentelemetry.io/otel/trace v1.20.0
    	go.opentelemetry.io/proto/otlp v1.0.0
    	go.uber.org/goleak v1.3.0
    	go.uber.org/mock v0.4.0
    	go.uber.org/zap v1.26.0
    	golang.org/x/crypto v0.23.0
    	golang.org/x/net v0.25.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:11 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  9. src/cmd/link/link_test.go

    		t.Skipf("error running xcrun, required for iOS cross build: %v", err)
    	}
    
    	t.Parallel()
    
    	sdkPath, err := testenv.Command(t, "xcrun", "--sdk", "appletvos", "--show-sdk-path").Output()
    	if err != nil {
    		t.Skip("failed to locate appletvos SDK, skipping")
    	}
    	CC := []string{
    		"clang",
    		"-arch",
    		"arm64",
    		"-isysroot", strings.TrimSpace(string(sdkPath)),
    		"-mtvos-version-min=12.0",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  10. build/lib/release.sh

          \) -print0 \
        | "${TAR}" czf "${src_tarball}" --transform "s|${KUBE_ROOT#/*}|kubernetes|" --null -T -
      fi
    }
    
    # Package up all of the cross compiled clients. Over time this should grow into
    # a full SDK
    function kube::release::package_client_tarballs() {
      # Find all of the built client binaries
      local long_platforms=("${LOCAL_OUTPUT_BINPATH}"/*/*)
      if [[ -n ${KUBE_BUILD_PLATFORMS-} ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top