Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 104 for pvprotection (0.19 sec)

  1. platforms/software/resources/src/main/java/org/gradle/internal/verifier/HttpRedirectVerifierFactory.java

        /**
         * Verifies that the base URL and all subsequent redirects followed during an interaction with a server are done so securely unless
         * the user has explicitly opted out from this protection.
         *
         * @param baseHost The host specified by the user.
         * @param allowInsecureProtocol If true, allows HTTP based connections.
         * @param insecureBaseHost Callback when the base host URL is insecure.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/wait/wait.go

    // runConditionWithCrashProtection runs a ConditionFunc with crash protection.
    //
    // Deprecated: Will be removed when the legacy polling methods are removed.
    func runConditionWithCrashProtection(condition ConditionFunc) (bool, error) {
    	defer runtime.HandleCrash()
    	return condition()
    }
    
    // runConditionWithCrashProtectionWithContext runs a ConditionWithContextFunc
    // with crash protection.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/InstrumentingClassLoader.java

         * This method may be called concurrently in multiple threads.
         *
         * @param className the name of the class being loaded (in the internal form, e.g. {@code java/util/List})
         * @param protectionDomain the protection domain of the original class, as defined by this classloader
         * @param classfileBuffer the buffer that contains class implementation bytes in class file format - must not be modified
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/Challenge.kt

       * strings. The map's keys are lowercase and should be treated case-insensitively.
       */
      @get:JvmName("authParams")
      val authParams: Map<String?, String>
    
      /** Returns the protection space. */
      @get:JvmName("realm")
      val realm: String?
        get() = authParams["realm"]
    
      /** The charset that should be used to encode the credentials. */
      @get:JvmName("charset")
      val charset: Charset
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  5. cmd/xl-storage-format-v1.go

    		return false
    	}
    	for i, ecindex := range ei.Distribution {
    		if ecindex != nei.Distribution[i] {
    			return false
    		}
    	}
    	return true
    }
    
    // BitrotAlgorithm specifies a algorithm used for bitrot protection.
    type BitrotAlgorithm uint
    
    const (
    	// SHA256 represents the SHA-256 hash function
    	SHA256 BitrotAlgorithm = 1 + iota
    	// HighwayHash256 represents the HighwayHash-256 hash function
    	HighwayHash256
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. docs/logging/README.md

        "Vary": "Origin,Accept-Encoding",
        "X-Amz-Id-2": "dd9025bab4ad464b049177c95eb6ebf374d3b3fd1af9251148b658df7ac2e3e8",
        "X-Amz-Request-Id": "17CDC1F4D7E69123",
        "X-Content-Type-Options": "nosniff",
        "X-Xss-Protection": "1; mode=block"
      },
      "tags": {
        "objectLocation": {
          "name": "hosts",
          "poolId": 1,
          "setId": 1,
          "drives": [
            "/mnt/data1",
            "/mnt/data2",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 17:15:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/certificates/v1beta1/types.go

    	//  "data encipherment",
    	//  "cert sign",
    	//  "crl sign",
    	//  "encipher only",
    	//  "decipher only",
    	//  "any",
    	//  "server auth",
    	//  "client auth",
    	//  "code signing",
    	//  "email protection",
    	//  "s/mime",
    	//  "ipsec end system",
    	//  "ipsec tunnel",
    	//  "ipsec user",
    	//  "timestamping",
    	//  "ocsp signing",
    	//  "microsoft sgc",
    	//  "netscape sgc"
    	// +listType=atomic
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  8. .github/workflows/test.yml

            with:
              name: coverage-html
              path: htmlcov
    
      # https://github.com/marketplace/actions/alls-green#why
      check:  # This job does nothing and is only used for the branch protection
        if: always()
        needs:
          - coverage-combine
        runs-on: ubuntu-latest
        steps:
          - name: Dump GitHub context
            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AbstractFuture.java

        this.mayInterruptIfRunning = mayInterruptIfRunning;
        state = State.CANCELLED;
        notifyAndClearListeners();
    
        if (delegate != null) {
          // TODO(lukes): consider adding the StackOverflowError protection from the server version
          delegate.cancel(mayInterruptIfRunning);
        }
    
        return true;
      }
    
      protected void interruptTask() {}
    
      @Override
      public boolean isCancelled() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 19:37:41 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/cycle_state.go

    type StateKey string
    
    // CycleState provides a mechanism for plugins to store and retrieve arbitrary data.
    // StateData stored by one plugin can be read, altered, or deleted by another plugin.
    // CycleState does not provide any data protection, as all plugins are assumed to be
    // trusted.
    // Note: CycleState uses a sync.Map to back the storage, because it is thread safe. It's aimed to optimize for the "write once and read many times" scenarios.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 06:48:20 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top