Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 358 for Vm (0.26 sec)

  1. tests/integration/security/util/reachability/context.go

    											from.CallOrFail(t, opts)
    										})
    								}
    							}
    						}
    					})
    				}
    			}
    		})
    	}
    }
    
    // Exclude calls from naked->VM since naked has no Envoy
    // However, no endpoint exists for VM in k8s, so calls from naked->VM will fail, regardless of mTLS
    func isNakedToVM(from echo.Instance, to echo.Target) bool {
    	return from.Config().IsNaked() && to.Config().IsVM()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 23 21:20:43 UTC 2022
    - 8.6K bytes
    - Viewed (0)
  2. pkg/wasm/convert_test.go

    		Config: &v3.PluginConfig{
    			Vm: &v3.PluginConfig_VmConfig{
    				VmConfig: &v3.VmConfig{
    					Code: &core.AsyncDataSource{Specifier: &core.AsyncDataSource_Remote{
    						Remote: &core.RemoteDataSource{},
    					}},
    				},
    			},
    		},
    	}),
    	"remote-load-success": buildTypedStructExtensionConfig("remote-load-success", &wasm.Wasm{
    		Config: &v3.PluginConfig{
    			Vm: &v3.PluginConfig_VmConfig{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/typeinst1.go

    type R1[A any] struct{}
    func (_ R1[A]) vm()
    func (_ *R1[A]) pm()
    
    func _[T any](r R1[T], p *R1[T]) {
    	r.vm()
    	r.pm()
    	p.vm()
    	p.pm()
    }
    
    type R2[A, B any] struct{}
    func (_ R2[A, B]) vm()
    func (_ *R2[A, B]) pm()
    
    func _[T any](r R2[T, int], p *R2[string, T]) {
    	r.vm()
    	r.pm()
    	p.vm()
    	p.pm()
    }
    
    // It is ok to have multiple embedded unions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"BIF","Bits":"0|Q|1|0|1|1|1|0|1|1|1|Rm:5|0|0|0|1|1|1|Rn:5|Rd:5","Arch":"Three registers of the same type variant","Syntax":"BIF <Vd>.<T>, <Vn>.<T>, <Vm>.<T>","Code":"","Alias":""},
    {"Name":"BIT","Bits":"0|Q|1|0|1|1|1|0|1|0|1|Rm:5|0|0|0|1|1|1|Rn:5|Rd:5","Arch":"Three registers of the same type variant","Syntax":"BIT <Vd>.<T>, <Vn>.<T>, <Vm>.<T>","Code":"","Alias":""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/workloadclass.go

    // limitations under the License.
    
    package echo
    
    // WorkloadClass is the class of workload in the echo instance
    type WorkloadClass = string
    
    const (
    	Proxyless   WorkloadClass = "proxyless"
    	VM          WorkloadClass = "vm"
    	Sotw        WorkloadClass = "sotw"
    	TProxy      WorkloadClass = "tproxy"
    	Naked       WorkloadClass = "naked"
    	External    WorkloadClass = "external"
    	StatefulSet WorkloadClass = "statefulset"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  6. src/cmd/internal/bio/buf_mmap.go

    // because some operating systems place a limit on the number of
    // distinct mapped regions per process. As of this writing:
    //
    //	Darwin    unlimited
    //	DragonFly   1000000 (vm.max_proc_mmap)
    //	FreeBSD   unlimited
    //	Linux         65530 (vm.max_map_count) // TODO: query /proc/sys/vm/max_map_count?
    //	NetBSD    unlimited
    //	OpenBSD   unlimited
    var mmapLimit int32 = 1<<31 - 1
    
    func init() {
    	// Linux is the only practically concerning OS.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:20:31 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. releasenotes/notes/32462.yaml

    releaseNotes:
      - |
        **Added** two mutually-exclusive flags to `istioctl x workload entry configure`
    
        * `--internal-ip` configures the VM workload with a private IP address used for workload auto registration and health probes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 03 15:12:32 UTC 2021
    - 625 bytes
    - Viewed (0)
  8. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/MaximumHeapHelper.java

            for (String property : Arrays.asList("sun.arch.data.model", "com.ibm.vm.bitmode", "os.arch")) {
                if (System.getProperty(property, "").contains("64")) {
                    return 64;
                }
            }
            return 32;
        }
    
        @VisibleForTesting
        boolean isServerJvm() {
            return !System.getProperty("java.vm.name").toLowerCase(Locale.US).contains("client");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. src/internal/types/testdata/fixedbugs/issue50755.go

    	f4(m5)
    }
    
    // test case from issue
    
    func Copy[MC ~map[KC]VC, KC comparable, VC any](dst, src MC) {
    	for k, v := range src {
    		dst[k] = v
    	}
    }
    
    func Merge[MM ~map[KM]VM, KM comparable, VM any](ms ...MM) MM {
    	result := MM{}
    	for _, m := range ms {
    		Copy(result, m)
    	}
    	return result
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 1K bytes
    - Viewed (0)
  10. maven-plugin-api/pom.xml

                  <goal>velocity</goal>
                </goals>
                <phase>generate-sources</phase>
                <configuration>
                  <templates>
                    <template>reader-stax.vm</template>
                    <template>writer-stax.vm</template>
                  </templates>
                  <params>
                    <param>packageModelV4=org.apache.maven.api.plugin.descriptor.lifecycle</param>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top