Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for strict (0.65 sec)

  1. fastapi/param_functions.py

            Doc(
                """
                Parameter field name for discriminating the type in a tagged union.
                """
            ),
        ] = None,
        strict: Annotated[
            Union[bool, None],
            Doc(
                """
                If `True`, strict validation is applied to the field.
                """
            ),
        ] = _Unset,
        multiple_of: Annotated[
            Union[float, None],
            Doc(
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 62.5K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                        ActivationFile target) {
                    final String path = target.getExists();
                    final String xformed = transformPath(path, target, "exists");
                    return xformed != path ? (builder != null ? builder : creator.get()).exists(xformed) : builder;
                }
    
                private String transformPath(String path, ActivationFile target, String locationKey) {
                    if (isNotEmpty(path)) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri May 03 08:48:38 GMT 2024
    - 61.5K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-v2.go

    	}
    	fi.Metadata = make(map[string]string, len(j.MetaSys))
    	for k, v := range j.MetaSys {
    		fi.Metadata[k] = string(v)
    	}
    
    	fi.ReplicationState = GetInternalReplicationState(j.MetaSys)
    	if j.FreeVersion() {
    		fi.SetTierFreeVersion()
    		fi.TransitionTier = string(j.MetaSys[metaTierName])
    		fi.TransitionedObjName = string(j.MetaSys[metaTierObjName])
    		fi.TransitionVersionID = string(j.MetaSys[metaTierVersionID])
    	}
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 23 05:07:37 GMT 2024
    - 63.6K bytes
    - Viewed (1)
  4. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

      )
      fun fragment(): String? = fragment
    
      class Builder {
        internal var scheme: String? = null
        internal var encodedUsername = ""
        internal var encodedPassword = ""
        internal var host: String? = null
        internal var port = -1
        internal val encodedPathSegments = mutableListOf<String>("")
        internal var encodedQueryNamesAndValues: MutableList<String?>? = null
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Tue Jan 09 12:33:05 GMT 2024
    - 63.5K bytes
    - Viewed (1)
  5. src/main/java/jcifs/smb/SmbFile.java

         *
         * @param url
         *            A URL string
         * @throws MalformedURLException
         *             If the <code>parent</code> and <code>child</code> parameters
         *             do not follow the prescribed syntax
         */
        @Deprecated
        public SmbFile ( String url ) throws MalformedURLException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  6. cmd/batch-handlers.go

    		}
    
    		break
    	}
    
    	return nil
    }
    
    //msgp:ignore batchReplicationJobError
    type batchReplicationJobError struct {
    	Code           string
    	Description    string
    	HTTPStatusCode int
    }
    
    func (e batchReplicationJobError) Error() string {
    	return e.Description
    }
    
    // Validate validates the job definition input
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 08 14:11:38 GMT 2024
    - 55.2K bytes
    - Viewed (0)
  7. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    // It is made a struct to keep extensibility.
    message GroupVersionForDiscovery {
      // groupVersion specifies the API group and version in the form "group/version"
      optional string groupVersion = 1;
    
      // version specifies the version in the form of "version". This is to save
      // the clients the trouble of splitting the GroupVersion.
      optional string version = 2;
    }
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  8. docs/changelogs/changelog_3x.md

        inappropriate.
    
     *  New: `HttpUrl.get(String)` is an alternative to `HttpUrl.parse(String)` that throws an exception
        when the URL is malformed instead of returning null. Use this to avoid checking for null in
        situations where the input is known to be well-formed. We've also added `MediaType.get(String)`
        which is an exception-throwing alternative to `MediaType.parse(String)`.
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
  9. cmd/erasure-server-pool.go

    type HealthOptions struct {
    	Maintenance    bool
    	DeploymentType string
    }
    
    // HealthResult returns the current state of the system, also
    // additionally with any specific heuristic information which
    // was queried
    type HealthResult struct {
    	Healthy       bool
    	HealthyRead   bool
    	HealingDrives int
    	ESHealth      []struct {
    		Maintenance   bool
    		PoolID, SetID int
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Fri Apr 26 06:32:14 GMT 2024
    - 80.1K bytes
    - Viewed (0)
  10. cmd/admin-handlers.go

    // uptime, etc..
    type ServerProperties struct {
    	Uptime       int64    `json:"uptime"`
    	Version      string   `json:"version"`
    	CommitID     string   `json:"commitID"`
    	DeploymentID string   `json:"deploymentID"`
    	Region       string   `json:"region"`
    	SQSARN       []string `json:"sqsARN"`
    }
    
    // serverConnStats holds transferred bytes from/to the server
    type serverConnStats struct {
    	internodeInputBytes  uint64
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 21 11:43:18 GMT 2024
    - 97.3K bytes
    - Viewed (2)
Back to top