Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 273 for _ecounters (0.6 sec)

  1. src/cmd/vendor/golang.org/x/telemetry/start.go

    	// ReportCrashes is a non-functional unless the program is built with go1.23+.
    	ReportCrashes bool
    
    	// Upload causes this program to periodically upload approved counters
    	// from the local telemetry database to telemetry.go.dev.
    	//
    	// This option has no effect unless the user has given consent
    	// to enable data collection, for example by running
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/visitor.h

    // once even if it's called from multiple places and/or recursively.
    //
    // The current implementation follows direct calls to `mlir::func::FuncOp` only
    // and returns a `mlir::WalkResult::interrupt()` when it encounters a call whose
    // callee cannot be resolved to `mlir::func::FuncOp`.
    mlir::WalkResult WalkReachableFunctions(
        mlir::func::FuncOp func,
        llvm::function_ref<mlir::WalkResult(mlir::func::FuncOp)> callback,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 03:46:51 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/go/internal/telemetrystats/telemetrystats.go

    	"cmd/go/internal/base"
    	"cmd/go/internal/cfg"
    	"cmd/go/internal/modload"
    	"cmd/internal/telemetry"
    )
    
    func Increment() {
    	incrementConfig()
    	incrementVersionCounters()
    }
    
    // incrementConfig increments counters for the configuration
    // the command is running in.
    func incrementConfig() {
    	if !modload.WillBeEnabled() {
    		telemetry.Inc("go/mode:gopath")
    	} else if workfile := modload.FindGoWork(base.Cwd()); workfile != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:09:11 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/test/cover.go

    	if err != nil {
    		base.Fatalf("%v", err)
    	}
    	coverMerge.f = f
    }
    
    // mergeCoverProfile merges file into the profile stored in testCoverProfile.
    // It prints any errors it encounters to ew.
    func mergeCoverProfile(ew io.Writer, file string) {
    	if coverMerge.f == nil {
    		return
    	}
    	coverMerge.Lock()
    	defer coverMerge.Unlock()
    
    	expect := fmt.Sprintf("mode: %s\n", cfg.BuildCoverMode)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. platforms/jvm/normalization-java/src/main/java/org/gradle/api/internal/changedetection/state/PropertyResourceBundleFallbackCharset.java

    import java.nio.charset.StandardCharsets;
    
    /**
     * A Java 8 compliant Charset implementation for reading properties files.  It first tries
     * to load the properties file using UTF-8 encoding and if it encounters an error, tries to
     * load the file using ISO-8859-1 encoding.
     *
     * This class is only necessary because {@code sun.util.PropertyResourceBundleCharset} is not
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/authorization/cel/metrics_test.go

    			},
    			name:      "wh1.example.com",
    			authztype: "Webhook",
    			want: `
    			# HELP apiserver_authorization_match_condition_evaluation_errors_total [ALPHA] Total number of errors when an authorization webhook encounters a match condition error split by authorizer type and name.
    			# TYPE apiserver_authorization_match_condition_evaluation_errors_total counter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 22:41:27 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/format/format.go

    }
    
    type HeapCountersArg struct {
    	Allocated uint64
    	NextGC    uint64
    }
    
    const (
    	ProcsSection = 0 // where Goroutines or per-P timelines are presented.
    	StatsSection = 1 // where counters are presented.
    	TasksSection = 2 // where Task hierarchy & timeline is presented.
    )
    
    type GoroutineCountersArg struct {
    	Running   uint64
    	Runnable  uint64
    	GCWaiting uint64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/io/ByteArrayDataInput.java

     * identical functionality but do not throw {@link IOException}.
     *
     * <p><b>Warning:</b> The caller is responsible for not attempting to read past the end of the
     * array. If any method encounters the end of the array prematurely, it throws {@link
     * IllegalStateException} to signify <i>programmer error</i>. This behavior is a technical violation
     * of the supertype's contract, which specifies a checked exception.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 28 20:13:02 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. src/os/path.go

    		if err1 == nil && dir.IsDir() {
    			return nil
    		}
    		return err
    	}
    	return nil
    }
    
    // RemoveAll removes path and any children it contains.
    // It removes everything it can but returns the first error
    // it encounters. If the path does not exist, RemoveAll
    // returns nil (no error).
    // If there is an error, it will be of type [*PathError].
    func RemoveAll(path string) error {
    	return removeAll(path)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:09 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. src/cmd/cover/testdata/test.go

    	testTypeSwitch()
    	testSelect1()
    	testSelect2()
    	testPanic()
    	testEmptySwitches()
    	testFunctionLiteral()
    	testGoto()
    }
    
    // The indexes of the counters in testPanic are known to main.go
    const panicIndex = 3
    
    // This test appears first because the index of its counters is known to main.go
    func testPanic() {
    	defer func() {
    		recover()
    	}()
    	check(LINE, 1)
    	panic("should not get next line")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.9K bytes
    - Viewed (0)
Back to top