Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 726 for alias2 (0.21 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_import.h

    // Gets the function aliases from the SavedModel.
    absl::StatusOr<absl::flat_hash_map<FunctionName, FunctionAlias>>
    GetFunctionAliases(absl::string_view saved_model_path,
                       const std::unordered_set<std::string>& tags);
    
    // Updates the function aliases. `module_op` may have different
    // function names from the original model, so it re-associates the aliases
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. pilot/pkg/security/trustdomain/bundle.go

    type Bundle struct {
    	// Contain the local trust domain and its aliases.
    	// The trust domain corresponds to the trust root of a system.
    	// Refer to [SPIFFE-ID](https://github.com/spiffe/spiffe/blob/master/standards/SPIFFE-ID.md#21-trust-domain)
    	// The trust domain aliases represent the aliases of `trust_domain`.
    	// For example, if we have
    	// trustDomain: td1, trustDomainAliases: ["td2", "td3"]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 23 15:48:01 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                inCatalog("libs")
                alias(reserved)
                reservedAliases "extensions", "convention"
            })
    
            and:
            verifyAll(receivedProblem) {
                fqid == 'dependency-version-catalog:reserved-alias-name'
                contextualLabel == "Problem: In version catalog libs, alias '$reserved' is not a valid alias."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue67547.go

    	var p P1
    	type A = P2
    	_ = A(p) // conversion must be valid
    }
    
    func _[P int | string]() {
    	var p P
    	type A = int
    	// preserve target type name A in error messages when using Alias types
    	// (test are run with and without Alias types enabled, so we need to
    	// keep both A and int in the error message)
    	_ = A(p /* ERRORx `cannot convert string \(in P\) to type (A|int)` */)
    }
    
    func _[P struct{ x int }]() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. cmd/kube-controller-manager/app/controllermanager.go

    			panic(fmt.Sprintf("controller %q does not have an init function", name))
    		}
    
    		for _, alias := range controllerDesc.GetAliases() {
    			if aliases.Has(alias) {
    				panic(fmt.Sprintf("controller %q has a duplicate alias %q", name, alias))
    			}
    			aliases.Insert(alias)
    		}
    
    		controllers[name] = controllerDesc
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 13:03:53 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/generate.txt

    env GOBIN=$WORK/tmp/bin
    go install echo.go
    env PATH=$GOBIN${:}$PATH
    
    # Test go generate handles a simple command
    go generate ./generate/simple.go
    stdout 'Success'
    
    # Test go generate handles a command alias
    go generate './generate/alias.go'
    stdout 'Now is the time for all good men'
    
    # Test go generate's variable substitution
    go generate './generate/substitution.go'
    stdout $GOARCH' substitution.go:7 pabc xyzp/substitution.go/123'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 03:24:24 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/internal/genflags/vetflag.go

    	}
    
    	rDeprecated := regexp.MustCompile("^deprecated alias for -(?P<analyzer>(.+))$")
    	// Returns the original value matched by rDeprecated on input value.
    	// If there is no match, "" is returned.
    	originalValue := func(value string) string {
    		match := rDeprecated.FindStringSubmatch(value)
    		if len(match) < 2 {
    			return ""
    		}
    		return match[1]
    	}
    	// extract deprecated aliases for existing analyses
    	for _, flag := range analysisFlags {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/keystore/TestKeyStore.groovy

            target.load(null, null);
            for (alias in original.aliases()) {
                if (original.isKeyEntry(alias)) {
                    Key key = original.getKey(alias, password.toCharArray())
                    target.setKeyEntry(alias, key, password.toCharArray(), original.getCertificateChain(alias));
                } else {
                    Certificate cert = original.getCertificate(alias);
                    target.setCertificateEntry(alias, cert);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/typeparams/free.go

    	}
    	w.seen[typ] = false
    	defer func() {
    		w.seen[typ] = res
    	}()
    
    	switch t := typ.(type) {
    	case nil, *types.Basic: // TODO(gri) should nil be handled here?
    		break
    
    	case *aliases.Alias:
    		return w.Has(aliases.Unalias(t))
    
    	case *types.Array:
    		return w.Has(t.Elem())
    
    	case *types.Slice:
    		return w.Has(t.Elem())
    
    	case *types.Struct:
    		for i, n := 0, t.NumFields(); i < n; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. src/go/types/object_test.go

    		{NewTypeName(nopos, nil, "rune", Typ[Rune]), true},                // type name refers to basic type rune which is an alias already
    		{t5, false}, // type name refers to type parameter and vice versa
    	} {
    		check(test.name, test.alias)
    	}
    }
    
    // TestEmbeddedMethod checks that an embedded method is represented by
    // the same Func Object as the original method. See also go.dev/issue/34421.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top