Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 139 for Thresholds (0.14 sec)

  1. src/cmd/go/internal/work/security.go

    	re(`-m(no-)?avx[0-9a-z.]*`),
    	re(`-m(no-)?ms-bitfields`),
    	re(`-m(no-)?stack-(.+)`),
    	re(`-mmacosx-(.+)`),
    	re(`-mios-simulator-version-min=(.+)`),
    	re(`-miphoneos-version-min=(.+)`),
    	re(`-mlarge-data-threshold=[0-9]+`),
    	re(`-mtvos-simulator-version-min=(.+)`),
    	re(`-mtvos-version-min=(.+)`),
    	re(`-mwatchos-simulator-version-min=(.+)`),
    	re(`-mwatchos-version-min=(.+)`),
    	re(`-mnop-fun-dllimport`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/ld_test.go

    	}
    
    	testenv.MustHaveGoBuild(t)
    	testenv.MustHaveCGO(t)
    	t.Parallel()
    	dir := t.TempDir()
    
    	// NB: the use of -ldflags=-debugtextsize=1048576 tells the linker to
    	// split text sections at a size threshold of 1M instead of the
    	// architected limit of 67M or larger. The choice of building cmd/go
    	// is arbitrary; we just need something sufficiently large that uses
    	// external linking.
    	exe := filepath.Join(dir, "go.exe")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 05:45:53 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  3. pkg/serviceaccount/claims.go

    	if warnafter != nil && *warnafter != 0 {
    		if nowTime.After(warnafter.Time()) {
    			secondsAfterWarn := nowTime.Unix() - warnafter.Time().Unix()
    			auditInfo := fmt.Sprintf("subject: %s, seconds after warning threshold: %d", public.Subject, secondsAfterWarn)
    			audit.AddAuditAnnotation(ctx, "authentication.k8s.io/stale-token", auditInfo)
    			staleTokensTotal.WithContext(ctx).Inc()
    		} else {
    			validTokensTotal.WithContext(ctx).Inc()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/custom_tasks.adoc

    `Long`, `Property<Long>`::
    Describes an option with a long value. +
    Passing the option on the command line also requires a value, e.g., `--threshold=2147483648` or `--threshold 2147483648`.
    
    `String`, `Property<String>`::
    Describes an option with an arbitrary String value. +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 15:21:05 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  5. pkg/log/scope.go

    	"sync"
    	"sync/atomic"
    	"time"
    
    	"go.uber.org/zap"
    	"go.uber.org/zap/zapcore"
    )
    
    // Scope constrains logging control to a named scope level. It gives users a fine grained control over output severity
    // threshold and stack traces.
    //
    // Scope supports structured logging using WithLabels:
    //
    //	s := RegisterScope("MyScope", "Description", 0)
    //	s = s.WithLabels("foo", "bar", "baz", 123, "qux", 0.123)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 16:47:01 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/dense_to_sparse.cc

    //
    namespace mlir {
    namespace TFL {
    
    namespace {
    
    #define GEN_PASS_DEF_DENSETOSPARSEPASS
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    // If sparsity level is below this threshold, keep the tensor in dense format.
    constexpr float kMinSparsityLevel = 0.3;
    // Heuristic to check if a block configuration is correct for float constants.
    constexpr float kBlockOverRandomSparsityRatio = 0.9;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/suggest/SuggesterTest.java

            suggester.indexer().addElevateWord(elevateWord, true);
            suggester.refresh();
    
            Thread.sleep(1000);
            ZonedDateTime threshold = ZonedDateTime.now();
            Thread.sleep(1000);
    
            suggester.indexer().indexFromDocument(new Map[] { Collections.singletonMap(field, (Object) "検索エンジン") });
            suggester.refresh();
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 37K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/passes/decompose.cc

      // If `changed` is false, it is considered as a failure, so the recursive
      // rewrite will stop.
      return success(changed);
    }
    
    void DecomposeTFOpsPass::runOnOperation() {
      // Set a maximum iteration threshold in case there are infinite loops in the
      // call stack.
      int max_iterators = 10;
      do {
        // canonicalization
        ApplyCanonicalization();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

        private static final String FAILURE_THRESOLD_SQL =
            "SELECT TESTCLASS, TESTID, TESTPROJECT, MAX(ABS((BASELINEMEDIAN-CURRENTMEDIAN)/BASELINEMEDIAN)) as THRESHOLD\n" +
                "FROM testExecution\n" +
                "WHERE (CHANNEL = ? or CHANNEL= ?) AND STARTTIME > ? AND DIFFCONFIDENCE > 0.97\n" +
                "GROUP BY TESTCLASS, TESTID, TESTPROJECT";
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testplugin/plugin_test.go

    		t.Skipf("text section splitting is not done in %s/%s", runtime.GOOS, runtime.GOARCH)
    	}
    
    	// Use -ldflags=-debugtextsize=262144 to let the linker split text section
    	// at a smaller size threshold, so it actually splits for the test binary.
    	goCmd(nil, "build", "-ldflags=-debugtextsize=262144", "-o", "host-split.exe", "./host")
    	run(t, "./host-split.exe")
    
    	// Check that we did split text sections.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
Back to top