Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 242 for reachable (0.21 sec)

  1. 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)
  2. src/internal/coverage/cfile/emit.go

    	ml := rtcov.Meta.List
    
    	// In the normal case (go build -o prog.exe ... ; ./prog.exe)
    	// len(ml) will always be non-zero, but we check here since at
    	// some point this function will be reachable via user-callable
    	// APIs (for example, to write out coverage data from a server
    	// program that doesn't ever call os.Exit).
    	if len(ml) == 0 {
    		return nil, nil
    	}
    
    	s := &emitState{
    		metalist: ml,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. pilot/pkg/xds/endpoints/ep_filters_test.go

    			{Network: "network2", Address: "20.0.0.3"},
    		},
    
    		// network3 has no endpoints.
    
    		// network4 has a single endpoint, but not gateway so it will always
    		// be considered directly reachable.
    		{Cluster: "cluster4"}: {
    			{Network: "network4", Address: "40.0.0.1"},
    		},
    	}}
    	// apply common properties
    	for sk, shard := range shards.Shards {
    		for i, ep := range shard {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 01:17:58 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

          if (!callee) continue;
          if (funcs_for_cluster->second.count(callee)) return true;
        }
        return false;
      };
    
      // Populates skip set with functions reachable from TPUPartionedCall ops.
      const auto functions_to_skip =
          FindTPUPartitionedCallReachableFunctions(getOperation());
      for (func::FuncOp func_op : getOperation().getOps<func::FuncOp>()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. src/runtime/extern.go

    	never recycled.
    
    	gccheckmark: setting gccheckmark=1 enables verification of the
    	garbage collector's concurrent mark phase by performing a
    	second mark pass while the world is stopped.  If the second
    	pass finds a reachable object that was not found by concurrent
    	mark, the garbage collector will panic.
    
    	gcpacertrace: setting gcpacertrace=1 causes the garbage collector to
    	print information about the internal state of the concurrent pacer.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. 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)
  7. src/syscall/syscall_linux_test.go

    		n, err := syscall.Read(int(rd.Fd()), data)
    		if !(n == 0 && err == nil) {
    			t.Errorf("expected read to return 0, got %d, %s", n, err)
    		}
    
    		// Clean up rd and also ensure rd stays reachable so
    		// it doesn't get closed by GC.
    		rd.Close()
    		wg.Done()
    	}()
    	<-ready
    
    	// Loop here to give the goroutine more time to block in read.
    	// Generally this will trigger on the first iteration anyway.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. src/runtime/runtime2.go

    // a word that is completely ignored by the GC than to have one for which
    // only a few updates are ignored.
    //
    // Gs and Ps are always reachable via true pointers in the
    // allgs and allp lists or (during allocation before they reach those lists)
    // from stack variables.
    //
    // Ms are always reachable via true pointers either from allm or
    // freem. Unlike Gs and Ps we do free Ms, so it's important that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

            }
            if (targetType.isEnum()) {
                return adaptToEnum(targetType, sourceObject);
            }
    
            // Restrict the decorations to those required to decorate all views reachable from this type
            ViewDecoration decorationsForThisType = decoration.isNoOp() ? decoration : decoration.restrictTo(TYPE_INSPECTOR.getReachableTypes(targetType));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  10. src/go/types/issues_test.go

    )
    
    // go.dev/issue/46905: make sure template is not the first package qualified.
    var _ fmt.Stringer = 1 // ERRORx "cannot use 1.*as fmt\\.Stringer"
    
    // Packages should be fully qualified when there is ambiguity in reachable
    // packages. In this case both a (and for that matter html/template) import
    // text/template.
    func _() { a.G(template /* ERRORx "cannot use .*html/template.*Template" */ .Template{}) }
    `
    
    		tsrc = `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
Back to top