Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 247 for unvalidated (0.37 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginManager.java

            doApply(plugin);
        }
    
        @Override
        public void apply(String pluginId) {
            PluginImplementation<?> plugin = pluginRegistry.lookup(DefaultPluginId.unvalidated(pluginId));
            if (plugin == null) {
                throw new UnknownPluginException("Plugin with id '" + pluginId + "' not found.");
            }
            doApply(plugin);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/HostAndPort.java

    public final class HostAndPort implements Serializable {
      /** Magic value indicating the absence of a port number. */
      private static final int NO_PORT = -1;
    
      /** Hostname, IPv4/IPv6 literal, or unvalidated nonsense. */
      private final String host;
    
      /** Validated port number in the range [0..65535], or NO_PORT */
      private final int port;
    
      /** True if the parsed host has colons, but no surrounding brackets. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 22 20:55:57 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/CacheControl.kt

        internal var minFreshSeconds = -1
        internal var onlyIfCached: Boolean = false
        internal var noTransform: Boolean = false
        internal var immutable: Boolean = false
    
        /** Don't accept an unvalidated cached response. */
        fun noCache() = commonNoCache()
    
        /** Don't store the server's response in any cache. */
        fun noStore() = commonNoStore()
    
        /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 13:41:01 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. guava/src/com/google/common/net/HostAndPort.java

    public final class HostAndPort implements Serializable {
      /** Magic value indicating the absence of a port number. */
      private static final int NO_PORT = -1;
    
      /** Hostname, IPv4/IPv6 literal, or unvalidated nonsense. */
      private final String host;
    
      /** Validated port number in the range [0..65535], or NO_PORT */
      private final int port;
    
      /** True if the parsed host has colons, but no surrounding brackets. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Aug 22 20:55:57 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/certificates/v1/types_swagger_doc_generated.go

    the \"CERTIFICATE\" label, contain no headers, and the encoded data\n  must be a BER-encoded ASN.1 Certificate structure as described in section 4 of RFC5280.\n 3. Non-PEM content may appear before or after the \"CERTIFICATE\" PEM blocks and is unvalidated,\n  to allow for explanatory text as described in section 5.2 of RFC7468.\n\nIf more than one PEM block is present, and the definition of the requested spec.signerName does not indicate otherwise, the first block is the issued certificate, and subsequent...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/certificates/v1/generated.proto

      //   must be a BER-encoded ASN.1 Certificate structure as described in section 4 of RFC5280.
      //  3. Non-PEM content may appear before or after the "CERTIFICATE" PEM blocks and is unvalidated,
      //   to allow for explanatory text as described in section 5.2 of RFC7468.
      //
      // If more than one PEM block is present, and the definition of the requested spec.signerName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/certificates/v1/generated.proto

      //   must be a BER-encoded ASN.1 Certificate structure as described in section 4 of RFC5280.
      //  3. Non-PEM content may appear before or after the "CERTIFICATE" PEM blocks and is unvalidated,
      //   to allow for explanatory text as described in section 5.2 of RFC7468.
      //
      // If more than one PEM block is present, and the definition of the requested spec.signerName
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/certificates/v1/types.go

    	//   must be a BER-encoded ASN.1 Certificate structure as described in section 4 of RFC5280.
    	//  3. Non-PEM content may appear before or after the "CERTIFICATE" PEM blocks and is unvalidated,
    	//   to allow for explanatory text as described in section 5.2 of RFC7468.
    	//
    	// If more than one PEM block is present, and the definition of the requested spec.signerName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_client_test.go

    		expectedVolumeMountGroup string
    		mustFail                 bool
    		err                      error
    	}{
    		{name: "test ok", volID: "vol-test", stagingTargetPath: testPath, fsType: "ext4", mountOptions: []string{"unvalidated"}},
    		{name: "missing volID", stagingTargetPath: testPath, mustFail: true},
    		{name: "missing target path", volID: "vol-test", mustFail: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  10. src/internal/trace/event.go

    	// EventLog represents a runtime/trace.Log call.
    	EventLog
    
    	// EventStateTransition represents a state change for some resource.
    	EventStateTransition
    
    	// EventExperimental is an experimental event that is unvalidated and exposed in a raw form.
    	// Users are expected to understand the format and perform their own validation. These events
    	// may always be safely ignored.
    	EventExperimental
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
Back to top