Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 4,898 for somme (0.07 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/VfsRelativePath.java

         *
         * Examples:
         * lengthOfCommonPrefix("some/path", "some/other") == 4
         * lengthOfCommonPrefix("some/path", "some1/other") == 0
         * lengthOfCommonPrefix("some/longer/path", "some/longer/other") == 11
         * lengthOfCommonPrefix("some/longer", "some/longer/path") == 11
         */
        public int lengthOfCommonPrefix(String relativePath, CaseSensitivity caseSensitivity) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  2. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLibraryPublishingIntegrationTest.groovy

            then:
            assertMainModuleIsPublished('some.group', 'deck', '1.2', targetMachines, ["some.group:card:1.2"])
            assertVariantsArePublished('some.group', 'deck', '1.2', ['debug', 'release'], targetMachines, ["some.group:shuffle:1.2", "some.group:card:1.2"])
    
            and:
            assertMainModuleIsPublished('some.group', 'card', '1.2', targetMachines)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 12:57:50 UTC 2024
    - 39.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/FlatDirJvmLibraryArtifactResolutionIntegrationTest.groovy

            file("repo/some-artifact-1.0.jar").createFile()
            file("repo/some-artifact-1.0-sources.jar").createFile()
            file("repo/some-artifact-1.0-javadoc.jar").createFile()
        }
    
        private publishChanged() {
            file("repo/some-artifact-1.0.jar") << "more"
            file("repo/some-artifact-1.0-sources.jar") << "more"
            file("repo/some-artifact-1.0-javadoc.jar") << "more"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. test/typeparam/issue52026.go

    package main
    
    func returnOption[T any](n int) Option[T] {
    	if n == 1 {
    		return Some[T]{}
    	} else {
    		return None{}
    	}
    }
    
    type Option[T any] interface {
    	sealedOption()
    }
    
    type Some[T any] struct {
    	val T
    }
    
    func (s Some[T]) Value() T {
    	return s.val
    }
    
    func (s Some[T]) sealedOption() {}
    
    type None struct{}
    
    func (s None) sealedOption() {}
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 03 21:36:22 UTC 2022
    - 735 bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/execution/plan/ExecutionNodeAccessHierarchyTest.groovy

            hierarchy.recordNodeAccessingLocations(node1, ["/some/location"])
            hierarchy.recordNodeAccessingLocations(node2, ["/some/other/location"])
            hierarchy.recordNodeAccessingLocations(node3, ["/some/other/third"])
    
            expect:
            assertNodesAccessing("/some", node1, node2, node3)
            assertNodesAccessing("/some/other", node2, node3)
            assertNodesAccessing("/some/other/third", node3)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 11 15:00:43 UTC 2022
    - 9.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/SystemPropertyInstrumentationInStaticGroovyIntegrationTest.groovy

            "System.properties['some.property']"                   | _
            "System.getProperties().get('some.property')"          | _
            "getProperties().get('some.property')"                 | _
            "System.getProperty('some.property')"                  | _
            "getProperty('some.property')"                         | _
            "System.getProperty('some.property', 'default.value')" | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/normalization/internal/DefaultRuntimeClasspathNormalizationTest.groovy

            !restoredNormalization.classpathResourceFilter.shouldBeIgnored(asPathFactory("notIgnored.file"))
    
            where:
            ignoredPattern | ignoredFilePathSegments
            "some.file"    | asPathFactory("some.file")
            "**/some.*"    | asPathFactory("dir", "some.file")
        }
    
        def "property ignores can be restored from the cached state"() {
            given:
            def originalNormalization = new DefaultRuntimeClasspathNormalization()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 22 13:17:59 UTC 2021
    - 7K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/DefaultJavaCompileSpecTest.groovy

            then:
            modulePath == [new File("/some/path"), new File("/some/path2")]
    
            where:
            description               | modulePathParameters
            "--module-path=<modules>" | ["--module-path=/some/path$File.pathSeparator/some/path2"]
            "--module-path <modules>" | ["--module-path", "/some/path$File.pathSeparator/some/path2"]
            "-p <modules>"            | ["-p", "/some/path$File.pathSeparator/some/path2"]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/pod.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: some-app
        plugin1: some-value
        plugin2: some-value
        plugin3: some-value
        plugin4: some-value
      name: some-name
      namespace: default
      ownerReferences:
      - apiVersion: apps/v1
        blockOwnerDeletion: true
        controller: true
        kind: ReplicaSet
        name: some-name
        uid: 0a9d2b9e-779e-11e7-b422-42010a8001be
    spec:
      containers:
      - args:
        - one
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyJvmLibraryArtifactResolutionIntegrationTest.groovy

            failure.assertHasCause("""Could not find some-artifact-1.0-my-sources.jar (some.group:some-artifact:1.0).
    Searched in the following locations:
        ${sourceArtifact.uri}""")
            failure.assertHasCause("""Could not find some-artifact-1.0-my-javadoc.jar (some.group:some-artifact:1.0).
    Searched in the following locations:
        ${javadocArtifact.uri}""")
        }
    
        def "resolves when some artifacts are missing"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.2K bytes
    - Viewed (0)
Back to top