Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for reachable (3.14 sec)

  1. src/runtime/mgc.go

    	for i, s := range specials {
    		if !s.done {
    			printlock()
    			println("runtime: object", i, "was not swept")
    			throw("IsReachable failed")
    		}
    		if s.reachable {
    			mask |= 1 << i
    		}
    		lock(&mheap_.speciallock)
    		mheap_.specialReachableAlloc.free(unsafe.Pointer(s))
    		unlock(&mheap_.speciallock)
    	}
    
    	return mask
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. src/runtime/mgcmark.go

    		state.head = x.next
    		if stackTraceDebug {
    			for i := 0; i < x.nobj; i++ {
    				obj := &x.obj[i]
    				if obj.r == nil { // reachable
    					continue
    				}
    				println("  dead stkobj at", hex(gp.stack.lo+uintptr(obj.off)), "of size", obj.r.size)
    				// Note: not necessarily really dead - only reachable-from-ptr dead.
    			}
    		}
    		x.nobj = 0
    		putempty((*workbuf)(unsafe.Pointer(x)))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. src/cmd/link/internal/loader/loader.go

    	if v {
    		l.attrUsedInIface.Set(i)
    	} else {
    		l.attrUsedInIface.Unset(i)
    	}
    }
    
    // SymAddr checks that a symbol is reachable, and returns its value.
    func (l *Loader) SymAddr(i Sym) int64 {
    	if !l.AttrReachable(i) {
    		panic("unreachable symbol in symaddr")
    	}
    	return l.values[i]
    }
    
    // AttrNotInSymbolTable returns true for symbols that should not be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/decompose_resource_ops.mlir

        tf_device.return
      }) : () -> ()
      func.return
    }
    
    // Test the behavior of passes on ops in reachable/unreachable functions from
    // cluster.
    // tf-device-decompose-resource-ops would always decompose the resource op.
    // tf-device-decompose-resource-ops-in-cluster would decompose ops in reachable
    // function but not in unreachable function.
    
    
    // CHECK-LABEL: func @decomposition_in_referenced_functions
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  5. src/runtime/mheap.go

    //   - Weak handles are unique and canonical for each byte offset into
    //     an object that a strong pointer may point to, until an object
    //     becomes unreachable.
    //
    //   - Weak handles contain nil as soon as an object becomes unreachable
    //     the first time, before a finalizer makes it reachable again. New
    //     weak handles created after resurrection are newly unique.
    //
    // specialWeakHandle is allocated from non-GC'd memory, so any heap
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  6. src/runtime/mbitmap.go

    // made reachable, readers will ignore bits being modified by this
    // function. This does mean this function cannot transiently modify
    // shared memory that belongs to neighboring objects. Also, on weakly-ordered
    // machines, callers must execute a store/store (publication) barrier
    // between calling this function and making the object reachable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context.go

    // serviceIndex is an index of all services by various fields for easy access during push.
    type serviceIndex struct {
    	// privateByNamespace are services that can reachable within the same namespace, with exportTo "."
    	privateByNamespace map[string][]*Service
    	// public are services reachable within the mesh with exportTo "*"
    	public []*Service
    	// exportedToNamespace are services that were made visible to this namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		})
    	}
    }
    
    // monitorNodeHealth verifies node health are constantly updated by kubelet, and if not, post "NodeReady==ConditionUnknown".
    // This function will
    //   - add nodes which are not ready or not reachable for a long period of time to a rate-limited
    //     queue so that NoExecute taints can be added by the goroutine running the doNoExecuteTaintingPass function,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  9. src/go/types/expr.go

    			}
    		case UntypedString:
    			// Non-constant untyped string values are not permitted by the spec and
    			// should not occur during normal typechecking passes, but this path is
    			// reachable via the AssignableTo API.
    			if !isString(target) {
    				return nil, nil, InvalidUntypedConversion
    			}
    		case UntypedNil:
    			// Unsafe.Pointer is a basic type that includes nil.
    			if !hasNil(target) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/expr.go

    			}
    		case UntypedString:
    			// Non-constant untyped string values are not permitted by the spec and
    			// should not occur during normal typechecking passes, but this path is
    			// reachable via the AssignableTo API.
    			if !isString(target) {
    				return nil, nil, InvalidUntypedConversion
    			}
    		default:
    			return nil, nil, InvalidUntypedConversion
    		}
    	case *Interface:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
Back to top