Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 288 for mentioned (0.13 sec)

  1. src/internal/trace/summary.go

    			task.Parent = parent
    			parent.Children = append(parent.Children, task)
    		}
    	case EventLog:
    		log := ev.Log()
    		// Just add the log to the task. We'll create the task if it
    		// doesn't exist (it's just been mentioned now).
    		task := s.getOrAddTask(log.Task)
    		task.Goroutines[ev.Goroutine()] = s.gs[ev.Goroutine()]
    		task.Logs = append(task.Logs, ev)
    	}
    }
    
    func (s *Summarizer) getOrAddTask(id TaskID) *UserTaskSummary {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    									Value: 1,
    								},
    							},
    						},
    						LoadBalancingWeight: &wrappers.UInt32Value{
    							Value: 1,
    						},
    						Priority: 4, // does not match failoverPriority and locality but mentioned in locality failover settings for the client region.
    					},
    					{
    						Locality: &core.Locality{
    							Region:  "region3",
    							Zone:    "zone3",
    							SubZone: "subzone3",
    						},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    If you encounter such an issue with an existing library, you can consider a <<component_metadata_rules.adoc#sec:component_metadata_rules,component metadata rule>> to fix the incorrect metadata in your build.
    However, as mentioned above, if the library is published with Gradle, the produced POM file only puts `api` dependencies into the compile scope and the remaining `implementation` dependencies into the runtime scope.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    Let's illustrate with an example.
    Consider two toolchain resolver plugins applied by the build:
    
    * One is the Foojay plugin mentioned above, which downloads toolchains via the `FoojayToolchainResolver` it provides.
    * The other contains a **FICTITIOUS** resolver named `MadeUpResolver`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug_test.go

    // (because this appears to be timing-dependent in gdb, and the cleanest fix is in code common to gdb and dlv).
    //
    // Also by default, any source code outside of .../testdata/ is not mentioned
    // in the debugging histories.  This deals both with inlined library code once
    // the compiler is generating clean inline records, and also deals with
    // runtime code between return from main and process exit.  This is hidden
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  6. src/html/template/escape.go

    	if out, ok := e.output[dname]; ok {
    		// Already escaped.
    		return out, dname
    	}
    	t := e.template(name)
    	if t == nil {
    		// Two cases: The template exists but is empty, or has never been mentioned at
    		// all. Distinguish the cases in the error messages.
    		if e.ns.set[name] != nil {
    			return context{
    				state: stateError,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/sql-databases.md

    ## Alternative DB session with middleware
    
    If you can't use dependencies with `yield` -- for example, if you are not using **Python 3.7** and can't install the "backports" mentioned above for **Python 3.6** -- you can set up the session in a "middleware" in a similar way.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  8. src/net/http/transfer.go

    		}
    	case realLength == 0:
    		t.Body = NoBody
    	case realLength > 0:
    		t.Body = &body{src: io.LimitReader(r, realLength), closing: t.Close}
    	default:
    		// realLength < 0, i.e. "Content-Length" not mentioned in header
    		if t.Close {
    			// Close semantics (i.e. HTTP/1.0)
    			t.Body = &body{src: r, closing: t.Close}
    		} else {
    			// Persistent connection (i.e. HTTP/1.1)
    			t.Body = NoBody
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  9. src/internal/trace/gc.go

    				//
    				// We don't need to do anything if UtilPerProc is set. If we get an event like
    				// this for a running P, it must show up the first time a P is mentioned. Therefore,
    				// this P won't actually have any MutatorUtils on its list yet.
    				//
    				// However, if UtilPerProc isn't set, then we probably have data from other procs
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/cmd/bisect/main.go

    // The go command also checks the GOCOMPILEDEBUG environment variable for flags
    // to pass to the compiler, so the above command is equivalent to:
    //
    //	bisect GOCOMPILEDEBUG=loopvarhash=PATTERN go test
    //
    // Finally, as mentioned earlier, the -compile flag allows shortening this command further:
    //
    //	bisect -compile=loopvar go test
    //
    // # Defeating Build Caches
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 23.9K bytes
    - Viewed (0)
Back to top