Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 475 for locations (0.2 sec)

  1. manifests/charts/base/crds/crd-all.gen.yaml

          name: Hosts
          type: string
        - description: Whether the service is external to the mesh or part of the mesh
            (MESH_EXTERNAL or MESH_INTERNAL)
          jsonPath: .spec.location
          name: Location
          type: string
        - description: Service resolution mode for the hosts (NONE, STATIC, or DNS)
          jsonPath: .spec.resolution
          name: Resolution
          type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  2. pom.xml

    							<sources>
    								<source>
    									<location>${project.build.directory}/tomcat-lib</location>
    								</source>
    							</sources>
    						</mapping>
    						<mapping>
    							<directory>${packaging.fess.lib.dir}/classes/org/codelibs/fess</directory>
    							<sources>
    								<source>
    									<location>${project.build.directory}/fess/WEB-INF/classes/org/codelibs/fess</location>
    									<includes>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r27/ToolingApiEclipseLinkedResourcesCrossVersionSpec.groovy

            subprojectA.linkedResources[0].location == normaliseFileSeparators(projectBsrcSiblingFolder.getAbsolutePath())
            subprojectA.linkedResources[0].locationUri == null
    
            subprojectA.linkedResources[1].name == 'src-root'
            subprojectA.linkedResources[1].type == '2'
            subprojectA.linkedResources[1].location == normaliseFileSeparators(srcRootFolder1.getAbsolutePath())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInTaskIntegrationTest.groovy

                withProblem("$location: external process started")
            }
    
            where:
            snippetsFactory                      | location
            exec("getProject()").java            | "Unknown location" // TODO(mlopatkin): Fix location there
            javaexec("getProject()").java        | "Unknown location"
            exec("getExecOperations()").java     | "Unknown location"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-provider/src/test/kotlin/org/gradle/internal/declarativedsl/settings/SettingsBlockCheckTest.kt

                plugins { }
                rootProject.name = "foo"
                plugins { }
                """.trimIndent()
            )
    
            assertEquals(2, result.size)
            assertEquals(listOf(2, 4), result.map { it.location.sourceData.lineRange.first })
            assertTrue(result.all { it.reason == DocumentCheckFailureReason.DuplicatePluginsBlock })
        }
    
        @Test
        fun `reports all duplicate pluginManagement blocks`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-kotlin-extensions/src/main/kotlin/org/gradle/internal/extensions/core/ScriptSourceExtensions.kt

     */
    
    package org.gradle.internal.extensions.core
    
    import org.gradle.groovy.scripts.ScriptSource
    import java.net.URI
    
    
    /**
     * Same as `resource.location.uri`.
     */
    val ScriptSource.uri: URI?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 16:55:36 UTC 2024
    - 835 bytes
    - Viewed (0)
  7. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

        }
    
        private File getJavaHome(File location) {
            if (OperatingSystem.current().isMacOsX()) {
                if (new File(location, MAC_OS_JAVA_HOME_FOLDER).exists()) {
                    return new File(location, MAC_OS_JAVA_HOME_FOLDER);
                }
    
                File[] subfolders = location.listFiles(File::isDirectory);
                if (subfolders != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblemsSummaryTest.kt

                summary.problemCount,
                equalTo(3)
            )
        }
    
        private
        fun buildLogicProblem(location: String, message: String) = PropertyProblem(
            PropertyTrace.BuildLogic(Describables.of(location), 1),
            StructuredMessage.build { text(message) }
        )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInBuildScriptIntegrationTest.groovy

            then:
            failure.assertOutputContains("Hello")
            problems.assertFailureHasProblems(failure) {
                withProblem("${location.replace('/', File.separator)}: external process started")
            }
    
            where:
            snippetsFactory             | file                           | location
            exec().groovy               | "build.gradle"                 | "Build file 'build.gradle': line 5"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. JavadocStyleGuide.md

     * The name argument is a specifier that is relative to the url argument.
     * This method always returns immediately, whether or not the image exists. 
     *
     * @param url an absolute URL giving the base location of the image
     * @param name the location of the image, relative to the url argument
     * @return the image at the specified URL
     * @see Image
     */
    public Image getImage(URL url, String name) {
       try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top