Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 218 for NOR (0.07 sec)

  1. build-logic/performance-testing/src/main/groovy/gradlebuild.performance-templates.gradle

    performanceTest.registerTestProject("gradleBuildBaseline", RemoteProject) {
        remoteUri = repoRoot(project).asFile.absolutePath
        // Remember to update accordingly when rebasing/squashing
        // Do not use the "Rebase and merge" nor "Squash and merge" Github buttons when merging a PR that change the baseline
        ref = '264bd7744d2e89b2708303cd56bb11bc5003fa7e'
    }
    
    // === Declarative DSL ===
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/integtests/ApplicationIntegrationSpec.groovy

    installDist.destinationDir = buildDir
    """
            when:
            runAndFail "installDist"
    
            then:
            result.assertThatCause(startsWith("The specified installation directory '${file('build')}' is neither empty nor does it contain an installation"))
        }
    
        def "startScripts respect OS dependent line separators"() {
            file('build.gradle') << '''
        installDist.destinationDir = buildDir
        '''
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/-HostnamesCommon.kt

     * including dots after the first colon. It matches IPv4 addresses as strings containing only
     * decimal digits and dots. This pattern matches strings like "a:.23" and "54" that are neither IP
     * addresses nor hostnames; they will be verified as IP addresses (which is a more strict
     * verification).
     */
    private val VERIFY_AS_IP_ADDRESS = "([0-9a-fA-F]*:[0-9a-fA-F:.]*)|([\\d.]+)".toRegex()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/imports/build.go

    //
    // If we added this API to go/build directly, we wouldn't need this
    // file anymore, but this API is not terribly general-purpose and we
    // don't really want to commit to any public form of it, nor do we
    // want to move the core parts of go/build into a top-level internal package.
    // These details change very infrequently, so the copy is fine.
    
    package imports
    
    import (
    	"bytes"
    	"cmd/go/internal/cfg"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 30 18:50:57 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

    // copyright notice, this list of conditions and the following disclaimer
    // in the documentation and/or other materials provided with the
    // distribution.
    //     * Neither the name of Google Inc. nor the names of its
    // contributors may be used to endorse or promote products derived from
    // this software without specific prior written permission.
    //
    // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/pkiutil/pki_helpers.go

    	var key crypto.Signer
    	switch k := privKey.(type) {
    	case *rsa.PrivateKey:
    		key = k
    	case *ecdsa.PrivateKey:
    		key = k
    	default:
    		return nil, errors.Errorf("the private key file %s is neither in RSA nor ECDSA format", privateKeyPath)
    	}
    
    	return key, nil
    }
    
    // TryLoadPrivatePublicKeyFromDisk tries to load the key from the disk and validates that it is valid
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/operand.go

    		return newType != nil, IncompatibleAssign
    	}
    	// Vu is typed
    
    	// x's type V and T have identical underlying types
    	// and at least one of V or T is not a named type
    	// and neither V nor T is a type parameter.
    	if Identical(Vu, Tu) && (!hasName(V) || !hasName(T)) && Vp == nil && Tp == nil {
    		return true, 0
    	}
    
    	// T is an interface type, but not a type parameter, and V implements T.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. pilot/pkg/status/distribution/reporter.go

    	if old, ok := r.status[key]; ok {
    		sets.DeleteCleanupLast(r.reverseStatus, old, key)
    	}
    }
    
    // RegisterDisconnect : when a dataplane disconnects, we should no longer count it, nor expect it to ack config.
    func (r *Reporter) RegisterDisconnect(conID string, types sets.Set[xds.EventType]) {
    	r.mu.Lock()
    	defer r.mu.Unlock()
    	for xdsType := range types {
    		key := GenStatusReporterMapKey(conID, xdsType)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. src/net/http/response.go

    	TransferEncoding []string
    
    	// Close records whether the header directed that the connection be
    	// closed after reading Body. The value is advice for clients: neither
    	// ReadResponse nor Response.Write ever closes a connection.
    	Close bool
    
    	// Uncompressed reports whether the response was sent compressed but
    	// was decompressed by the http package. When true, reading from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/hash/Hashing.java

       *
       * @deprecated If you must interoperate with a system that requires MD5, then use this method,
       *     despite its deprecation. But if you can choose your hash function, avoid MD5, which is
       *     neither fast nor secure. As of January 2017, we suggest:
       *     <ul>
       *       <li>For security:
       *           {@link Hashing#sha256} or a higher-level API.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 09 00:37:15 UTC 2024
    - 29.2K bytes
    - Viewed (0)
Back to top