Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,020 for necessarily (0.2 sec)

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

       * from least to greatest. If there are fewer than {@code k} elements present, all will be
       * included.
       *
       * <p>The implementation does not necessarily use a <i>stable</i> sorting algorithm; when multiple
       * elements are equivalent, it is undefined which will come first.
       *
       * <p><b>Java 8+ users:</b> Use {@code Streams.stream(iterable).collect(Comparators.least(k,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/DefaultProjectSchemaProvider.kt

    
    private
    fun NamedDomainObjectSchema.toFirstKotlinPublicOrSelf() =
        publicType.concreteClass.let { schemaType ->
            // Because a public Java class might not correspond necessarily to a
            // public Kotlin type due to Kotlin `internal` semantics, we check
            // whether the public Java class is also the first public Kotlin type,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:46 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/text/transform/transform.go

    	// transformed from src or left over from previous Transform calls)
    	// were written to dst. A nil error can be returned regardless of
    	// whether atEOF is true. If err is nil then nSrc must equal len(src);
    	// the converse is not necessarily true.
    	//
    	// ErrShortDst means that dst was too short to receive all of the
    	// transformed bytes. ErrShortSrc means that src had insufficient data
    	// to complete the transformation. If both conditions apply, then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 21 22:10:00 UTC 2020
    - 21.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java

                 * object to write it's parameter words and bytes to our outgoing
                 * array. Incedentally when these andx smbs are created they are not
                 * necessarily populated with header data because they're not writing
                 * the header, only their body. But for whatever reason one might wish
                 * to populate fields if the writeXxx operation needs this header data
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.3K bytes
    - Viewed (0)
  5. subprojects/composite-builds/src/test/groovy/org/gradle/composite/internal/DefaultIncludedBuildRegistryTest.groovy

            nestedBuild1.identityPath == Path.path(":buildSrc")
    
            def nestedBuild2 = registry.getBuildSrcNestedBuild(parent)
            // Shows current behaviour, not necessarily desired behaviour
            nestedBuild2.buildIdentifier == buildIdentifier(":parent:buildSrc")
            nestedBuild2.identityPath == Path.path(":parent:buildSrc")
        }
    
        def build(String name) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 14:36:04 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Ordering.java

       * from least to greatest. If there are fewer than {@code k} elements present, all will be
       * included.
       *
       * <p>The implementation does not necessarily use a <i>stable</i> sorting algorithm; when multiple
       * elements are equivalent, it is undefined which will come first.
       *
       * <p><b>Java 8+ users:</b> Use {@code Streams.stream(iterable).collect(Comparators.least(k,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskClassChangesIncrementalCompilationIntegrationTest.groovy

            when:
            source api: ["class A { \n}"]
            run "impl:${language.compileTaskName}"
    
            then:
            impl.noneRecompiled()
        }
    
        // This test checks the current behavior, not necessarily the desired one.
        // If all classes are compiled by the same compile task, we do not know if a
        // change is an abi change or not. Hence, an abi change is always assumed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  8. src/net/dial.go

    	Cancel <-chan struct{}
    
    	// If Control is not nil, it is called after creating the network
    	// connection but before actually dialing.
    	//
    	// Network and address parameters passed to Control function are not
    	// necessarily the ones passed to Dial. For example, passing "tcp" to Dial
    	// will cause the Control function to be called with "tcp4" or "tcp6".
    	//
    	// Control is ignored if ControlContext is not nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top