Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 554 for reachable (0.27 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java

         * project directory.
         *
         * @return The model resolver or {@code null} if not set.
         */
        ModelResolver getModelResolver();
    
        /**
         * Sets the model resolver to use for resolution of mixins or parents that are not locally reachable from the
         * project directory.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. pkg/test/framework/components/echo/deployment/builder.go

    //  2. Can call every other Instance in the group (i.e. have received Envoy config
    //     from Pilot).
    //
    // If a test needs to verify that one Instance is NOT reachable from another, there are
    // a couple of options:
    //
    //  1. Build a group while all Instances ARE reachable. Then apply a policy
    //     disallowing the communication.
    //  2. Build the source and destination Instances in separate groups and then
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. src/runtime/mbarrier.go

    // but for tracing running on another processor to observe the pointer
    // but use the old value of arena_used. In this case, tracing will not
    // mark the object, even though it's reachable. However, the mutator
    // is guaranteed to execute a write barrier when it publishes the
    // pointer, so it will take care of marking the object. A general
    // consequence of this is that the garbage collector may cache the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    // of type information in the compiler: during compilation of package P,
    // the compiler emits an export data file that describes the type of
    // every object (named thing) defined in package P, plus every object
    // indirectly reachable from one of those objects. Thus the downstream
    // compiler of package Q need only load one export data file per direct
    // import of Q, and it will learn everything about the API of package P
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/cmd/link/internal/riscv64/asm.go

    		// Relocation symbol has an address and is directly reachable,
    		// therefore there is no need for a trampoline.
    		if ldr.SymValue(rs) != 0 && off >= -(1<<20) && off < (1<<20) && (*ld.FlagDebugTramp <= 1 || ldr.SymPkg(s) == ldr.SymPkg(rs)) {
    			break
    		}
    
    		// Relocation symbol is too far for a direct call or has not
    		// yet been given an address. See if an existing trampoline is
    		// reachable and if so, reuse it. Otherwise we need to create
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 01 08:06:08 UTC 2024
    - 22.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerExecutorIntegrationTest.groovy

                        def reachableClasses = gradleApiClasses.findAll { reachable(it) }
                        if (!reachableClasses.empty) {
                            throw new IllegalArgumentException("These classes should not be visible to the worker action: " + reachableClasses)
                        }
                    }
    
                    boolean reachable(String classname) {
                        try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 31K bytes
    - Viewed (0)
Back to top