Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 672 for therefore (0.14 sec)

  1. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/scan/UsedByScanPlugin.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Documents that the type or method is referenced by the build scan plugin,
     * and therefore changes need to be carefully managed. Other plugins like the
     * test-retry or the test-distribution plugin clarify their usage in the {@link #value}.
     * property.
     *
     * @since 4.0
     */
    @Retention(RetentionPolicy.SOURCE)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/LeaksFileHandles.java

     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.file;
    
    import java.lang.annotation.*;
    
    /**
     * Declares that the test holds files open and therefore not to error if the test workspace can't be cleaned up.
     *
     * @see AbstractTestDirectoryProvider
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.METHOD, ElementType.TYPE})
    @Inherited
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1016 bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/watch/streamwatcher.go

    		result: make(chan Event),
    		// If the watcher is externally stopped there is no receiver anymore
    		// and the send operations on the result channel, especially the
    		// error reporting might block forever.
    		// Therefore a dedicated stop channel is used to resolve this blocking.
    		done: make(chan struct{}),
    	}
    	go sw.receive()
    	return sw
    }
    
    // ResultChan implements Interface.
    func (sw *StreamWatcher) ResultChan() <-chan Event {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 06 13:42:59 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  4. docs/security/README.md

    - **SSE-C**: The MinIO server en/decrypts an object with a secret key provided by the S3 client as part of the HTTP request headers. Therefore, [SSE-C](#ssec) requires TLS/HTTPS.
    - **SSE-S3**: The MinIO server en/decrypts an object with a secret key managed by a KMS. Therefore, MinIO requires a valid KMS configuration for [SSE-S3](#sses3).
    
    ### Server-Side Encryption - Preliminaries
    
    #### Secret Keys
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  5. cluster/addons/metrics-server/README.md

      - Horizontal Pod Autoscaler not working
      - `kubectl top` not working (starting with Kubernetes 1.10)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 18 13:04:48 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  6. docs/security/security.md

    | 3.x     | ❌ Ended 2021-12-31 | Android 2.3+ (API level 9+) and Java 7+.     |
    
    
    ## Reporting a Vulnerability
    
    Square recognizes the important contributions the security research community
    can make. We therefore encourage reporting security issues with the code
    contained in this repository.
    
    If you believe you have discovered a security vulnerability, please follow the
    guidelines at https://bugcrowd.com/squareopensource
    
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 27 10:19:17 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  7. manifests/charts/base/values.yaml

        externalIstiod: false
        remotePilotAddress: ""
    
        # Platform where Istio is deployed. Possible values are: "openshift", "gcp".
        # An empty value means it is a vanilla Kubernetes distribution, therefore no special
        # treatment will be considered.
        platform: ""
    
        # Setup how istiod Service is configured. See https://kubernetes.io/docs/concepts/services-networking/dual-stack/#services
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 22:00:40 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise-workers/src/main/java/org/gradle/internal/operations/logging/ProgressStartBuildOperationProgressDetails.java

        LogEventLevel getLevel();
    
        /**
         * While this may be null on the underlying implementation,
         * objects with a null value for this will not be forwarded as build operation progress.
         * Therefore, when observing as build operation progress this is never null.
         */
        String getLoggingHeader();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/net/port.go

    //
    // Some system resolvers will return a valid port number when given a number
    // over 65536 (see https://golang.org/issues/11715). Alas, the parser
    // can't bail early on numbers > 65536. Therefore reasonably large/small
    // numbers are parsed in full and rejected if invalid.
    func parsePort(service string) (port int, needsLookup bool) {
    	if service == "" {
    		// Lock in the legacy behavior that an empty string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:31:56 UTC 2017
    - 1.5K bytes
    - Viewed (0)
  10. test/escape_array.go

    	a := [10]*string{*y}
    	_ = a
    	// 4 x 4,000,000 exceeds MaxStackVarSize, therefore it must be heap allocated if pointers are 4 bytes or larger.
    	b := [4000000]*string{*x} // ERROR "moved to heap: b"
    	_ = b
    }
    
    func hugeLeaks2(x *string, y *string) { // ERROR "leaking param: x" "y does not escape"
    	a := [10]*string{y}
    	_ = a
    	// 4 x 4,000,000 exceeds MaxStackVarSize, therefore it must be heap allocated if pointers are 4 bytes or larger.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 23:50:32 UTC 2021
    - 3.6K bytes
    - Viewed (0)
Back to top