Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 158 for xx$ (0.02 sec)

  1. android/guava-tests/test/com/google/common/net/PercentEscaperTest.java

        }
    
        // Testing multibyte escape sequences
        assertEscaping(e, "%00", '\u0000'); // nul
        assertEscaping(e, "%7F", '\u007f'); // del
        assertEscaping(e, "%C2%80", '\u0080'); // xx-00010,x-000000
        assertEscaping(e, "%DF%BF", '\u07ff'); // xx-11111,x-111111
        assertEscaping(e, "%E0%A0%80", '\u0800'); // xxx-0000,x-100000,x-00,0000
        assertEscaping(e, "%EF%BF%BF", '\uffff'); // xxx-1111,x-111111,x-11,1111
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  2. .github/workflows/stale-pr.yml

    name: 'Close stale PRs'
    on:
      schedule:
        # Execute every hour at xx:05 to avoid conflicts with other workflows
        - cron: '5 * * * *'
    
    permissions: {}
    
    jobs:
      stale:
        permissions:
          pull-requests: write
    
        runs-on: ubuntu-latest
        steps:
          - uses: actions/stale@v9
            with:
              operations-per-run: 50
              ascending: true
              exempt-all-milestones: true
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. src/crypto/ed25519/ed25519.go

    // Equal reports whether pub and x have the same value.
    func (pub PublicKey) Equal(x crypto.PublicKey) bool {
    	xx, ok := x.(PublicKey)
    	if !ok {
    		return false
    	}
    	return subtle.ConstantTimeCompare(pub, xx) == 1
    }
    
    // PrivateKey is the type of Ed25519 private keys. It implements [crypto.Signer].
    type PrivateKey []byte
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. src/crypto/ecdsa/ecdsa.go

    // values, as the latter is a generic not constant time implementation.
    func (pub *PublicKey) Equal(x crypto.PublicKey) bool {
    	xx, ok := x.(*PublicKey)
    	if !ok {
    		return false
    	}
    	return bigIntEqual(pub.X, xx.X) && bigIntEqual(pub.Y, xx.Y) &&
    		// Standard library Curve implementations are singletons, so this check
    		// will work for those. Other Curves might be equivalent even if not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. gradle.properties

    # Reduce Xmx after https://github.com/gradle/gradle-private/issues/4168 is resolved
    org.gradle.jvmargs=-Xmx2700m -XX:MaxMetaspaceSize=768m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
    org.gradle.parallel=true
    org.gradle.caching=true
    org.gradle.configuration-cache=true
    systemProp.gradle.publish.skip.namespace.check=true
    # Kotlin DSL settings
    org.gradle.kotlin.dsl.allWarningsAsErrors=true
    # Kotlin settings
    kotlin.incremental.useClasspathSnapshot=true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 16:35:19 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-plugin-performance/src/templates/project-with-source/build.gradle

        <% if (binding.hasVariable("projectDependencies") && subprojectNumber > 1) { (1..<subprojectNumber).each { %>
            projectsConfiguration project(":project${it}") <% } %>
        <% } %>
    }
    
    test {
        jvmArgs '-Xmx1g', '-XX:+HeapDumpOnOutOfMemoryError'
        <% if (binding.hasVariable("fullTestLogging")) { %>
            testLogging {
                if (Boolean.getBoolean("reducedOutput")) {
                    events "failed"
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. src/crypto/rsa/rsa.go

    func (priv *PrivateKey) Equal(x crypto.PrivateKey) bool {
    	xx, ok := x.(*PrivateKey)
    	if !ok {
    		return false
    	}
    	if !priv.PublicKey.Equal(&xx.PublicKey) || !bigIntEqual(priv.D, xx.D) {
    		return false
    	}
    	if len(priv.Primes) != len(xx.Primes) {
    		return false
    	}
    	for i := range priv.Primes {
    		if !bigIntEqual(priv.Primes[i], xx.Primes[i]) {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/MoreMemorySampleModifier.java

            String existingArgs = properties.getProperty(ORG_GRADLE_JVMARGS, "");
            properties.setProperty(ORG_GRADLE_JVMARGS, "-Xmx512m -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError " + existingArgs);
            GUtil.saveProperties(properties, propertiesFile);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/process/internal/JvmOptionsTest.groovy

        def "managed jvm args includes heap settings"() {
            expect:
            parse("-Xms1G -XX:-PrintClassHistogram -Xmx2G -Dfoo.encoding=blah").managedJvmArgs == ["-Xms1G", "-Xmx2G", "-Dfile.encoding=${defaultCharset}", *localePropertyStrings()]
        }
    
        def "managed jvm args includes file encoding"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/net/PercentEscaperTest.java

        }
    
        // Testing multibyte escape sequences
        assertEscaping(e, "%00", '\u0000'); // nul
        assertEscaping(e, "%7F", '\u007f'); // del
        assertEscaping(e, "%C2%80", '\u0080'); // xx-00010,x-000000
        assertEscaping(e, "%DF%BF", '\u07ff'); // xx-11111,x-111111
        assertEscaping(e, "%E0%A0%80", '\u0800'); // xxx-0000,x-100000,x-00,0000
        assertEscaping(e, "%EF%BF%BF", '\uffff'); // xxx-1111,x-111111,x-11,1111
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 5.2K bytes
    - Viewed (0)
Back to top