Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for confidence (0.25 sec)

  1. src/cmd/vendor/golang.org/x/text/language/match.go

    // than another pair of tags. First, we determine a rough confidence level. If the
    // levels are different, the one with the highest confidence wins.
    // Second, if the rough confidence levels are identical, we use a set of tie-breaker
    // rules.
    //
    // The confidence level of matching a pair of tags is determined by finding the
    // lowest confidence level of any matches of the corresponding subtags (the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/language/language.go

    	}
    	return t, nil
    
    }
    
    // Confidence indicates the level of certainty for a given return value.
    // For example, Serbian may be written in Cyrillic or Latin script.
    // The confidence level indicates whether a value was explicitly specified,
    // whether it is typically the only possible value, or whether there is
    // an ambiguity.
    type Confidence int
    
    const (
    	No    Confidence = iota // full confidence that there was no match
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/AbstractTablePageGenerator.java

                            .style("font-size: smaller")
                            .title("The confidence with which these two data series are different. E.g. 90% means they're different with 90% confidence. Currently we fail the test if the confidence > 99.9%.")
                            .text("Confidence");
                                i().classAttr("fa fa-info-circle").text(" ").end()
                        .end();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/TestPageGenerator.java

                    if(testHistory instanceof CrossVersionPerformanceTestHistory) {
                        charts.add(new Chart("confidence", "confidence", "%", "confidenceChart", false));
                        charts.add(new Chart("difference", "difference", "%", "differenceChart", true));
                    }
    
                    charts.forEach(chart -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/language/tables.go

    	lang     uint16
    	script   uint8
    	group    uint8
    	distance uint8
    }
    
    // matchLang holds pairs of langIDs of base languages that are typically
    // mutually intelligible. Each pair is associated with a confidence and
    // whether the intelligibility goes one or both ways.
    var matchLang = []mutualIntelligibility{ // 113 elements
    	0:   {want: 0x1d1, have: 0xb7, distance: 0x4, oneway: false},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientHelper.java

                return "does";
            }
            // Sometimes the SSLHandshakeException doesn't include the 'protocol_version', even though this is the cause of the error.
            // Tell the user this but with less confidence.
            return "may";
        }
    
        protected HttpClientResponse executeGetOrHead(HttpRequestBase method) throws IOException {
            HttpClientResponse response = performHttpRequest(method);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/mmu.go

    // Consider using sampling to compute an approximate MUT. This would
    // work by sampling the mutator utilization at randomly selected
    // points in time in the trace to build an empirical distribution. We
    // could potentially put confidence intervals on these estimates and
    // render this progressively as we refine the distributions.
    
    package traceviewer
    
    import (
    	"encoding/json"
    	"fmt"
    	"internal/trace"
    	"log"
    	"math"
    	"net/http"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:53 UTC 2023
    - 13K bytes
    - Viewed (0)
  8. common/config/.golangci.yml

        line-length: 160
        # tab width in spaces. Default to 1.
        tab-width: 1
      revive:
        ignore-generated-header: false
        severity: "warning"
        confidence: 0.0
        rules:
          - name: blank-imports
          - name: context-keys-type
          - name: time-naming
          - name: var-declaration
          - name: unexported-return
          - name: errorf
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    Testing is a crucial part of the software development life cycle, ensuring that software functions correctly and meets quality standards before release.
    Automated testing allows developers to refactor and improve code with confidence.
    
    [[testing-pyramid]]
    === The testing pyramid
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. pkg/registry/batch/job/strategy.go

    		opts.AllowMutableSchedulingDirectives = suspended && notStarted
    
    		// Validation should not fail jobs if they don't have the new labels.
    		// This can be removed once we have high confidence that both labels exist (1.30 at least)
    		_, hadJobName := oldJob.Spec.Template.Labels[batch.JobNameLabel]
    		_, hadControllerUid := oldJob.Spec.Template.Labels[batch.ControllerUidLabel]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top