Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,405 for reachable (0.13 sec)

  1. src/net/fd_windows.go

    		isloopback = ra.Addr == [16]byte(IPv6loopback)
    	default:
    		panic("unexpected type in connect")
    	}
    	if isloopback {
    		// This makes ConnectEx() fails faster if the target port on the localhost
    		// is not reachable, instead of waiting for 2s.
    		params := windows.TCP_INITIAL_RTO_PARAMETERS{
    			Rtt:                   windows.TCP_INITIAL_RTO_UNSPECIFIED_RTT, // use the default or overridden by the Administrator
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 16:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/pcln.go

    	pcln.Pcfile = funcpctab(ctxt, cursym, "pctofile", pctofileline, pcln)
    	pcln.Pcline = funcpctab(ctxt, cursym, "pctoline", pctofileline, nil)
    
    	// Check that all the Progs used as inline markers are still reachable.
    	// See issue #40473.
    	fn := cursym.Func()
    	inlMarkProgs := make(map[*Prog]struct{}, len(fn.InlMarks))
    	for _, inlMark := range fn.InlMarks {
    		inlMarkProgs[inlMark.p] = struct{}{}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 20:45:15 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/codehost/git.go

    	}
    
    	// If we've reached this point, we have all of the commits that are reachable
    	// from all heads and tags.
    	//
    	// The only refs we should be missing are those that are no longer reachable
    	// (or never were reachable) from any branch or tag, including the master
    	// branch, and we don't want to resolve them anyway (they're probably
    	// unreachable for a reason).
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/components/KtFe10CompilerFacility.kt

                }
    
            val disableInline = effectiveConfiguration.getBoolean(CommonConfigurationKeys.DISABLE_INLINE)
    
            // The binding context needs to be built from all files with reachable inline functions, as such files may contain classes whose
            // descriptors must be available in the binding context for the IR backend. Note that the full bytecode is only generated for
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/graph/CachingDirectedGraphWalkerTest.groovy

            1 * graph.getNodeValues(3, _, _) >> { args -> args[1] << '3' }
            3 * graph.getEdgeValues(_, _, _)
            0 * _._
            values == ['1', '2', '3'] as Set
    
            // Cached node (1) is reachable via 2 separate new paths (4->5->1 and 4->6->1)
            when:
            walker.add(4)
            values = walker.findValues()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/FilteredConfigurationIntegrationTest.groovy

        }
    
        // Note: this captures existing behaviour (all files are built) rather than desired behaviour (only those files reachable from selected deps are built)
        def "can use filtered configuration as task input"() {
            createDirs("child1", "child2")
            settingsFile << """
    rootProject.name = "main"
    include "child1", "child2"
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/adapter/ProtocolToModelAdapterTest.groovy

            def model6 = converter.builder(TestModel.class).mixInTo(TestProject, "instance").build(protocolModel)
            model6.is(model5)
        }
    
        def "does not reuse views when some view reachable has different mix ins"() {
            TestProtocolModel protocolModel = Mock()
            TestProtocolProject protocolProject = Mock()
            _ * protocolModel.getProject() >> protocolProject
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  8. pilot/pkg/xds/xdsgen.go

    // Evaluate the controlPlane lazily in order to allow "POD_NAME" env var setting after running the process.
    var controlPlane = lazy.New(func() (*core.ControlPlane, error) {
    	// The Pod Name (instance identity) is in PilotArgs, but not reachable globally nor from DiscoveryServer
    	podName := env.Register("POD_NAME", "", "").Get()
    	byVersion, err := json.Marshal(IstioControlPlaneInstance{
    		Component: "istiod",
    		ID:        podName,
    		Info:      istioversion.Info,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/go/cfg/cfg.go

    type Block struct {
    	Nodes []ast.Node // statements, expressions, and ValueSpecs
    	Succs []*Block   // successor nodes in the graph
    	Index int32      // index within CFG.Blocks
    	Live  bool       // block is reachable from entry
    	Kind  BlockKind  // block kind
    	Stmt  ast.Stmt   // statement that gave rise to this block (see BlockKind for details)
    
    	succs2 [2]*Block // underlying array for Succs
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/labels.go

    	// If there are any forward jumps left, no label was found for
    	// the corresponding goto statements. Either those labels were
    	// never defined, or they are inside blocks and not reachable
    	// for the respective gotos.
    	for _, jmp := range fwdJumps {
    		var msg string
    		var code Code
    		name := jmp.Label.Value
    		if alt := all.Lookup(name); alt != nil {
    			msg = "goto %s jumps into block"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top