Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 230 for substituted (0.18 sec)

  1. docs/sts/ldap.md

    export MINIO_IDENTITY_LDAP_TLS_SKIP_VERIFY=on
    ```
    
    ### Variable substitution in configuration strings
    
    In the configuration variables, `%s` is substituted with the _username_ from the STS request and `%d` is substituted with the _distinguished username (user DN)_ of the LDAP user. Please see the following table for which configuration variables support these substitution variables:
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/internal/tooling/IsolatedProjectsSafeIdeaModelBuilder.java

        }
    
        @Override
        public DefaultIdeaProject buildForRoot(Project project, boolean offlineDependencyResolution) {
            requireRootProject(project);
    
            // Ensure unique module names for dependencies substituted from included builds
            applyIdeaPluginToBuildTree(project);
    
            IdeaModelParameter parameter = createParameter(offlineDependencyResolution);
            return build(project, parameter);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:17:44 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MixedMavenAndIvyModulesIntegrationTest.groovy

                        }
                    }
                }
            }
        }
    
        def "selects default configuration of ivy module when dependency from consuming maven module is substituted"() {
            def m1 = ivyRepo.module("org.test", "m1", "1.0")
                .configuration("compile")
                .publish()
            def m2 = ivyRepo.module("org.test", "m2", "1.0").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyResolveIntegrationTest.groovy

                }
            }
        }
    
        // TODO: This is not desired behavior. We should deprecate and forbid this.
        def "can consume non-consumable project configuration when substituted as a transitive dependency"() {
    
            file("included/settings.gradle") << """
                rootProject.name = "transitive"
            """
            file("included/build.gradle") << """
                group = "org"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirPsiTypeProvider.kt

                // E.g., Comparable<Test>
                val newType = substituteOrNull(type) ?: continue
                // Visit new type: e.g., Test, as a type argument, is substituted with Comparable<Test>, again.
                if (newType.hasRecursiveTypeArgument(visited)) return true
            }
            return false
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/PublishedDependencyConstraintsIntegrationTest.groovy

                root(":", ":test:") {
                    module("org:bar:1.0")
                    module("org:first-level:1.0")
                }
            }
        }
    
        void "dependency constraint on substituted module is recognized properly"() {
            given:
            def available = featureAvailable()
            repository {
                'org:foo:1.0'()
                'org:foo:1.1'()
                'org:bar:1.0'()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  7. src/regexp/regexp.go

    	})
    	return string(b)
    }
    
    // ReplaceAllLiteralString returns a copy of src, replacing matches of the [Regexp]
    // with the replacement string repl. The replacement repl is substituted directly,
    // without using [Regexp.Expand].
    func (re *Regexp) ReplaceAllLiteralString(src, repl string) string {
    	return string(re.replaceAll(nil, src, 2, func(dst []byte, match []int) []byte {
    		return append(dst, repl...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

        "ici_weight_distribution_mlir_bridge_marker";
    
    struct XlaBroadcast : public impl::XlaBroadcastPassBase<XlaBroadcast> {
      void runOnOperation() override;
    };
    
    // Returns true iff the broadcast val can be substituted with an XlaAllReduce.
    // Sets `zero` and `shape` as params for the dummy zeros that will be created.
    bool GetDummyParams(OpBuilder& builder, Value val_bcast, Attribute& zero,
                        DenseIntElementsAttr& shape) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

            }
            return null;
        }
    
        private List<NodeState> findTargetNodes() {
            List<NodeState> targetNodes = this.targetNodes;
            if (targetNodes.isEmpty()) {
                // happens for substituted dependencies
                ComponentState targetComponent = getTargetComponent();
                if (targetComponent != null) {
                    targetNodes = targetComponent.getNodes();
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  10. src/cmd/dist/buildtool.go

    // no other slashes, which are commands, and other paths, which are packages
    // supporting the commands. Packages in the standard library can be listed
    // if a newer copy needs to be substituted for the Go bootstrap copy when used
    // by the command packages. Paths ending with /... automatically
    // include all packages within subdirectories as well.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 23:29:41 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top