Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 787 for alias2 (1.03 sec)

  1. src/math/big/nat_test.go

    	for _, mode := range []string{"noalias", "aliasX", "aliasY"} {
    		t.Run(mode, func(t *testing.T) {
    			for _, tt := range subMod2NTests {
    				x0 := natFromString(tt.x)
    				y0 := natFromString(tt.y)
    				want := natFromString(tt.z)
    				x := nat(nil).set(x0)
    				y := nat(nil).set(y0)
    				var z nat
    				switch mode {
    				case "aliasX":
    					z = x
    				case "aliasY":
    					z = y
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 09 15:29:36 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/wasm/a.out.go

    const (
    	/* mark flags */
    	DONE          = 1 << iota
    	PRESERVEFLAGS // not allowed to clobber flags
    )
    
    /*
     *	wasm
     */
    const (
    	AGet = obj.ABaseWasm + obj.A_ARCHSPECIFIC + iota
    	ASet
    	ATee
    	ANot // alias for I32Eqz
    
    	// The following are low-level WebAssembly instructions.
    	// Their order matters, since it matches the opcode encoding.
    	// Gaps in the encoding are indicated by comments.
    
    	AUnreachable // opcode 0x00
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. pilot/pkg/security/model/authentication_test.go

    								},
    							},
    						},
    					},
    				},
    			},
    		},
    		{
    			name: "MTLSStrict using SDS and SAN aliases",
    			node: &model.Proxy{
    				Metadata: &model.NodeMetadata{},
    			},
    			validateClient:     true,
    			trustDomainAliases: []string{"alias-1.domain", "some-other-alias-1.domain", "alias-2.domain"},
    			expected: &auth.CommonTlsContext{
    				TlsCertificateSdsSecretConfigs: []*auth.SdsSecretConfig{
    					{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 20 22:39:21 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/mark_input_output_aliases.cc

    constexpr int kUnassigned = -1;
    
    struct AliasInfo {
      AliasInfo() : input_index(kUnassigned), output_index(kUnassigned) {}
      int input_index;
      int output_index;
    };
    
    // Idenitfy tf_device.cluster_func input-output alias pairs.
    // This is currently conservative, primarily handling the following base case:
    // ```
    // %value = tf.ReadVariableOp(%resource_var)
    // %output:N = tf_device.cluster_func(..., /*input index = a*/ %value, ...)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 04:14:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/yaml/yaml_test.go

    kind: ConfigMap
    metadata:
    name: yaml-bomb
    namespace: default
    `),
    			benchmark: true,
    		},
    		{
    			name:      "3MB map without alias",
    			data:      []byte(`a: &a [{a}` + strings.Repeat(`,{a}`, 3*1024*1024/4) + `]`),
    			benchmark: true,
    		},
    		{
    			name:  "3MB map with alias",
    			error: "excessive aliasing",
    			data: []byte(`
    a: &a [{a}` + strings.Repeat(`,{a}`, 3*1024*1024/4) + `]
    b: &b [*a]`),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 06 20:18:22 UTC 2020
    - 14.3K bytes
    - Viewed (0)
  6. src/crypto/aes/gcm_s390x.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !purego
    
    package aes
    
    import (
    	"crypto/cipher"
    	"crypto/internal/alias"
    	"crypto/subtle"
    	"errors"
    	"internal/byteorder"
    	"internal/cpu"
    )
    
    // This file contains two implementations of AES-GCM. The first implementation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. tools/docker-builder/docker.go

    	}
    
    	root := filepath.Join(testenv.LocalOut, "release", "docker")
    	for name, alias := range files {
    		// Gzip the file
    		if err := VerboseCommand("gzip", "--fast", "--force", filepath.Join(root, name+".tar")).Run(); err != nil {
    			return err
    		}
    		// If it has an alias (ie pilot-debug -> pilot), copy it over. Copy after gzip to avoid double compute.
    		if alias != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 11K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

    must be a mapping of device alias to list of explicit or aliased device names
    from the outer scope. The device name map specifies devices on which replicated
    ops inside tf_device.replicate will be executed.
    
    A tf_device.parallel_execute inside the tf_device.replicate op region may be
    used to represent computations across a larger set of devices. In that case, the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  9. tests/test_response_by_alias.py

    
    @app.get("/by-alias/model", response_model=Model)
    def by_alias_model():
        return Model(alias="Foo")
    
    
    @app.get("/by-alias/list", response_model=List[Model])
    def by_alias_list():
        return [{"alias": "Foo"}, {"alias": "Bar"}]
    
    
    @app.get("/no-alias/dict", response_model=ModelNoAlias)
    def no_alias_dict():
        return {"name": "Foo"}
    
    
    @app.get("/no-alias/model", response_model=ModelNoAlias)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  10. src/go/types/check.go

    	}
    	check.brokenAliases[alias] = true
    	alias.typ = Typ[Invalid]
    }
    
    // validAlias records that alias has the valid type typ (possibly Typ[Invalid]).
    func (check *Checker) validAlias(alias *TypeName, typ Type) {
    	assert(!check.conf._EnableAlias)
    	delete(check.brokenAliases, alias)
    	alias.typ = typ
    }
    
    // isBrokenAlias reports whether alias doesn't have a determined type yet.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top