Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 420 for yearly (0.2 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/instrumentations/save_report.cc

      auto module_op = cast<ModuleOp>(op);
      const QuantizationReport report(module_op);
    
      // Print a human-readable report to stdout regardless of whether the report
      // is saved to file.
      report.Print();
    
      // Exit early if the report should not be saved to file.
      if (!ShouldSaveReport(pass, op, file_path_)) return;
    
      SaveReport(report, *file_path_);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/cmd/vet/main.go

    		testinggoroutine.Analyzer,
    		timeformat.Analyzer,
    		unmarshal.Analyzer,
    		unreachable.Analyzer,
    		unsafeptr.Analyzer,
    		unusedresult.Analyzer,
    	)
    
    	// It's possible that unitchecker will exit early. In
    	// those cases the flags won't be counted.
    	telemetry.CountFlags("vet/flag:", *flag.CommandLine)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/integTest/kotlin/org/gradle/kotlin/dsl/resolver/KotlinScriptDependenciesResolverTest.kt

                assertSingleFileReport(ReportSeverity.ERROR, EditorMessages.failureUsingPrevious)
            }
        }
    
        @Test
        fun `report file fatality on early build configuration failure`() {
            // thus disabling syntax highlighting
    
            withKotlinBuildSrc()
            withFile(
                "buildSrc/src/main/kotlin/Foo.kt",
                """
                BOOM
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:12:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  4. pkg/envoy/agent.go

    			select {
    			case status := <-a.statusCh:
    				log.Infof("Envoy exited with status %v", status.err)
    				log.Infof("Graceful termination logic ended prematurely, envoy process terminated early")
    				return
    			default:
    				if err != nil {
    					log.Errorf(err.Error())
    					retryCount++
    					// Max retry 5 times
    					if retryCount > 4 {
    						a.abortCh <- errAbort
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. src/runtime/pprof/label.go

    	ctxLabels := labelValue(ctx)
    	v, ok := ctxLabels[key]
    	return v, ok
    }
    
    // ForLabels invokes f with each label set on the context.
    // The function f should return true to continue iteration or false to stop iteration early.
    func ForLabels(ctx context.Context, f func(key, value string) bool) {
    	ctxLabels := labelValue(ctx)
    	for k, v := range ctxLabels {
    		if !f(k, v) {
    			break
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheClassLoaderScopeRegistryListener.kt

                //  from DefaultConfigurationCacheHost so a decision based on the configured
                //  configuration cache strategy (none, store or load) can be taken early on.
                //  The listener only needs to be attached in the `store` state.
                scopeSpecs.clear()
                loaders.clear()
                listenerManager.remove(this)
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/copyelim.go

    //	v = phi(v, w, x)
    //	w = phi(v, w, x)
    //
    // and would that be useful?
    func phielim(f *Func) {
    	for {
    		change := false
    		for _, b := range f.Blocks {
    			for _, v := range b.Values {
    				// This is an early place in SSA where all values are examined.
    				// Rewrite all 0-sized Go values to remove accessors, dereferences, loads, etc.
    				if t := v.Type; (t.IsStruct() || t.IsArray()) && t.Size() == 0 {
    					if t.IsStruct() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/KaEngineService.kt

     * the currently active lifetime token for comparison.
     *
     * As a marker interface, [KaEngineService] clearly separates an engine service from [KotlinPlatformComponent]s which need to be implemented
     * by a platform. Furthermore, engine services are always prefixed with `Ka`, in contrast to platform components which are prefixed with
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. src/syscall/rlimit.go

    //
    // After a long discussion on go.dev/issue/46279, we decided the
    // best approach was for Go to raise the limit unconditionally for itself,
    // and then leave old software to set the limit back as needed.
    // Code that really wants Go to leave the limit alone can set the hard limit,
    // which Go of course has no choice but to respect.
    func init() {
    	var lim Rlimit
    	if err := Getrlimit(RLIMIT_NOFILE, &lim); err == nil && lim.Cur != lim.Max {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InputTrackingState.kt

     * directly affect the configuration.
     * For example, accessing environment variable inside the `ValueSource` being obtained at
     * the configuration time is not really an input, because the value of the value source itself
     * becomes part of the configuration cache fingerprint.
     */
    @ServiceScope(Scope.BuildTree::class)
    class InputTrackingState {
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top