Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 101 for ind2 (0.34 sec)

  1. fess-crawler-es/src/test/java/org/codelibs/fess/crawler/service/impl/EsDataServiceTest.java

            accessResult2.setSessionId("id2");
            accessResult2.setStatus(200);
            accessResult2.setUrl("http://www.id2.com/");
    
            dataService.store(accessResult2);
    
            final EsAccessResult accessResult3 = dataService.getAccessResult("id1", "http://www.id1.com/");
            final EsAccessResult accessResult4 = dataService.getAccessResult("id2", "http://www.id2.com/");
            assertNotNull(accessResult3);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-groovy/src/integTest/resources/org/gradle/groovy/compile/InvokeDynamicGroovyCompilerSpec/canEnableAndDisableInvokeDynamicOptimization/build.gradle

        destinationDirectory = file("$buildDir/classes/optimized")
        groovyOptions.optimizationOptions.indy = true
    }
    
    task compileWithoutOptimization(type: GroovyCompile) {
        source = sourceSets.main.groovy
        classpath = configurations.compileClasspath
        destinationDirectory = file("$buildDir/classes/unoptimized")
        groovyOptions.optimizationOptions.indy = false
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/remote/internal/hub/queue/MultiChannelQueueTest.groovy

            def id2 = new ChannelIdentifier("channel2")
    
            expect:
            def channelQueue = queue.getChannel(id1)
            channelQueue == queue.getChannel(id1)
            channelQueue != queue.getChannel(id2)
        }
    
        def "adds channel queue when channel message added"() {
            def id1 = new ChannelIdentifier("channel1")
            def id2 = new ChannelIdentifier("channel2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-operations/src/test/groovy/org/gradle/internal/operations/DefaultBuildOperationListenerManagerTest.groovy

                start("2", id1),
                start("3", id1),
                start("1", id2),
                start("2", id2),
                start("3", id2),
                finished("3", id1),
                finished("2", id1),
                finished("1", id1),
                finished("3", id2),
                finished("2", id2),
                finished("1", id2),
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/internal/plugins/GroovyJarFile.java

    import static org.gradle.util.internal.GroovyDependencyUtil.groovyModuleDependency;
    
    public class GroovyJarFile {
        private static final Pattern FILE_NAME_PATTERN = Pattern.compile("(groovy(?:-all)?)-(\\d.*?)(-indy)?.jar");
    
        private final File file;
        private final Matcher matcher;
    
        private GroovyJarFile(File file, Matcher matcher) {
            this.file = file;
            this.matcher = matcher;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 19:14:26 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r55/ReservedProjectNamesCrossVersionSpec.groovy

                externalProject("includedBuild1-b"),
                project("includedBuild2", inc2), project("includedBuild2-a", inc2.file("a")), project("includedBuild2-includedBuild2-b", inc2.file("b")), project("includedBuild2-c", inc2.file("c")),
                externalProject("includedBuild2-b"),
            ])
    
            when:
            def eclipseModels = withConnection { con ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/scope.go

    // n == 0 for no indentation.
    // If recurse is set, it also writes nested (children) scopes.
    func (s *Scope) WriteTo(w io.Writer, n int, recurse bool) {
    	const ind = ".  "
    	indn := strings.Repeat(ind, n)
    
    	fmt.Fprintf(w, "%s%s scope %p {\n", indn, s.comment, s)
    
    	indn1 := indn + ind
    	for _, name := range s.Names() {
    		fmt.Fprintf(w, "%s%s\n", indn1, s.Lookup(name))
    	}
    
    	if recurse {
    		for _, s := range s.children {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/go/types/scope.go

    // n == 0 for no indentation.
    // If recurse is set, it also writes nested (children) scopes.
    func (s *Scope) WriteTo(w io.Writer, n int, recurse bool) {
    	const ind = ".  "
    	indn := strings.Repeat(ind, n)
    
    	fmt.Fprintf(w, "%s%s scope %p {\n", indn, s.comment, s)
    
    	indn1 := indn + ind
    	for _, name := range s.Names() {
    		fmt.Fprintf(w, "%s%s\n", indn1, s.Lookup(name))
    	}
    
    	if recurse {
    		for _, s := range s.children {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-groovy/src/test/groovy/org/gradle/api/tasks/GroovyRuntimeTest.groovy

            "2.1.2"              | ""         | "org.codehaus.groovy" | ["groovy", "groovy-ant"]
            "2.1.2"              | "-indy"    | "org.codehaus.groovy" | ["groovy", "groovy-ant"]
            "2.5.2"              | ""         | "org.codehaus.groovy" | ["groovy", "groovy-ant", "groovy-templates"]
            "2.5.2"              | "-indy"    | "org.codehaus.groovy" | ["groovy", "groovy-ant", "groovy-templates"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  10. operator/pkg/util/reflect_test.go

    	type EnumType int64
    
    	tests := []struct {
    		inDesc string
    		inV1   any
    		inV2   any
    		want   bool
    	}{
    		{
    			inDesc: "success both are int32 types",
    			inV1:   int32(42),
    			inV2:   int32(43),
    			want:   true,
    		},
    		{
    			inDesc: "fail unmatching int types",
    			inV1:   int16(42),
    			inV2:   int32(43),
    			want:   false,
    		},
    		{
    			inDesc: "fail unmatching int and string type",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 10.2K bytes
    - Viewed (0)
Back to top