Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 158 for mentioned (0.27 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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. staging/src/k8s.io/apiserver/pkg/endpoints/metrics/metrics.go

    	}
    	// this is the empty scope
    	return ""
    }
    
    // CleanListScope computes the request scope for metrics.
    //
    // Note that normally we would use CleanScope for computation.
    // But due to the same reasons mentioned in determineRequestNamespaceAndName we cannot.
    func CleanListScope(ctx context.Context, opts *metainternalversion.ListOptions) string {
    	namespace, name := determineRequestNamespaceAndName(ctx, opts)
    	if len(name) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 07:29:19 UTC 2023
    - 35K bytes
    - Viewed (0)
  10. 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)
Back to top