Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 170 for substitutions (0.3 sec)

  1. src/os/path_windows_test.go

    	// (256) and thus requires fixLongPath to be correctly interpreted in I/O syscalls.
    	veryLong := "l" + strings.Repeat("o", 500) + "ng"
    	for _, test := range []struct{ in, want string }{
    		// Test cases use word substitutions:
    		//   * "long" is replaced with a very long pathname
    		//   * "c:" or "C:" are replaced with the drive of the current directory (preserving case)
    		//   * "cwd" is replaced with the current directory
    
    		// Drive Absolute
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:37:32 UTC 2024
    - 8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReader.java

            }
        }
    
        /**
         * Checks if the given value contains variable substitutions.
         *
         * @param value value to check
         * @return true if the value contains substitutions, false otherwise.
         */
        public static boolean hasUnresolvedSubstitutions(String value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/maven/RealisedMavenModuleResolveMetadata.java

                return ImmutableList.of(metadata.artifact("jar", "jar", null));
            } else {
                String type = metadata.getPackaging();
                // We were unable to resolve variable substitutions in the POM, so assume we're looking for a jar
                if (PomReader.hasUnresolvedSubstitutions(type)) {
                    return ImmutableList.of(metadata.artifact("jar", "jar", null));
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

            'yes'                   | "includeBuild('.')"
            // If substitutions for the root would be controllable (e.g. by the first include statement encountered) this would enable you to not have the ':subproject1' substitution
            // This documents the current behavior. It is unclear if this is a useful functionality to have.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  5. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/idea/CompositeBuildIdeaProjectIntegrationTest.groovy

            imlHasDependencies "buildB", "b1"
        }
    
        @ToBeFixedForConfigurationCache
        def "builds IDEA metadata with transitive substitutions"() {
            given:
            dependency "org.test:buildB:1.0"
            apiDependency buildB, "org.test:buildC:1.0"
    
            def buildC = singleProjectBuild("buildC") {
                buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	st.advance(i)
    	return &Clone{Base: a, Suffix: suffix}
    }
    
    // substitutions is the list of substitution candidates that may
    // appear later in the string.
    type substitutions []AST
    
    // add adds a new substitution candidate.
    func (subs *substitutions) add(a AST) {
    	*subs = append(*subs, a)
    }
    
    // subAST maps standard substitution codes to the corresponding AST.
    var subAST = map[byte]AST{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top