Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 787 for alias2 (0.1 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilder.java

                configureVersionCatalogError(builder, getProblemInVersionCatalog() + "alias '" + alias + "' is not a valid alias.", RESERVED_ALIAS_NAME)
                    .details("Alias '" + alias + "' is a reserved name in Gradle which prevents generation of accessors.")
                    .solution("Use a different alias which doesn't contain " + getExcludedNames(reservedNames) + ".")));
        }
    
        @Nonnull
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/recv.go

    	}
    	named, _ = aliases.Unalias(t).(*types.Named)
    	return
    }
    
    // Unpointer returns T given *T or an alias thereof.
    // For all other types it is the identity function.
    // It does not look at underlying types.
    // The result may be an alias.
    //
    // Use this function to strip off the optional pointer on a receiver
    // in a field or method selection, without losing the named type
    // (which is needed to compute the method set).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. fastapi/param_functions.py

                allowed by the alias or set of aliases defined.
                """
            ),
        ] = None,
        serialization_alias: Annotated[
            Union[str, None],
            Doc(
                """
                'Blacklist' validation step. The vanilla parameter field will be the
                single one of the alias' or set of aliases' fields and all the other
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationIndex.kt

        /**
         * Maps a simple name `N` to type aliases `A` in whose definition `N` occurs as the topmost user type, which is a prerequisite for other
         * classes inheriting from `N` by referring to `A`. Does not support function types (e.g. `Function1`).
         *
         * There is no guarantee that the type alias can be inherited from. For example, if its expanded type is final, the type alias is not
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/decls4.go

    var _ interface{ m1(); m2() } = x0
    
    // alias receiver types (test case for issue #23042)
    type T struct{}
    
    var (
    	_ = T.m
    	_ = T{}.m
    	_ interface{m()} = T{}
    )
    
    var (
    	_ = T.n
    	_ = T{}.n
    	_ interface{m(); n()} = T{}
    )
    
    type U = T
    func (U) m() {}
    
    // alias receiver types (long type declaration chains)
    type (
    	V0 = V1
    	V1 = (V2)
    	V2 = ((V3))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 17:24:42 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. pkg/collateral/control.go

    		g.emit("</code></pre>")
    
    		if len(cmd.Aliases) > 0 {
    			// first word in cmd.Use represents the command that is being aliased
    			word := cmd.Use
    			index := strings.Index(word, " ")
    			if index > 0 {
    				word = word[0:index]
    			}
    
    			g.emit("<div class=\"aliases\">")
    			line := cmd.UseLine()
    			for i, alias := range cmd.Aliases {
    				r := strings.Replace(line, word, alias, 1)
    				if i == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 03:51:36 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  7. tests/test_repeated_parameter_alias.py

    from fastapi.testclient import TestClient
    
    app = FastAPI()
    
    
    @app.get("/{repeated_alias}")
    def get_parameters_with_repeated_aliases(
        path: str = Path(..., alias="repeated_alias"),
        query: str = Query(..., alias="repeated_alias"),
    ):
        return {"path": path, "query": query}
    
    
    client = TestClient(app)
    
    
    def test_get_parameters():
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/testdata/alias.yaml.golden

    Mike Morris <******@****.***> 1702326113 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. doc/next/6-stdlib/99-minor/go/types/cl-577715.md

    <!-- CL 577715, CL 579076 -->
    By default, go/types now produces [Alias] type nodes for type aliases.
    This behavior can be controlled by the `GODEBUG` `gotypesalias` flag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 21:30:00 UTC 2024
    - 230 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_import.cc

          if (auto alias_itr = function_aliases.find(original_func_name.str());
              alias_itr != function_aliases.end()) {
            const FunctionAlias alias = alias_itr->second;
            function_aliases[func_name] = alias;
          }
        }
      });
    
      // Remove aliases to function that no-longer exists.
      absl::erase_if(function_aliases, [&existing_func_names](const auto& item) {
        return !existing_func_names.contains(item.first);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top