Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 110 for palmer (0.11 sec)

  1. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        private static boolean isTestPathElement(final String scope) {
            return true;
        }
    
        /**
         * Returns a filtered list of classpath elements. This method is invoked when the caller
         * requested that all dependencies are placed on the classpath, with no module-path element.
         *
         * @param scopeFilter a filter returning {@code true} for the artifact scopes to accept.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    // to avoid being preempted; the GC must not stop the goroutine
    // between the memmove and the execution of the barriers.
    // The caller is also responsible for cgo pointer checks if this
    // may be writing Go pointers into non-Go memory.
    //
    // Pointer data is not maintained for allocations containing
    // no pointers at all; any caller of bulkBarrierPreWrite must first
    // make sure the underlying allocation contains pointers, usually
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. src/runtime/mprof.go

    	}
    
    	b := (*bucket)(persistentalloc(size, 0, &memstats.buckhash_sys))
    	b.typ = typ
    	b.nstk = uintptr(nstk)
    	return b
    }
    
    // stk returns the slice in b holding the stack. The caller can asssume that the
    // backing array is immutable.
    func (b *bucket) stk() []uintptr {
    	stk := (*[maxProfStackDepth]uintptr)(add(unsafe.Pointer(b), unsafe.Sizeof(*b)))
    	if b.nstk > maxProfStackDepth {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. src/runtime/asm_amd64.s

    	RET
    
    flush:
    	// Save all general purpose registers since these could be
    	// clobbered by wbBufFlush and were not saved by the caller.
    	// It is possible for wbBufFlush to clobber other registers
    	// (e.g., SSE registers), but the compiler takes care of saving
    	// those in the caller if necessary. This strikes a balance
    	// with registers that are likely to be used.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

            dependency.selector == moduleId('group-two', 'artifact-two', 'version-two')
            hasDefaultDependencyArtifact(dependency)
    
            parser.typeName == 'POM'
            parser.toString() == 'gradle pom parser'
        }
    
        def "converts timestamp version to SNAPSHOT version"() {
            given:
            pomFile << """
    <project>
        <modelVersion>4.0.0</modelVersion>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  6. src/runtime/mgcmark.go

    	decnwait := atomic.Xadd(&work.nwait, -1)
    	if decnwait == work.nproc {
    		println("runtime: work.nwait =", decnwait, "work.nproc=", work.nproc)
    		throw("nwait > work.nprocs")
    	}
    
    	// gcDrainN requires the caller to be preemptible.
    	casGToWaitingForGC(gp, _Grunning, waitReasonGCAssistMarking)
    
    	// drain own cached work first in the hopes that it
    	// will be more cache friendly.
    	gcw := &getg().m.p.ptr().gcw
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. src/runtime/pprof/pprof_test.go

    // caller.
    func blockMutexDeep(t *testing.T, n int) {
    	if n > 1 {
    		blockMutexDeep(t, n-1)
    		return
    	}
    	var mu sync.Mutex
    	go func() {
    		mu.Lock()
    		mu.Lock()
    	}()
    	awaitBlockedGoroutine(t, "sync.Mutex.Lock", "blockMutexDeep", 1)
    	mu.Unlock()
    }
    
    // goroutineDeep blocks at stack depth n, including the caller until the test is
    // finished.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  8. gradle/verification-metadata.xml

             </artifact>
          </component>
          <component group="org.openmbee.junit" name="junit-xml-parser" version="1.0.0">
             <artifact name="junit-xml-parser-1.0.0.jar">
                <sha256 value="ef5da0d3135e27372039e8b0251b40b100c48b4f1308ab8cc43531b208620049" origin="Verified" reason="Artifact is not signed"/>
             </artifact>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            if (parsedExcludeRules == null) {
                NotationParser<Object, ExcludeRule> parser = ExcludeRuleNotationConverter.parser();
                parsedExcludeRules = new LinkedHashSet<>();
                for (Object excludeRule : excludeRules) {
                    parsedExcludeRules.add(parser.parseNotation(excludeRule));
                }
            }
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderProfileTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser
    
    import org.gradle.api.internal.artifacts.ImmutableModuleIdentifierFactory
    import org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.data.MavenDependencyKey
    import org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.data.PomProfile
    import org.gradle.internal.id.UUIDGenerator
    import spock.lang.Issue
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 79.4K bytes
    - Viewed (0)
Back to top