Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,415 for other2 (0.4 sec)

  1. src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java

                return sb.toString();
            }
    
            @Override
            public boolean equals(final Object other) {
                if (other == null || !(other instanceof MyToken)) {
                    return false;
                }
                final MyToken o = (MyToken) other;
                if (!word.equals(o.word)) {
                    return false;
                }
                if (startOffset != o.startOffset) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/CompositeBuildTaskExecutionCrossVersionSpec.groovy

            settingsFile << "includeBuild('other-build')"
            file('other-build/settings.gradle') << "rootProject.name = 'other-build'"
            file('other-build/build.gradle') << """
                tasks.register('doSomething') {
                    doLast {
                        println 'do something'
                    }
                }
            """
    
            when:
            executeTaskViaTAPI(":other-build:doSomething")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    Sorting is done based on the following rules:
    
    . the installation currently running Gradle is preferred over any other
    . JDK installations are preferred over JRE ones
    . certain vendors take precedence over others; their ordering (from the highest priority to lowest):
    .. ADOPTIUM
    .. ADOPTOPENJDK
    .. AMAZON
    .. APPLE
    .. AZUL
    .. BELLSOFT
    .. GRAAL_VM
    .. HEWLETT_PACKARD
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildTaskExecutionIntegrationTest.groovy

                    }
                }
            """
    
            succeeds(":other-build:doSomething", "--content", "do something")
        }
    
        def "can list tasks from included build"() {
            setup:
            settingsFile << "includeBuild('other-build')"
            file('other-build/settings.gradle') << "rootProject.name = 'other-build'"
            file('other-build/build.gradle') << """
                tasks.register('doSomething') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  5. licenses/github.com/hashicorp/go-version/LICENSE

            1.1 or earlier of the License, but not also under the terms of a
            Secondary License.
    
    1.6. “Executable Form”
    
         means any form of the work other than Source Code Form.
    
    1.7. “Larger Work”
    
         means a work that combines Covered Software with other material, in a separate
         file or files, that is not Covered Software.
    
    1.8. “License”
    
         means this document.
    
    1.9. “Licensable”
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/test/groovy/org/gradle/internal/vfs/impl/DefaultSnapshotHierarchyTest.groovy

                .store(firstPath, directorySnapshotForPath(firstPath), diffListener)
                .store(secondPath, directorySnapshotForPath(secondPath), diffListener)
                .store("/other/just-checking", directorySnapshotForPath("/other/just-checking"), diffListener)
    
            expect:
            set.findSnapshot(firstPath).present
            set.findSnapshot(secondPath).present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  7. src/debug/pe/file.go

    				return nil, err
    			}
    			if err := r.Close(); err != nil {
    				return nil, err
    			}
    			b = dbuf
    		}
    		return b, nil
    	}
    
    	// There are many other DWARF sections, but these
    	// are the ones the debug/dwarf package uses.
    	// Don't bother loading others.
    	var dat = map[string][]byte{"abbrev": nil, "info": nil, "str": nil, "line": nil, "ranges": nil}
    	for _, s := range f.Sections {
    		suffix := dwarfSuffix(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/ContiguousSet.java

      /**
       * Returns the set of values that are contained in both this set and the other.
       *
       * <p>This method should always be used instead of {@link Sets#intersection} for {@link
       * ContiguousSet} instances.
       */
      public abstract ContiguousSet<C> intersection(ContiguousSet<C> other);
    
      /**
       * Returns a range, closed on both ends, whose endpoints are the minimum and maximum values
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Nov 30 21:54:06 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/JavaProjectOutgoingVariantsIntegrationTest.groovy

            then:
            result.assertTasksExecuted(":other-java:compileJava", ":other-java:processResources", ":other-java:classes", ":other-java:jar", ":java:compileJava", ":java:processResources", ":java:classes", ":java:jar", ":consumer:resolve")
            assertResolveOutput("""
                files: [java.jar, file-dep.jar, other-java.jar, implementation-1.0.jar, runtime-only-1.0.jar]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/consistency/ProjectLocalDependencyResolutionConsistencyIntegrationTest.groovy

            repository {
                'org:foo:1.1'()
            }
    
            buildFile << """
                configurations {
                    other
                    conf.shouldResolveConsistentlyWith(other)
                }
    
                dependencies {
                    conf 'org:foo:1.0'
                    other 'org:foo:1.1'
                }
            """
    
            when:
            repositoryInteractions {
                'org:foo:1.1' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
Back to top