Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for Reachable (0.18 sec)

  1. src/runtime/mgc.go

    // escapes its callback closure, so it can't capture anything.
    //
    // This is protected by markDoneSema.
    var gcMarkDoneFlushed uint32
    
    // gcMarkDone transitions the GC from mark to mark termination if all
    // reachable objects have been marked (that is, there are no grey
    // objects and can be no more in the future). Otherwise, it flushes
    // all local work to the global queues where it can be discovered by
    // other workers.
    //
    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

    	// visit the comments on these methods for more details on the
    	// semantics / interpretation of the specific flags or attribute.
    	attrReachable        Bitmap // reachable symbols, indexed by global index
    	attrOnList           Bitmap // "on list" symbols, indexed by global index
    	attrLocal            Bitmap // "local" symbols, indexed by global index
    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

    	if !addspecial(p, &s.special) {
    		throw("setprofilebucket: profile already set")
    	}
    }
    
    // specialReachable tracks whether an object is reachable on the next
    // GC cycle. This is used by testing.
    type specialReachable struct {
    	special   special
    	done      bool
    	reachable bool
    }
    
    // specialPinCounter tracks whether an object is pinned multiple times.
    type specialPinCounter struct {
    	special special
    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