Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for sdk1 (0.06 sec)

  1. 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)
  2. 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)
  3. README.md

    <a href="https://speakeasyapi.dev?utm_source=fastapi+repo&utm_medium=github+sponsorship" target="_blank" title="SDKs for your API | Speakeasy"><img src="https://fastapi.tiangolo.com/img/sponsors/speakeasy.png"></a>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 30 13:28:20 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    #include <net/if_types.h>
    #include <net/route.h>
    #include <netinet/in.h>
    #include <netinet/ip.h>
    #include <termios.h>
    
    // for backwards compatibility because moved TIOCREMOTE to Kernel.framework after MacOSX12.0.sdk.
    #define TIOCREMOTE 0x80047469
    '
    
    includes_DragonFly='
    #include <sys/types.h>
    #include <sys/event.h>
    #include <sys/select.h>
    #include <sys/socket.h>
    #include <sys/sockio.h>
    #include <sys/stat.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/build.gradle

                excludeTestsMatching "org.gradle.docs.samples.*.snippet-swift*.sample"
                excludeTestsMatching "org.gradle.docs.samples.*.building-swift*.sample"
                // We don't have Android SDK installed on mac M1 now
                excludeTestsMatching "org.gradle.docs.samples.*.building-android-*.sample"
                excludeTestsMatching "org.gradle.docs.samples.*.structuring-software-projects*android-app.sample"
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/macho.go

    				version = 11<<16 | 0<<8 | 0<<0 // 11.0.0
    			}
    			ml := newMachoLoad(ctxt.Arch, LC_BUILD_VERSION, 4)
    			ml.data[0] = uint32(machoPlatform)
    			ml.data[1] = version // OS version
    			ml.data[2] = version // SDK version
    			ml.data[3] = 0       // ntools
    		}
    	}
    
    	// empirically, string table must begin with " \x00".
    	s := ctxt.loader.LookupOrCreateSym(".machosymstr", 0)
    	sb := ctxt.loader.MakeSymbolUpdater(s)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
Back to top