Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 68 for Machines (0.15 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // SockaddrVM implements the Sockaddr interface for AF_VSOCK type sockets.
    // SockaddrVM provides access to Linux VM sockets: a mechanism that enables
    // bidirectional communication between a hypervisor and its guest virtual
    // machines.
    type SockaddrVM struct {
    	// CID and Port specify a context ID and port address for a VM socket.
    	// Guests have a unique CID, and hosts may have a well-known CID of:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.3.md

    * Use local disk for ConfigMap volume instead of tmpfs ([#25306](https://github.com/kubernetes/kubernetes/pull/25306), [@pmorie](https://github.com/pmorie))
    * Alpha support for scheduling pods on machines with NVIDIA GPUs whose kubelets use the `--experimental-nvidia-gpus` flag, using the alpha.kubernetes.io/nvidia-gpu resource  ([#24836](https://github.com/kubernetes/kubernetes/pull/24836), [@therc](https://github.com/therc))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    [[sec:reproducible_archives]]
    === Using `AbstractArchiveTask` for reproducible builds
    
    Sometimes it's desirable to recreate archives exactly the same, byte for byte, on different machines.
    You want to be sure that building an artifact from source code produces the same result no matter when and where it is built.
    This is necessary for projects like https://reproducible-builds.org/[reproducible-builds.org].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    					},
    				},
    			},
    			fmt.Sprintf(msgNotEqual, "12", v1.ResourceMemory, "5"),
    		},
    		{
    			"Reserved contains the NUMA node that does not exist under the machine",
    			v1.ResourceList{v1.ResourceMemory: *resource.NewQuantity(17, resource.DecimalSI)},
    			machineInfo,
    			[]kubeletconfig.MemoryReservation{
    				{
    					NumaNode: 0,
    					Limits: v1.ResourceList{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/riscv/obj.go

    		}
    	}
    
    	var callCount int
    	for p := cursym.Func().Text; p != nil; p = p.Link {
    		markRelocs(p)
    		if p.Mark&NEED_JAL_RELOC == NEED_JAL_RELOC {
    			callCount++
    		}
    	}
    	const callTrampSize = 8 // 2 machine instructions.
    	maxTrampSize := int64(callCount * callTrampSize)
    
    	// Compute instruction addresses.  Once we do that, we need to check for
    	// overextended jumps and branches.  Within each iteration, Pc differences
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  6. .bazelrc

    build:rbe_cross_compile_base --remote_instance_name=projects/tensorflow-testing/instances/default_instance
    
    # XLA depends on some local Python headers that are configured as Genrule. They
    # are present on the local host machine but not on the remote execution machine,
    # leading to build failures. To resolve the issue, the following line is added
    # to make sure all Genrule targets are excuted locally.
    build:rbe_cross_compile_base_xla --config=rbe_cross_compile_base
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    [[native-binaries:tool-chain-support]]
    == Tool chain support
    
    Gradle offers the ability to execute the same build using different tool chains. When you build a native binary, Gradle will attempt to locate a tool chain installed on your machine that can build the binary. You can fine tune exactly how this works, see <<#native_binaries:tool_chain,Tool chain support>> for details.
    
    The following tool chains are supported:
    
    [%header%autowidth,compact]
    |===
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  8. src/debug/elf/file_test.go

    		},
    	},
    	{
    		"testdata/go-relocation-test-gcc620-sparc64.obj",
    		FileHeader{Class: ELFCLASS64, Data: ELFDATA2MSB, Version: EV_CURRENT, OSABI: ELFOSABI_NONE, ABIVersion: 0x0, ByteOrder: binary.BigEndian, Type: ET_REL, Machine: EM_SPARCV9, Entry: 0x0},
    		[]SectionHeader{
    			{"", SHT_NULL, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0},
    			{".text", SHT_PROGBITS, SHF_ALLOC + SHF_EXECINSTR, 0x0, 0x40, 0x2c, 0x0, 0x0, 0x4, 0x0, 0x2c},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  9. tensorflow/BUILD

    # Description:
    # TensorFlow is a computational framework, primarily for use in machine
    # learning applications.
    
    load("@bazel_skylib//lib:selects.bzl", "selects")
    load("@bazel_skylib//rules:common_settings.bzl", "bool_flag", "bool_setting")
    load("@local_config_cuda//cuda:build_defs.bzl", "if_cuda")
    load(
        "//tensorflow:tensorflow.bzl",
        "VERSION",
        "VERSION_MAJOR",
        "check_deps",
        "if_google",
        "if_oss",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  10. cluster/gce/windows/k8s-node-setup.psm1

    }
    
    # Sets the environment variable $Key to $Value at the Machine scope (will
    # be present in the environment for all new shells after a reboot).
    function Set_MachineEnvironmentVar {
      param (
        [parameter(Mandatory=$true)] [string]$Key,
        [parameter(Mandatory=$true)] [AllowEmptyString()] [string]$Value
      )
      [Environment]::SetEnvironmentVariable($Key, $Value, "Machine")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top