Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 925 for Machines (0.14 sec)

  1. docs/sts/etcd.md

    # etcd V3 Quickstart Guide [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
    
    etcd is a distributed key value store that provides a reliable way to store data across a cluster of machines.
    
    ## Get started
    
    ### 1. Prerequisites
    
    - Docker 18.03 or above, refer here for [installation](https://docs.docker.com/install/).
    
    ### 2. Start etcd
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NbtAddress.java

        /**
         * A Hybrid node tries to resolve a name using the nameserver first. If
         * that fails use the broadcast address. This is the default if a nameserver
         * is provided. This is the behavior of Microsoft Windows machines.
         */
    
        public static final int H_NODE = 3;
    
        /**
         * Unknown MAC Address
         */
        public static final byte[] UNKNOWN_MAC_ADDRESS = new byte[] {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 15.2K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/CppProjectInitDescriptor.java

            return buildNativeHostTargetDefinition(host);
        }
    
        static String buildNativeHostTargetDefinition(DefaultNativePlatform host) {
            String definition = "machines.";
    
            if (host.getOperatingSystem().isWindows()) {
                definition += "windows";
            } else if (host.getOperatingSystem().isMacOsX()) {
                definition += "macOS";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 19:14:24 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/MultiProjectContinuousIntegrationTest.groovy

            downstreamSource = file("downstream/src/main/java/Downstream.java").createFile() << "class Downstream extends Upstream {}"
    
            // MacOS builds with Intel machines can be too fast on CI and
            // changes generated during build are picked up only after the build which retriggers the build
            // Fix for issue: https://github.com/gradle/gradle-private/issues/3728
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/stubtest_linux_ppc64le.S

    // between caller and callee.
    //
    // The type of call stub inserted will vary depending on GOPPC64 and the
    // buildmode (e.g pie builds shared code, default builds fixed-position code).
    // CI is set up to run for P8 and P10 machines, and this test is run in both
    // pie and default modes.
    //
    // Several functions are written with interesting st_other attributes, and
    // call each other to test various calling combinations which require stubs.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 15:06:17 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. tools/packaging/common/sidecar.env

    # Needed if the host has multiple IP.
    # ISTIO_SVC_IP=
    
    # If istio-pilot is configured with mTLS authentication (--controlPlaneAuthPolicy MUTUAL_TLS ) you must
    # also configure the mesh expansion machines:
    # ISTIO_PILOT_PORT=15005
    # ISTIO_CP_AUTH=MUTUAL_TLS
    
    # Fine tuning - useful if installing/building binaries instead of using the .deb file, or running
    # multiple instances.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 18:02:42 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/AbstractArchiveTask.java

        }
    
        /**
         * Specifies whether file timestamps should be preserved in the archive.
         * <p>
         * If <code>false</code> this ensures that archive entries have the same time for builds between different machines, Java versions and operating systems.
         * </p>
         *
         * @return <code>true</code> if file timestamps should be preserved for archive entries
         * @since 3.4
         */
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 17 20:38:33 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  8. tensorflow/c/kernels/bitcast_op.cc

    // dimension be equal to sizeof(type)/sizeof(T). The shape then goes from
    // [..., sizeof(type)/sizeof(T)] to [...].
    //
    // Bitcast is implemented as a low-level cast, so machines with different endian
    // orderings will give different results.
    typedef struct BitcastOp {
      TF_DataType input_data_type;
      TF_DataType output_data_type;
      size_t in_size;
      size_t out_size;
    } BitcastOp;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 31 03:28:11 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  9. docs/integrations/veeam/README.md

    ### Create a backup job
    
    #### Backup Virtual Machines with Veeam Backup and Replication
    
    - Under Home > Jobs > Backup in Navigation Pane, click on Backup Job button in the ribbon and choose Virtual Machine. Follow the on screen wizard.
    
    - On the Storage screen, choose the Scale-out Backup Repository that was configured previously.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/stackcheck.go

    		ldr:       ctxt.loader,
    		morestack: ctxt.loader.Lookup("runtime.morestack", 0),
    		height:    make(map[loader.Sym]int16, len(ctxt.Textp)),
    	}
    	// Compute stack effect of a CALL operation. 0 on LR machines.
    	// 1 register pushed on non-LR machines.
    	if !ctxt.Arch.HasLR {
    		sc.callSize = ctxt.Arch.RegSize
    	}
    
    	if graph {
    		// We're going to record the call graph.
    		sc.graph = make(map[loader.Sym][]stackCheckEdge)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 16:49:08 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top