Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 787 for alias2 (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/aliases.go

    Michael Matloob <******@****.***> 1709746618 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 385 bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/aliases.go

    Michael Matloob <******@****.***> 1715181059 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 281 bytes
    - Viewed (0)
  3. hack/.import-aliases

    SataQiu <******@****.***> 1692249135 +0800
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 17 05:27:21 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/platforms.adoc

    Aliases must consist of a series of identifiers separated by a dash (`-`, recommended), an underscore (`_`) or a dot (`.`).
    Identifiers themselves must consist of ascii characters, preferably lowercase, eventually followed by numbers.
    
    For example:
    
    - `guava` is a valid alias
    - `groovy-core` is a valid alias
    - `commons-lang3` is a valid alias
    - `androidx.awesome.lib` is also a valid alias
    - but `this.#is.not!`
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/VersionCatalogDependencyRegistryTest.groovy

            registry.libraries.size() == 2
            registry.versions[0].alias == "group-artifact"
            registry.versions[1].alias == "group-artifact-x1"
            registry.versions[0].version == "1.1"
            registry.versions[1].version == "1.2"
            registry.libraries[0].alias == "group-artifact"
            registry.libraries[1].alias == "group-artifact-x1"
            registry.libraries[0].versionRef == "group-artifact"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/compiler/mlir/tensorflow/transforms/test_resource_alias_analysis.cc

          if (analysis.IsUnknownResource(value)) {
            diag << "Unknown";
          } else {
            auto aliases = llvm::to_vector<4>(analysis.GetResourceAliases(value));
            llvm::sort(aliases,
                       [&](Value v1, Value v2) { return get_id(v1) < get_id(v2); });
            llvm::interleaveComma(aliases, diag,
                                  [&](Value v) { diag << get_id(v); });
          }
        };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top