Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 358 for Vm (0.04 sec)

  1. samples/bookinfo/networking/destination-rule-all-mtls.yaml

      subsets:
      - name: v1
        labels:
          version: v1
      - name: v2
        labels:
          version: v2
      - name: v2-mysql
        labels:
          version: v2-mysql
      - name: v2-mysql-vm
        labels:
          version: v2-mysql-vm
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: details
    spec:
      host: details
      trafficPolicy:
        tls:
          mode: ISTIO_MUTUAL
      subsets:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 09 23:15:58 UTC 2018
    - 1.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java

        @Resource
        protected DynamicProperties systemProperties;
    
        private static final String[] bugReportLabels =
                { "file.separator", "file.encoding", "java.runtime.version", "java.vm.info", "java.vm.name", "java.vm.vendor",
                        "java.vm.version", "os.arch", "os.name", "os.version", "user.country", "user.language", "user.timezone" };
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/AsdfInstallationSupplierTest.groovy

            when:
            def directories = supplier.get()
    
            then:
            directories.size() == 1
            directories[0].location == expectedLocation
            directories[0].source == "asdf-vm"
        }
    
        def "supplies multiple installations for multiple paths"() {
            given:
            def expectedLocation1 = candidates.createDir("installs/java/11.0.6.hs-adpt")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/CommandLineIntegrationSpec.groovy

            when:
            def gradle = executer.withArgument("-Dorg.gradle.debug=true").withTasks("help").start()
    
            then:
            ConcurrentTestUtil.poll() {
                // Connect, resume threads, and disconnect from VM
                jdwpClient.connect().dispose()
            }
            gradle.waitForFinish()
        }
    
        @Issue('https://github.com/gradle/gradle/issues/18084')
        @Requires(IntegTestPreconditions.NotEmbeddedExecutor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 05:05:14 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  5. releasenotes/notes/ssh-iptables.yaml

        when using Istio on VMs. This configuration was hardcoded into the iptables logic, meaning there was no way to
        capture traffic on port 22.
    
        The iptables logic now no longer has special logic on port 22. Instead, the `istioctl x workload entry configure`
        command will automatically configure `ISTIO_LOCAL_EXCLUDE_PORTS` to include port 22. This means that VM users will
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 06 15:15:39 UTC 2021
    - 1K bytes
    - Viewed (0)
  6. pilot/pkg/model/extensions.go

    	}
    
    	cfg.VmConfig.EnvironmentVariables.KeyValues[WasmResourceVersionEnv] = resourceVersion
    
    	vm := wasmPlugin.VmConfig
    	if vm != nil && len(vm.Env) != 0 {
    		hostEnvKeys := make([]string, 0, len(vm.Env))
    		for _, e := range vm.Env {
    			switch e.ValueFrom {
    			case extensions.EnvValueSource_INLINE:
    				cfg.VmConfig.EnvironmentVariables.KeyValues[e.Name] = e.Value
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/common/deployment/namespace.go

    	n.ProxylessGRPC = match.ServiceName(echo.NamespacedName{Name: ProxylessGRPCSvc, Namespace: ns}).GetMatches(echos)
    	if !t.Settings().Skip(echo.VM) {
    		n.VM = match.ServiceName(echo.NamespacedName{Name: VMSvc, Namespace: ns}).GetMatches(echos)
    	}
    	if !t.Settings().Skip(echo.Sotw) {
    		n.Sotw = match.ServiceName(echo.NamespacedName{Name: SotwSvc, Namespace: ns}).GetMatches(echos)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. maven-embedder/pom.xml

              <models>
                <model>src/main/mdo/core-extensions.mdo</model>
              </models>
              <templates>
                <template>model.vm</template>
                <template>reader-stax.vm</template>
                <template>writer-stax.vm</template>
              </templates>
              <params>
                <param>packageModelV4=org.apache.maven.cli.internal.extension.model</param>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/match/matchers.go

    	return func(i echo.Instance) bool {
    		return i.Config().Cluster.NetworkName() == n
    	}
    }
    
    // VM matches instances with DeployAsVM
    var VM Matcher = func(i echo.Instance) bool {
    	return i.Config().IsVM()
    }
    
    // NotVM is matches against instances that are NOT VMs.
    var NotVM = Not(VM)
    
    // External matches instances that have a custom DefaultHostHeader defined
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. src/packaging/common/systemd/sysctl/fess.conf

    vm.max_map_count=${packaging.os.max.map.count}...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Dec 10 01:24:02 UTC 2015
    - 47 bytes
    - Viewed (0)
Back to top