Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 143 for reachable (0.14 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +optional
      optional string status = 2;
    
      // A human-readable description of the status of this operation.
      // +optional
      optional string message = 3;
    
      // A machine-readable description of why this operation is in the
      // "Failure" status. If this value is empty there
      // is no information available. A Reason clarifies an HTTP status
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__authorization.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:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/extensions/v1beta1/types.go

    // 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.
    // DEPRECATED - This group version of Ingress is deprecated by networking.k8s.io/v1beta1 Ingress. See the release notes for more information.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// +optional
    	Status string `json:"status,omitempty" protobuf:"bytes,2,opt,name=status"`
    	// A human-readable description of the status of this operation.
    	// +optional
    	Message string `json:"message,omitempty" protobuf:"bytes,3,opt,name=message"`
    	// A machine-readable description of why this operation is in the
    	// "Failure" status. If this value is empty there
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/buildlist.go

    		// imported packages. It may be okay to remove these from the list of
    		// explicit requirements if that removes them from the module graph. If they
    		// are present in the module graph reachable from rootPaths, they must not
    		// be at a lower version. That could cause a missing sum error or a new
    		// import ambiguity.
    		//
    		// For example, suppose a developer rewrites imports from example.com/m to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ppc64/asm.go

    	r.SetSym(ts)
    	r.SetAdd(int64((n - minReg) * offMul))
    	firstUse = !ldr.AttrReachable(ts)
    	if firstUse {
    		// This function only becomes reachable now. It has been dropped from
    		// the text section (it was unreachable until now), it needs included.
    		ldr.SetAttrReachable(ts, true)
    	}
    	return ts, firstUse
    }
    
    func gentext(ctxt *ld.Link, ldr *loader.Loader) {
    	if ctxt.DynlinkingGo() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      absl::c_reverse(rpo);
    
      // best_pred_for_node[n] contains a predecessor of `n` that has an
      // unclusterable node in some path from `from` to itself.
      // best_pred_for_node[n] is unpopulated for nodes that are not reachable from
      // `from`.  We build this table up inductively by traversing the cycles graph
      // in RPO.
      absl::flat_hash_map<int, int> best_pred_for_node;
      best_pred_for_node[from] = -1;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. docs/bucket/notifications/README.md

    ```sh
    mc admin config set myminio notify_webhook:1 queue_limit="0"  endpoint="http://localhost:3000" queue_dir=""
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/obj.go

    			return true
    		case AJAL, AJALR:
    			if p.From.Type == obj.TYPE_REG && p.From.Reg == REG_LR {
    				return true
    			}
    		}
    	}
    
    	return false
    }
    
    // setPCs sets the Pc field in all instructions reachable from p.
    // It uses pc as the initial value and returns the next available pc.
    func setPCs(p *obj.Prog, pc int64) int64 {
    	for ; p != nil; p = p.Link {
    		p.Pc = pc
    		for _, ins := range instructionsForProg(p) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    			// If -linkshared, the GCProg generation code may need to reach
    			// out to the shared library for the type descriptor's data, even
    			// the type descriptor itself is not actually needed at run time
    			// (therefore not reachable). We still need to mangle its name,
    			// so it is consistent with the one stored in the shared library.
    			continue
    		}
    		name := ldr.SymName(s)
    		newName := typeSymbolMangle(name)
    		if newName != name {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top