Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for confidence (0.37 sec)

  1. src/cmd/go/internal/modindex/read.go

    	"cmd/go/internal/par"
    	"cmd/go/internal/str"
    )
    
    // enabled is used to flag off the behavior of the module index on tip.
    // It will be removed before the release.
    // TODO(matloob): Remove enabled once we have more confidence on the
    // module index.
    var enabled = godebug.New("#goindex").Value() != "0"
    
    // Module represents and encoded module index file. It is used to
    // do the equivalent of build.Import of packages in the module and answer other
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/ipset/ipset_test.go

    		}
    	}
    }
    
    // This is a coarse test, but it offers some modicum of confidence as the code is evolved.
    func TestValidateEntry(t *testing.T) {
    	testCases := []struct {
    		entry *Entry
    		set   *IPSet
    		valid bool
    		desc  string
    	}{
    		{ // case[0]
    			entry: &Entry{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    Even small changes, such as the contents of a manifest file in a JAR, can cause problems.
    If your Gradle build produces the same output as the Ant build, this will give you and others confidence in switching over and make it easier to implement the big changes that will provide the greatest benefits.
     3. Decide whether you have a multi-project build or not.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    Even small changes, such as the contents of a manifest file in a JAR, can cause problems.
    If your Gradle build produces the same output as the Maven build, this will give you confidence in switching over and make it easier to implement the changes that will provide the greatest benefits.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  5. maven-model-builder/src/site/apt/index.apt

        {{{https://cwiki.apache.org/confluence/display/MAVEN/POM+Element+for+Source+File+Encoding}source files encoding}}
        (defaults to <<<UTF-8>>> since Maven 4.0.0, no default value was provided in Maven 3.x, meaning that the platform
        encoding was used by plugins)
    
        * <<<$\{project.reporting.outputEncoding\}>>> for
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 20 10:58:12 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

                }
            }
    
            if ((reference != null && !reference.isEmpty()) && !reference.startsWith("http:")) {
                reference = "http://cwiki.apache.org/confluence/display/MAVEN/" + reference;
            }
    
            return reference;
        }
    
        private boolean isNoteworthyException(Throwable exception) {
            if (exception == null) {
                return false;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/common/extensions.kt

        GradleBuildStep(init)
            .apply(custom)
            .also {
                step(it)
            }
    
    /**
     * Adds a [Gradle build step](https://confluence.jetbrains.com/display/TCDL/Gradle)
     * that runs with the Gradle wrapper.
     *
     * @see GradleBuildStep
     */
    fun BuildSteps.gradleWrapper(buildType: BuildType? = null, init: GradleBuildStep.() -> Unit): GradleBuildStep =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  8. src/runtime/os_freebsd.go

    	// whether there is currently a signal stack and uses it if
    	// present. To avoid this confusion, explicitly disable the
    	// signal stack on the main thread when not running in a
    	// library. This can be removed when we are confident that all
    	// FreeBSD users are running a patched kernel. See issue #15658.
    	if gp := getg(); !isarchive && !islibrary && gp.m == &m0 && gp == gp.m.g0 {
    		st := stackt{ss_flags: _SS_DISABLE}
    		sigaltstack(&st, nil)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/base/Suppliers.java

       *     by subsequent {@code get()} calls
       * @throws IllegalArgumentException if {@code duration} is not positive
       * @since 33.1.0
       */
      @Beta // only until we're confident that Java 8+ APIs are safe for our Android users
      @J2ktIncompatible
      @GwtIncompatible // java.time.Duration
      @SuppressWarnings("Java7ApiChecker") // no more dangerous that wherever the user got the Duration
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/base/Suppliers.java

       *     by subsequent {@code get()} calls
       * @throws IllegalArgumentException if {@code duration} is not positive
       * @since 33.1.0
       */
      @Beta // only until we're confident that Java 8+ APIs are safe for our Android users
      @J2ktIncompatible
      @GwtIncompatible // java.time.Duration
      @SuppressWarnings("Java7ApiChecker") // no more dangerous that wherever the user got the Duration
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top