Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 98 for substituted (0.29 sec)

  1. pkg/bootstrap/config.go

    	// 'envref'. This will allow Istio to generate the right config even if the pod info
    	// is not available (in particular in some multi-cluster cases)
    	return option.NewTemplateParams(opts...)
    }
    
    // substituteValues substitutes variables known to the bootstrap like pod_ip.
    // "http.{pod_ip}_" with pod_id = [10.3.3.3,10.4.4.4] --> [http.10.3.3.3_,http.10.4.4.4_]
    func substituteValues(patterns []string, varName string, values []string) []string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. .space/CODEOWNERS

    /compiler/testData/versionRequirement/ "Kotlin JVM"
    /compiler/testData/writeFlags/ "Kotlin JVM"
    /compiler/testData/writeSignature/ "Kotlin JVM"
    /compiler/testData/type-checker-test.kt "Kotlin Compiler Core"
    /compiler/testData/type-substitutor.kt "Kotlin Compiler Core"
    /compiler/tests/ "Kotlin Compiler Core" "Kotlin JVM" "Kotlin Native" "Kotlin Wasm" "Kotlin Common Backend"
    /compiler/tests/org/jetbrains/kotlin/klib/ "Kotlin Common Backend"
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:55:49 UTC 2024
    - 24K bytes
    - Viewed (2)
  3. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

        ImmutableList<Service> copy = ImmutableList.copyOf(services);
        if (copy.isEmpty()) {
          // Having no services causes the manager to behave strangely. Notably, listeners are never
          // fired. To avoid this we substitute a placeholder service.
          logger
              .get()
              .log(
                  Level.WARNING,
                  "ServiceManager configured with no services.  Is your application configured"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/ServiceManager.java

        ImmutableList<Service> copy = ImmutableList.copyOf(services);
        if (copy.isEmpty()) {
          // Having no services causes the manager to behave strangely. Notably, listeners are never
          // fired. To avoid this we substitute a placeholder service.
          logger
              .get()
              .log(
                  Level.WARNING,
                  "ServiceManager configured with no services.  Is your application configured"
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/infer.go

    	// It may fail because matching uses type identity while parameter passing
    	// uses assignment rules. Instantiate the parameter list with the type
    	// arguments we have, and continue with that parameter list.
    
    	// Substitute type arguments for their respective type parameters in params,
    	// if any. Note that nil targs entries are ignored by check.subst.
    	// We do this for better error messages; it's not needed for correctness.
    	// For instance, given:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  6. src/go/types/infer.go

    	// It may fail because matching uses type identity while parameter passing
    	// uses assignment rules. Instantiate the parameter list with the type
    	// arguments we have, and continue with that parameter list.
    
    	// Substitute type arguments for their respective type parameters in params,
    	// if any. Note that nil targs entries are ignored by check.subst.
    	// We do this for better error messages; it's not needed for correctness.
    	// For instance, given:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. src/os/file.go

    // os.Open does. Additionally, the root of the fs.FS returned for a relative path,
    // DirFS("prefix"), will be affected by later calls to Chdir. DirFS is therefore not
    // a general substitute for a chroot-style security mechanism when the directory tree
    // contains arbitrary content.
    //
    // The directory dir must not be "".
    //
    // The result implements [io/fs.StatFS], [io/fs.ReadFileFS] and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                        }
                    }
                    configurations.all {
                        resolutionStrategy.dependencySubstitution {
                            substitute module('com.acme.external:external') using project(":c")
                        }
                    }
                }
                project(':b') {
                    configurations.create('default') {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  9. CREDITS

    A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
    OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
    THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 15:34:20 UTC 2024
    - 1.7M bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    It also serves as a reference when writing scripts or configuring continuous integration.
    
    **Use of the <<gradle_wrapper.adoc#gradle_wrapper_reference, Gradle Wrapper>> is highly encouraged**.
    Substitute `./gradlew` (in macOS / Linux) or `gradlew.bat` (in Windows) for `gradle` in the following examples.
    
    Executing Gradle on the command-line conforms to the following structure:
    
    ----
    gradle [taskName...] [--option-name...]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top