Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 564 for unvalidated (0.39 sec)

  1. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/settings/PluginsInterpretationSequenceStep.kt

        override fun whenEvaluated(resultReceiver: PluginsTopLevelReceiver) {
            val pluginRequests = resultReceiver.plugins.specs.map {
                DefaultPluginRequest(DefaultPluginId.unvalidated(it.id), it.apply, PluginRequestInternal.Origin.OTHER, scriptSource.displayName, null, it.version, null, null, null)
            }
            with(getTargetServices()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/plugin/use/internal/DefaultPluginId.java

        }
    
        public static PluginId of(String value) throws InvalidPluginIdException {
            validate(value);
            return new DefaultPluginId(value);
        }
    
        public static PluginId unvalidated(String value) {
            return new DefaultPluginId(value);
        }
    
        public static void validate(String value) throws InvalidPluginIdException {
            if (value.startsWith(SEPARATOR) || value.endsWith(SEPARATOR)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 14 10:16:36 UTC 2017
    - 4K bytes
    - Viewed (0)
  3. 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)
  4. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginContainer.java

        }
    
        @Override
        @SuppressWarnings("rawtypes")
        public Plugin apply(String id) {
            PluginImplementation<?> plugin = pluginRegistry.lookup(DefaultPluginId.unvalidated(id));
            if (plugin == null) {
                throw new UnknownPluginException("Plugin with id '" + id + "' not found.");
            }
    
            if (!Plugin.class.isAssignableFrom(plugin.asClass())) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 30 13:07:05 UTC 2020
    - 6.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top