Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,282 for mean_t (0.19 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/apache/maven/wagon/wagon-webdav/1.0-beta-2/wagon-webdav-1.0-beta-2.jar

    that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 16.9K bytes
    - Viewed (0)
  2. maven-core/src/site/apt/offline-mode.apt

      the system can't tell whether it has access to the network required by these
      operations.
    
      Offline mode really means anticipating a lack of network connectivity, and as
      a result turning off certain services provided by m2 and providing a coherent
      way of predicting and reporting when network-related failures will take place.
      It means warning users that since the network is missing, certain features and
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_dependencies.adoc

    Now, notice that the code above doesn't tell us anything about the intended _consumer_ of this configuration.
    In particular, it doesn't tell us how the configuration is meant to be _used_.
    Let's say that `lib` is a Java library: it might expose different things, such as its API, implementation, or test fixtures.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 30.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    --
    Dependency verification is, by nature, an inconvenient feature to use.
    It means that whenever you're going to update a dependency, builds are likely to fail.
    It means that merging branches are going to be harder because each branch can have different dependencies.
    It means that you will be tempted to switch it off.
    
    So why should you bother?
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/configurations/ConfigurationRolesForMigration.java

     * from one role to another by marking usages which are present in the current role but not present in the eventual role
     * as deprecated.
     *
     * <p>The roles here are all meant to be temporary roles used for migration only, to be removed in Gradle 9.0.</p>
     *
     * <p>This is meant to only support <strong>narrowing migrations</strong>, that restrict usage that was previously
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 12 16:55:27 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. licenses/github.com/klauspost/compress/LICENSE

       1. Definitions.
    
          "License" shall mean the terms and conditions for use, reproduction,
          and distribution as defined by Sections 1 through 9 of this document.
    
          "Licensor" shall mean the copyright owner or entity authorized by
          the copyright owner that is granting the License.
    
          "Legal Entity" shall mean the union of the acting entity and all
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 30 19:13:15 UTC 2021
    - 16.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/cross_project_publications.adoc

    include::sample[dir="snippets/dependencyManagement/modelingFeatures-crossProjectPublications-simple/groovy",files="producer/build.gradle[tags=declare-outgoing-configuration]"]
    ====
    
    This configuration is _consumable_, which means it's an "exchange" meant for consumers.
    We're now going to add artifacts to this configuration, that consumers would get when they consume it:
    
    .Attaching an artifact to an outgoing configuration
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 18K bytes
    - Viewed (0)
  8. src/strconv/ftoa.go

    func fmtX(dst []byte, prec int, fmt byte, neg bool, mant uint64, exp int, flt *floatInfo) []byte {
    	if mant == 0 {
    		exp = 0
    	}
    
    	// Shift digits so leading 1 (if any) is at bit 1<<60.
    	mant <<= 60 - flt.mantbits
    	for mant != 0 && mant&(1<<60) == 0 {
    		mant <<= 1
    		exp--
    	}
    
    	// Round if requested.
    	if prec >= 0 && prec < 15 {
    		shift := uint(prec * 4)
    		extra := (mant << shift) & (1<<60 - 1)
    		mant >>= 60 - shift
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/notfoundhandler/not_found_handler.go

    )
    
    // New returns an HTTP handler that is meant to be executed at the end of the delegation chain.
    // It checks if the request have been made before the server has installed all known HTTP paths.
    // In that case it returns a 503 response otherwise it returns a 404.
    //
    // Note that we don't want to add additional checks to the readyz path as it might prevent fixing bricked clusters.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 21 13:25:33 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  10. licenses/sigs.k8s.io/yaml/LICENSE

       1. Definitions.
    
          "License" shall mean the terms and conditions for use, reproduction,
          and distribution as defined by Sections 1 through 9 of this document.
    
          "Licensor" shall mean the copyright owner or entity authorized by
          the copyright owner that is granting the License.
    
          "Legal Entity" shall mean the union of the acting entity and all
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 19:53:28 UTC 2023
    - 15.8K bytes
    - Viewed (0)
Back to top