Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 63 for substitutions (0.16 sec)

  1. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolverTest.groovy

            def result = resolve(include('TEST(FILENAME, _NAME, ~)'))
            result.complete
            result.files.file as List == [header]
        }
    
        def "can chain token concatenations with parameter substitutions"() {
            given:
            def header = systemIncludeDir.createFile("test.h")
    
            macros << macro("FILENAME", '"test.h"')
            macroFunctions << macroFunction("TEST2(X)", "X")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  2. pkg/kubelet/container/helpers.go

    	}
    
    	return result
    }
    
    // ExpandContainerCommandOnlyStatic substitutes only static environment variable values from the
    // container environment definitions. This does *not* include valueFrom substitutions.
    // TODO: callers should use ExpandContainerCommandAndArgs with a fully resolved list of environment.
    func ExpandContainerCommandOnlyStatic(containerCommand []string, envs []v1.EnvVar) (command []string) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    - Groovy has been updated to https://groovy-lang.org/changelogs/changelog-2.5.12.html[Groovy 2.5.12].
    
    ==== Dependency substitutions and variant aware dependency resolution
    
    While adding support for expressing <<resolution_rules#sec:variant_aware_substitutions, variant support>> in dependency substitutions, a bug fix introduced a behaviour change that some builds may rely upon.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. docs/sts/ldap.md

    MINIO_IDENTITY_LDAP_USER_DN_SEARCH_FILTER*   (string)    Search filter to lookup user DN
    ```
    
    The search filter must use the LDAP username to find the user DN. This is done via [variable substitution](#variable-substitution-in-configuration-strings).
    
    The returned user's DN and their password are then verified with the LDAP server. The user DN may also be associated with an [access policy](#managing-usergroup-access-policy).
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/script/cmds.go

    			},
    		},
    		func(s *State, args ...string) (WaitFunc, error) {
    			return nil, doCompare(s, false, args...)
    		})
    }
    
    // Cmpenv is like Compare, but also performs environment substitutions
    // on the contents of both arguments.
    func Cmpenv() Cmd {
    	return Command(
    		CmdUsage{
    			Args:    "[-q] file1 file2",
    			Summary: "compare files for differences, with environment expansion",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    [[sec:dependency_substitution_rules]]
    == Using dependency substitution rules
    
    Dependency substitution rules work similarly to dependency resolve rules.
    In fact, many capabilities of dependency resolve rules can be implemented with dependency substitution rules.
     They allow project and module dependencies to be transparently substituted with specified replacements.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/subst.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements type parameter substitution.
    
    package types2
    
    import (
    	"cmd/compile/internal/syntax"
    )
    
    type substMap map[*TypeParam]Type
    
    // makeSubstMap creates a new substitution map mapping tpars[i] to targs[i].
    // If targs[i] is nil, tpars[i] is not substituted.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. src/go/types/subst.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements type parameter substitution.
    
    package types
    
    import (
    	"go/token"
    )
    
    type substMap map[*TypeParam]Type
    
    // makeSubstMap creates a new substitution map mapping tpars[i] to targs[i].
    // If targs[i] is nil, tpars[i] is not substituted.
    func makeSubstMap(tpars []*TypeParam, targs []Type) substMap {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/infer.go

    	//
    	//   func f[P, Q any](P, Q) {}
    	//
    	//   func _(s string) {
    	//           f[int](s, s) // ERROR
    	//   }
    	//
    	// With substitution, we get the error:
    	//   "cannot use s (variable of type string) as int value in argument to f[int]"
    	//
    	// Without substitution we get the (worse) error:
    	//   "type string of s does not match inferred type int for P"
    	// even though the type int was provided (not inferred) for P.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/dependencysubstitution/DefaultDependencySubstitutions.java

            @Override
            public void execute(DependencySubstitution substitution) {
                super.execute(substitution);
                ModuleVersionSelector requested = componentSelectorConverter.getSelector(substitution.getRequested());
                DefaultDependencyResolveDetails details = instantiator.newInstance(DefaultDependencyResolveDetails.class, substitution, requested);
                delegate.execute(details);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 28.8K bytes
    - Viewed (0)
Back to top