Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for reachable (0.19 sec)

  1. src/cmd/link/internal/ld/deadcode.go

    //
    // There are three ways a method of a reachable type can be invoked:
    //
    //  1. direct call
    //  2. through a reachable interface type
    //  3. reflect.Value.Method (or MethodByName), or reflect.Type.Method
    //     (or MethodByName)
    //
    // The first case is handled by the flood fill, a directly called method
    // is marked as reachable.
    //
    // The second case is handled by decomposing all reachable interface
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/runtime/mfinal.go

    //
    // A finalizer may run as soon as an object becomes unreachable.
    // In order to use finalizers correctly, the program must ensure that
    // the object is reachable until it is no longer required.
    // Objects stored in global variables, or that can be found by tracing
    // pointers from a global variable, are reachable. A function argument or
    // receiver may become unreachable at the last point where the function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/waypoints.go

    	"istio.io/istio/pkg/workloadapi"
    )
    
    type InboundBinding struct {
    	Port     uint32
    	Protocol workloadapi.ApplicationTunnel_Protocol
    }
    
    type Waypoint struct {
    	krt.Named
    
    	// Addresses this Waypoint is reachable by. For stock Istio waypoints, this
    	// is is usually the VIP. Tere will always be at least one address in this
    	// list.
    	Addresses []netip.Addr
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:28 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/phases/kubeconfig/kubeconfig.go

    	// to the built-in super-user group, this will pass. In all other cases an error will be returned.
    	// The poll here is required to ensure the API server is reachable during "kubeadm init" workflows.
    	err = wait.PollUntilContextTimeout(
    		ctx,
    		retryInterval,
    		retryTimeout,
    		true, func(ctx context.Context) (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 27K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/func.go

    		f.HTMLWriter.WritePhase(f.pass.name, fmt.Sprintf("%s <span class=\"stats\">%s</span>", f.pass.name, stats))
    		f.HTMLWriter.flushPhases()
    	}
    	f.fe.Fatalf(f.Entry.Pos, msg, args...)
    }
    
    // postorder returns the reachable blocks in f in a postorder traversal.
    func (f *Func) postorder() []*Block {
    	if f.cachedPostorder == nil {
    		f.cachedPostorder = postorder(f)
    	}
    	return f.cachedPostorder
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. scan.go

    				for idx, column := range columns {
    					if field := sch.LookUpField(column); field != nil && field.Readable {
    						fields[idx] = field
    						if count, ok := matchedFieldCount[column]; ok {
    							// handle duplicate fields
    							for _, selectField := range sch.Fields {
    								if selectField.DBName == column && selectField.Readable {
    									if count == 0 {
    										matchedFieldCount[column]++
    										fields[idx] = selectField
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. pkg/kubelet/container/runtime.go

    	Status bool
    	// Reason is brief reason for the condition's last transition.
    	Reason string
    	// Message is human readable message indicating details about last transition.
    	Message string
    }
    
    // String formats the runtime condition into human readable string.
    func (c *RuntimeCondition) String() string {
    	return fmt.Sprintf("%s=%t reason:%s message:%s", c.Type, c.Status, c.Reason, c.Message)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  8. schema/schema.go

    		if field.DBName != "" {
    			// nonexistence or shortest path or first appear prioritized if has permission
    			if v, ok := schema.FieldsByDBName[field.DBName]; !ok || ((field.Creatable || field.Updatable || field.Readable) && len(field.BindNames) < len(v.BindNames)) {
    				if _, ok := schema.FieldsByDBName[field.DBName]; !ok {
    					schema.DBNames = append(schema.DBNames, field.DBName)
    				}
    				schema.FieldsByDBName[field.DBName] = field
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

            loggingManager.setLevelInternal(LogLevel.DEBUG);
    
            loggingManager.start();
        }
    
        /**
         * Set the permissions for the daemon log to be only readable/writable by the current user.
         */
        private void reducePermissionsOnDaemonLog(File daemonLog) {
            //noinspection ResultOfMethodCallIgnored
            daemonLog.setReadable(false, false);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/util/util.go

    	return hcm.HttpConnectionManager_ForwardClientCertDetails(c - 1)
    }
    
    // ByteCount returns a human readable byte format
    // Inspired by https://yourbasic.org/golang/formatting-byte-size-to-human-readable-format/
    func ByteCount(b int) string {
    	const unit = 1000
    	if b < unit {
    		return fmt.Sprintf("%dB", b)
    	}
    	div, exp := int64(unit), 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top