Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 143 for reachable (0.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. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithDependenciesIntegrationTest.groovy

                        attributes.attribute(color, 'green')
                        // To trigger the problem: exclude the local library from the result, so that only the execution node edges that are reachable via the external dependency are included in the graph
                        componentFilter { it instanceof ModuleComponentIdentifier }
                    }.artifacts
    
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 54.2K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            assertTaskReadyAndNoMoreToStart(finalizerD)
            assertAllWorkComplete()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/21000")
        def "finalizer dependencies reachable from entry task and finalized by the finalizer can run in parallel"() {
            TaskInternal finalizer = createTask("finalizer", project, Async)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf.go

    	// the -strictdups checks fail.
    	if checkStrictDups > 1 && len(flagVariants) > 1 {
    		checkStrictDups = 1
    	}
    
    	// Make a pass through all data symbols, looking for those
    	// corresponding to reachable, Go-generated, user-visible
    	// global variables. For each global of this sort, locate
    	// the corresponding compiler-generated DIE symbol and tack
    	// it onto the list associated with the unit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. 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)
Back to top