Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 749 for reachable (0.17 sec)

  1. src/cmd/compile/internal/types2/issues_test.go

    )
    
    // go.dev/issue/46905: make sure template is not the first package qualified.
    var _ fmt.Stringer = 1 // ERRORx "cannot use 1.*as fmt\\.Stringer"
    
    // Packages should be fully qualified when there is ambiguity in reachable
    // packages. In this case both a (and for that matter html/template) import
    // text/template.
    func _() { a.G(template /* ERRORx "cannot use .*html/template.*Template" */ .Template{}) }
    `
    
    		tsrc = `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/switch.go

    			noMatch := typecheck.AutoLabel(".s")
    			for j := 0; j < 1<<b; j++ {
    				jt.Cases[j] = constant.MakeInt64(int64(j))
    				jt.Targets[j] = noMatch
    			}
    			// This statement is not reachable, but it will make it obvious that we don't
    			// fall through to the first case.
    			out.Append(ir.NewBranchStmt(base.Pos, ir.OGOTO, noMatch))
    
    			// Emit each of the actual cases.
    			for _, c := range cc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  3. doc/go_mem.html

    <h3 id="finalizer">Finalizers</h3>
    
    <p>
    The <a href="/pkg/runtime/"><code>runtime</code></a> package provides
    a <code>SetFinalizer</code> function that adds a finalizer to be called when
    a particular object is no longer reachable by the program.
    A call to <code>SetFinalizer(x, f)</code> is synchronized before the finalization call <code>f(x)</code>.
    </p>
    
    <h3 id="more">Additional Mechanisms</h3>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1/types.go

    // +k8s:prerelease-lifecycle-gen:introduced=1.19
    
    // Ingress is a collection of rules that allow inbound connections to reach the
    // endpoints defined by a backend. An Ingress can be configured to give services
    // externally-reachable urls, load balance traffic, terminate SSL, offer name
    // based virtual hosting etc.
    type Ingress struct {
    	metav1.TypeMeta `json:",inline"`
    
    	// Standard object's metadata.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/pcln.go

    	// get a dummy function inserted between because the external linker can place
    	// functions in those areas. We mark those areas as not covered by the Go
    	// runtime.
    	//
    	// On most platforms this is the number of reachable functions.
    	nfunc int32
    
    	// The number of filenames in runtime.filetab.
    	nfiles uint32
    }
    
    // addGeneratedSym adds a generator symbol to pclntab, returning the new Sym.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceentry/controller.go

    // address field if the hostname is not a wildcard, or when resolution
    // is not NONE. The IPs are allocated from the reserved Class E subnet
    // (240.240.0.0/16) that is not reachable outside the pod or reserved
    // Benchmarking IP range (2001:2::/48) in RFC5180. When DNS
    // capture is enabled, Envoy will resolve the DNS to these IPs. The
    // listeners for TCP services will also be set up on these IPs. The
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  7. src/internal/types/errors/codes.go

    	// selector, rather than a field selector, or when the field is embedded via
    	// a pointer.
    	//
    	// Per the spec:
    	//
    	//  "If f is an embedded field, it must be reachable without pointer
    	//  indirections through fields of the struct. "
    	//
    	// Example:
    	//  import "unsafe"
    	//
    	//  type T struct { f int }
    	//  type S struct { *T }
    	//  var s S
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__authentication.k8s.io__v1_openapi.json

    which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field, once the finalizers list is empty. As long as the finalizers list contains items, deletion is blocked. Once the deletionTimestamp is set, this value may not be unset or be set further into the future, although...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/macho.go

    	// So we sort them here and pre-allocate dynid for them
    	// See https://golang.org/issue/4029
    	for _, s := range ctxt.dynexp {
    		if !ldr.AttrReachable(s) {
    			panic("dynexp symbol is not reachable")
    		}
    	}
    	collectmachosyms(ctxt)
    	sort.Slice(sortsym[:nsortsym], func(i, j int) bool {
    		s1 := sortsym[i]
    		s2 := sortsym[j]
    		k1 := symkind(ldr, s1)
    		k2 := symkind(ldr, s2)
    		if k1 != k2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    ----
    
    "Isolating" processors have the following additional limitations:
    
    * They must make all decisions (code generation, validation messages) for an annotated type based on information reachable from its AST.
        This means you can analyze the types' super-class, method return types, annotations etc., even transitively.
        But you cannot make decisions based on unrelated elements in the RoundEnvironment.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
Back to top