Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 566 for substituted (0.21 sec)

  1. guava/src/com/google/common/base/Verify.java

       *     errorMessageArgs[0]}, etc. Unmatched arguments will be appended to the formatted message in
       *     square braces. Unmatched placeholders will be left as-is.
       * @param errorMessageArgs the arguments to be substituted into the message template. Arguments
       *     are converted to strings using {@link String#valueOf(Object)}.
       * @throws VerifyException if {@code expression} is {@code false}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 18.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    func (t Tag) IsRoot() bool {
    	if t.full != nil {
    		return t.full.IsRoot()
    	}
    	return t.language == _und
    }
    
    // Parent returns the CLDR parent of t. In CLDR, missing fields in data for a
    // specific language are substituted with fields from the parent language.
    // The parent for a language may change for newer versions of CLDR.
    func (t Tag) Parent() Tag {
    	if t.full != nil {
    		return Make(t.full.Parent())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. 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)
  4. src/internal/types/testdata/check/issues1.go

    // elements when checking if a constraint is satisfied by a type.
    // The underlying type of each term must be computed after the
    // interface has been instantiated as its constraint may contain
    // a type parameter that was substituted with a defined type.
    // Test case from an (originally) failing example.
    
    type sliceOf[E any] interface{ ~[]E }
    
    func append[T interface{}, S sliceOf[T], T2 interface{}](s S, t ...T2) S { panic(0) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:56:37 UTC 2023
    - 6K bytes
    - Viewed (0)
  5. 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)
  6. guava/src/com/google/common/base/Stopwatch.java

     * <ul>
     *   <li>The raw {@code long} values returned by {@code nanoTime} are meaningless and unsafe to use
     *       in any other way than how {@code Stopwatch} uses them.
     *   <li>An alternative source of nanosecond ticks can be substituted, for example for testing or
     *       performance reasons, without affecting most of your code.
     * </ul>
     *
     * <p>The one downside of {@code Stopwatch} relative to {@link System#nanoTime()} is that {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 23 15:09:35 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. android/guava/src/com/google/common/base/Stopwatch.java

     * <ul>
     *   <li>The raw {@code long} values returned by {@code nanoTime} are meaningless and unsafe to use
     *       in any other way than how {@code Stopwatch} uses them.
     *   <li>An alternative source of nanosecond ticks can be substituted, for example for testing or
     *       performance reasons, without affecting most of your code.
     * </ul>
     *
     * <p>The one downside of {@code Stopwatch} relative to {@link System#nanoTime()} is that {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Nov 15 21:38:09 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  10. 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)
Back to top