Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 249 for passstring (0.17 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/TextResourceScriptSource.java

    import static org.apache.commons.lang.StringUtils.substringAfterLast;
    import static org.apache.commons.lang.StringUtils.substringBeforeLast;
    import static org.gradle.internal.hash.Hashing.hashString;
    
    /**
     * A {@link ScriptSource} which loads the script from a URI.
     */
    public class TextResourceScriptSource implements ScriptSource {
        private final TextResource resource;
        private String className;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 10:24:10 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  2. src/go/types/under.go

    	t = Unalias(t)
    	tpar, _ := t.(*TypeParam)
    	if tpar == nil {
    		return under(t) // string or untyped string
    	}
    
    	var su Type
    	hasString := false
    	if tpar.underIs(func(u Type) bool {
    		if u == nil {
    			return false
    		}
    		if isString(u) {
    			u = NewSlice(universeByte)
    			hasString = true
    		}
    		if su != nil {
    			u = match(su, u)
    			if u == nil {
    				return false
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 22:34:27 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/vcs/internal/SourceDependencies.groovy

    import org.gradle.test.fixtures.file.TestFile
    
    import static org.gradle.internal.hash.Hashing.hashString
    
    @SelfType(AbstractIntegrationSpec)
    trait SourceDependencies {
        TestFile checkoutDir(String repoName, String versionId, String repoId, TestFile baseDir=testDirectory) {
            def prefix = repoName.take(9)
            def hashedCommit = hashString("${repoId}-${versionId}").toCompactString()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultModelVersionParser.java

            public int hashCode() {
                return delegate.hashCode();
            }
    
            @Override
            public String asString() {
                return delegate.toString();
            }
    
            @Override
            public String toString() {
                return asString();
            }
        }
    
        static class DefaultVersionRange implements VersionRange {
            private final VersionScheme versionScheme;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  5. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

            return roots.mapNotNull { path ->
                val pathString = FileUtil.toSystemIndependentName(path.toAbsolutePath().toString())
                when {
                    pathString.endsWith(JAR_PROTOCOL) || pathString.endsWith(KLIB_FILE_EXTENSION) -> {
                        environment.environment.jarFileSystem.findFileByPath(pathString + JAR_SEPARATOR)
                    }
    
                    pathString.contains(JAR_SEPARATOR) -> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/GradleVersionResolver.java

                case LATEST:
                    return getVersion(latest.asString(), version);
                case NIGHTLY:
                    return getVersion(nightly.asString(), version);
                case RELEASE_NIGHTLY:
                    return getVersion(releaseNightly.asString(), version);
                case RELEASE_CANDIDATE:
                    return getVersion(releaseCandidate.asString(), version);
                default:
                    return version;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 16 15:14:55 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginBuildStateIntegrationTest.groovy

                        assert buildState.buildInvocationId == services.get(${BuildInvocationScopeId.name}).id.asString()
                        assert buildState.workspaceId == services.get(${WorkspaceScopeId.name}).id.asString()
                        assert buildState.userId == services.get(${UserScopeId.name}).id.asString()
    
                        assert (buildState.daemonScanInfo != null) == ${GradleContextualExecuter.isDaemon()}
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 10:49:16 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/hash/SipHashFunctionTest.java

      }
    
      private static void assertSip(String input, long expected) {
        assertEquals(expected, SIP_WITH_KEY.hashString(input, UTF_8).asLong());
        assertEquals(expected, SIP_WITH_KEY.newHasher().putString(input, UTF_8).hash().asLong());
        assertEquals(expected, SIP_WITHOUT_KEY.hashString(input, UTF_8).asLong());
        assertEquals(expected, SIP_WITHOUT_KEY.newHasher().putString(input, UTF_8).hash().asLong());
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun May 05 18:02:35 UTC 2019
    - 6.6K bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/legacy/BuildScanScopeIdsIntegrationTest.groovy

            """
            succeeds("help")
    
            then:
            def buildInvocationId = scopeIds.buildInvocationId.asString()
            def workspaceId = scopeIds.workspaceId.asString()
            def userId = scopeIds.userId.asString()
    
            output.contains "ids: [buildInvocation: $buildInvocationId, workspace: $workspaceId, user: $userId]"
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/impl/legacy/DefaultBuildScanScopeIds.java

        }
    
        @Override
        public String getBuildInvocationId() {
            return buildInvocationId.getId().asString();
        }
    
        @Override
        public String getWorkspaceId() {
            return workspaceId.getId().asString();
        }
    
        @Override
        public String getUserId() {
            return userId.getId().asString();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:58:47 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top