Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of about 10,000 for Bind (0.09 sec)

  1. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/integtests/GroovyToJavaConversionIntegrationTest.groovy

     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    /*
     * Copyright 2016 the original author or authors.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/JdkPattern.java

        }
    
        @Override
        public boolean matches() {
          return matcher.matches();
        }
    
        @Override
        public boolean find() {
          return matcher.find();
        }
    
        @Override
        public boolean find(int index) {
          return matcher.find(index);
        }
    
        @Override
        public String replaceAll(String replacement) {
          return matcher.replaceAll(replacement);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r68/ToolingApiEclipseProjectDependenciesCrossVersionSpec.groovy

                }
            """
    
            when:
            EclipseProject project = loadToolingModel(EclipseProject).children.find { it.gradleProject.path == ':b' }
    
            then:
            project.projectDependencies.size() == 1
            project.projectDependencies[0].classpathAttributes.find { it.name == 'without_test_code' }.value == "true"
        }
    
        def "project dependency pointing to test fixture project exposes test sources"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r212/ToolingApiIdeaModelCrossVersionSpec.groovy

            ideaProject.modules.find { it.name == 'root' }.javaLanguageSettings == null
            ideaProject.modules.find { it.name == 'child1' }.javaLanguageSettings == null
            ideaProject.modules.find { it.name == 'child2' }.javaLanguageSettings.languageLevel == JavaVersion.VERSION_1_2
            ideaProject.modules.find { it.name == 'child3' }.javaLanguageSettings.languageLevel == JavaVersion.VERSION_1_5
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/JdkPattern.java

        }
    
        @Override
        public boolean matches() {
          return matcher.matches();
        }
    
        @Override
        public boolean find() {
          return matcher.find();
        }
    
        @Override
        public boolean find(int index) {
          return matcher.find(index);
        }
    
        @Override
        public String replaceAll(String replacement) {
          return matcher.replaceAll(replacement);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelClasspathAttributesCrossVersionSpec.groovy

                               classpath.entries.find { it.path == 'containerPath' }.entryAttributes.customKey = 'customValue'
                           }
                       }
                   }
               }
            """
    
            when:
            EclipseProject project = loadToolingModel(EclipseProject)
            def container = project.classpathContainers.find { it.path == 'containerPath' }
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r28/ToolingApiEclipseModelCrossVersionSpec.groovy

            EclipseProject rootProject = loadToolingModel(EclipseProject)
            EclipseProject rootImplProject = rootProject.children.find { it.name == 'root-impl' }
            EclipseProject contribProject = rootProject.children.find { it.name == 'contrib' }
            EclipseProject contribImplProject = contribProject.children.find { it.name == 'contrib-impl' }
    
            then:
            contribImplProject.projectDependencies.any { it.path == 'contrib-api' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. tensorflow/cc/saved_model/loader_util.cc

          meta_graph_def.signature_def().find(kSavedModelInitOpSignatureKey);
      if (init_op_sig_it != sig_def_map.end()) {
        const auto& sig_def_outputs = init_op_sig_it->second.outputs();
        const auto& sig_def_outputs_it =
            sig_def_outputs.find(kSavedModelInitOpSignatureKey);
        if (sig_def_outputs_it == sig_def_outputs.end()) {
          return errors::FailedPrecondition("Could not find output ",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 10 10:25:28 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/GradleVsMavenBuildPerformanceResults.groovy

        void assertFasterThanMaven() {
            builds.groupBy { it.displayName - 'Gradle ' - 'Maven ' }.each { scenario, infos ->
                def gradle = buildResults[infos.find { it.displayName.startsWith 'Gradle ' }]
                def maven = buildResults[infos.find { it.displayName.startsWith 'Maven ' }]
                def baselineVersion = new BaselineVersion("Maven")
                baselineVersion.results.addAll(maven)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r60/TestOutputCrossVersionSpec.groovy

            def events = getOutputEvents()
    
            then:
            events.find { TestOutputEvent event -> event.descriptor.message == "out1" && event.descriptor.destination == Destination.StdOut }
            events.find { TestOutputEvent event -> event.descriptor.message == "err1" && event.descriptor.destination == Destination.StdErr }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top