Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,316 for necessarily (0.38 sec)

  1. guava/src/com/google/common/collect/DiscreteDomain.java

       * and {@code distance(end, start) == -3}. As well, {@code distance(a, a)} is always zero.
       *
       * <p>Note that this function is necessarily well-defined for any discrete type.
       *
       * @return the distance as described above, or {@link Long#MIN_VALUE} or {@link Long#MAX_VALUE} if
       *     the distance is too small or too large, respectively.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/security/oauth2-scopes.md

    !!! warning
        This is a more or less advanced section. If you are just starting, you can skip it.
    
        You don't necessarily need OAuth2 scopes, and you can handle authentication and authorization however you want.
    
        But OAuth2 with scopes can be nicely integrated into your API (with OpenAPI) and your API docs.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 20.5K bytes
    - Viewed (0)
  3. src/internal/poll/splice_linux.go

    // license that can be found in the LICENSE file.
    
    package poll
    
    import (
    	"internal/syscall/unix"
    	"runtime"
    	"sync"
    	"syscall"
    	"unsafe"
    )
    
    const (
    	// spliceNonblock doesn't make the splice itself necessarily nonblocking
    	// (because the actual file descriptors that are spliced from/to may block
    	// unless they have the O_NONBLOCK flag set), but it makes the splice pipe
    	// operations nonblocking.
    	spliceNonblock = 0x2
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:49:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/FunctionExtractor.kt

            val semanticsFromSignature = inferFunctionSemanticsFromSignature(function, function.returnType, inType, preIndex, configureLambdas)
            val maybeConfigureTypeRef = when (semanticsFromSignature) { // there is not necessarily a lambda parameter of this type: it might be an adding function with no lambda
                is FunctionSemantics.ConfigureSemantics -> semanticsFromSignature.configuredType
                else -> null
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 11:58:18 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenLocalDependencyWithGradleMetadataResolutionIntegrationTest.groovy

                        artifact(fileName: 'a_main.jar', version: '')
                        // Version is extracted from the file name byt classifier is extracted from the URL. This is checking current behaviour not necessarily desired behaviour
                        artifact(fileName: 'a_extra.jar', version: '', classifier: 'extra')
                        artifact(type: 'zip', version: '')
                    }
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/ChecksumAndSignatureVerificationOverride.java

        public void artifactsAccessed(String displayName) {
            verifyConcurrently();
            synchronized (failuresLock) {
                if (hasFatalFailure) {
                    // There are fatal failures, but not necessarily on all artifacts so we first filter out
                    // the artifacts which only have not fatal errors
                    Map<ModuleComponentArtifactIdentifier, Collection<RepositoryAwareVerificationFailure>> filtered =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:12:15 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/body.md

    A **request** body is data sent by the client to your API. A **response** body is the data your API sends to the client.
    
    Your API almost always has to send a **response** body. But clients don't necessarily need to send **request** bodies all the time.
    
    To declare a **request** body, you use <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a> models with all their power and benefits.
    
    !!! info
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. src/internal/filepathlite/path_windows.go

    func volumeNameLen(path string) int {
    	switch {
    	case len(path) >= 2 && path[1] == ':':
    		// Path starts with a drive letter.
    		//
    		// Not all Windows functions necessarily enforce the requirement that
    		// drive letters be in the set A-Z, and we don't try to here.
    		//
    		// We don't handle the case of a path starting with a non-ASCII character,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. src/internal/trace/internal/testgen/go122/trace.go

    	})
    	for _, e := range b.events {
    		tw.WriteEvent(e)
    	}
    }
    
    // Seq represents a sequence counter.
    type Seq uint64
    
    // Time represents a low-level trace timestamp (which does not necessarily
    // correspond to nanoseconds, like trace.Time does).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/wrapper-main/src/executable/resources/META-INF/LICENSE

          use, offer to sell, sell, import, and otherwise transfer the Work,
          where such license applies only to those patent claims licensable
          by such Contributor that are necessarily infringed by their
          Contribution(s) alone or by combination of their Contribution(s)
          with the Work to which such Contribution(s) was submitted. If You
          institute patent litigation against any entity (including a
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top