Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 130 for mentioned (0.26 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. 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)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    * Avoid dependencies that pull in legacy libraries.
    * Upgrade the dependency version if the new version no longer pulls in a legacy library.
    * Downgrade to `google-collections`. It's not recommended, just mentioned for completeness.
    
    Traditional approaches work but they are not general enough.
    For example, an organisation wants to resolve the `google-collections` -&gt; `guava` conflict resolution problem in all projects.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  10. src/crypto/internal/bigmod/nat.go

    			// over: T of the algorithm is T[i:] for us. That means that T1 in
    			// Step 2 (T mod 2^_W) is simply T[i]. k0 in Step 3 is our m0inv.
    			Y := T[i] * m.m0inv
    
    			// Step 4 and 5 add Y × m to T, which as mentioned above is stored
    			// at T[i:]. The two carries (from a × d and Y × m) are added up in
    			// the next word T[n+i], and the carry bit from that addition is
    			// brought forward to the next iteration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top