Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 358 for Vm (0.02 sec)

  1. platforms/enterprise/enterprise-plugin-performance/src/performanceTest/groovy/org/gradle/performance/BuildScanPluginPerformanceTest.groovy

            runner.baseline {
                warmUpCount WARMUPS
                invocationCount INVOCATIONS
                displayName(WITHOUT_PLUGIN_LABEL)
                invocation {
                    // Increase client VM heap memory because of a huge amount of output events
                    clientJvmArgs("-Xmx256m", "-Xms256m")
                    args(*jobArgs)
                    tasksToRun(*tasks)
                    if (withFailure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 09:04:53 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. tools/packaging/common/sidecar.env

    # Ignore Istio iptables custom rules
    # Enable this flag if you would like to manage iptables yourself. Default to false (true/false)
    # ISTIO_CUSTOM_IP_TABLES=false
    
    # Location of provisioning certificates. VM provisioning tools must generate a certificate with
    # the expected SAN. Istio-agent will use it to connect to istiod and get fresh certificates.
    # PROV_CERT=/var/run/secrets/istio
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 18:02:42 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  3. tests/integration/pilot/common/routing.go

    					name: "dns: VM to k8s cluster IP service fqdn host",
    					from: vm,
    					to:   t.Apps.A,
    					host: t.Apps.A[0].Config().ClusterLocalFQDN(),
    				},
    				vmCase{
    					name: "dns: VM to k8s cluster IP service short name host",
    					from: vm,
    					to:   t.Apps.A,
    					host: deployment.ASvc,
    				},
    				vmCase{
    					name: "dns: VM to k8s headless service",
    					from: vm,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  4. src/runtime/type.go

    			return false
    		}
    		for i := range it.Methods {
    			tm := &it.Methods[i]
    			vm := &iv.Methods[i]
    			// Note the mhdr array can be relocated from
    			// another module. See #17724.
    			tname := resolveNameOff(unsafe.Pointer(tm), tm.Name)
    			vname := resolveNameOff(unsafe.Pointer(vm), vm.Name)
    			if tname.Name() != vname.Name() {
    				return false
    			}
    			if pkgPath(tname) != pkgPath(vname) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. build-logic/root-build/src/main/kotlin/gradlebuild.warmup-ec2.gradle.kts

     * limitations under the License.
     */
    // It might be injected by init scripts in ~/.gradle/init.d
    // https://github.com/gradle/dev-infrastructure/blob/ce8651f39f370ebe5c0c3413b5ab40a05421cfb7/salt/ami-baker/ec2-build-vm-baker/provision_by_salt.sh#L172
    if (tasks.findByName("resolveAllDependencies") == null) {
        tasks.register("resolveAllDependencies") {
            val npmInstall = tasks.findByName("kotlinNpmInstall")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 26 09:39:18 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  6. pkg/test/framework/components/gcemetadata/gce_metadata_server.yaml

    metadata:
      name: gce-metadata-server
      labels:
        app: gce-metadata
    spec:
      # Use LB service so it can be reached cross cluster
      type: LoadBalancer
      ports:
      - name: http
        port: 8080
      - name: http-vm
        port: 8081
      selector:
        app: gce-metadata
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: gce-metadata-server
    spec:
      replicas: 1
      selector:
        matchLabels:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 04 22:47:52 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

                "java.specification.vendor",
                "java.specification.name",
                "java.vm.version",
                "java.vm.specification.version",
                "java.vm.specification.vendor",
                "java.vm.specification.name",
                "java.vm.version",
                "java.vm.vendor",
                "java.vm.name",
                "java.class.version",
                "java.home",
                "java.class.path",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/LongRunningOperation.java

        /**
         * Appends Java VM arguments to the existing list.
         *
         * @param jvmArguments the argument to use for the Gradle process
         * @return this
         * @since 5.0
         */
        LongRunningOperation addJvmArguments(Iterable<String> jvmArguments);
    
        /**
         * Specifies the Java VM arguments to use for this operation.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 14K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/echotest/echotest.go

    	copy(s, instances)
    	copy(d, instances)
    	t := &T{
    		rootCtx:      ctx,
    		cfg:          config.New(ctx),
    		sources:      s,
    		destinations: d,
    	}
    	if ctx.Settings().Skip(echo.VM) {
    		t = t.FromMatch(match.NotVM).ToMatch(match.NotVM)
    	}
    	return t
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 27 23:26:33 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/matchers/UserAgentMatcher.java

        private String expectedUserAgentString() {
            String javaVendor = System.getProperty("java.vendor");
            String javaVersion = System.getProperty("java.version");
            String javaVendorVersion = System.getProperty("java.vm.version");
            String osName = System.getProperty("os.name");
            String osVersion = System.getProperty("os.version");
            String osArch = System.getProperty("os.arch");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top