Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,133 for rfind (0.05 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionFailure.java

            }
    
            matcher = LOCATION_PATTERN.matcher(failureText);
            while (matcher.find()) {
                fileNames.add(matcher.group(1).trim());
                lineNumbers.add(matcher.group(3));
            }
    
            matcher = DESCRIPTION_PATTERN.matcher(failureText);
            while (matcher.find()) {
                String problemStr = matcher.group(1);
                Problem problem = extract(problemStr);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 09:21:25 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/DefaultModelRegistry.java

            return find(ModelPath.path(path), type);
        }
    
        @Override
        public <T> T find(ModelPath path, ModelType<T> type) {
            return toType(type, get(path), "find(ModelPath, ModelType)");
        }
    
        private <T> T toType(ModelType<T> type, ModelNodeInternal node, String msg) {
            if (node == null) {
                return null;
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 45.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformExecutionBuildOperationIntegrationTest.groovy

            executionIdentifications.size() == 2
            def projectTransformIdentification = executionIdentifications.find { it.artifactName == 'producer.jar' }
            def externalTransformIdentification = executionIdentifications.find { it.artifactName == 'test-4.2.jar' }
    
            [projectTransformIdentification, externalTransformIdentification].each {
                with(it) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/CachedMissingModulesIntegrationTest.groovy

            failure.assertHasCause("""Could not find group:projectA:1.0.
    Searched in the following locations:
      - ${repo1Module.pom.uri}
      - ${repo2Module.pom.uri}
    Required by:
    """)
    
            when:
            repo1Module.pom.expectGetMissing()
            repo2Module.pom.expectGetMissing()
    
            then:
            fails 'retrieve'
    
            failure.assertHasCause("""Could not find group:projectA:1.0.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  5. tensorflow/cc/framework/gradients.cc

        }
      }
      return absl::OkStatus();
    }
    
    Status SymbolicGradientBuilder::SumGradients(const Output& src, Output* grad) {
      auto iter = backprops_.find(src);
      if (iter == backprops_.end()) {
        return errors::Internal("Unable to find backprop list for node.id ",
                                src.node()->name());
      }
      const auto& grads = iter->second;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/extract_outside_compilation_pass_test.cc

          host_compute_core, &fld, &shape_inference_graphs,
          &has_outside_compilation));
    
      // Get rewritten XLA computation function.
      std::unique_ptr<FunctionBody> xla_fbody;
      TF_CHECK_OK(FunctionDefToBodyHelper(*fld.Find("cluster_rewritten"),
                                          AttrSlice(), &fld, &xla_fbody));
      auto node_name_index = xla_fbody->graph->BuildNodeNameIndex();
    
      // Check XlaHostCompute nodes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 41K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/integTest/groovy/org/gradle/language/AbstractNativePreCompiledHeaderIntegrationTest.groovy

            def alternateSumFile = addFunction(sumSourceFile)
            replaceInSourceFile(toOtherSourceSet(alternateSumFile), 'include "common.h"', 'include "common2.h"').writeToDir(file("src/hello"))
        }
    
        def librarySourceModified(String lib="hello", String path="") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  8. src/runtime/mpallocbits.go

    		}
    	}
    	return packPallocSum(start, most, cur)
    }
    
    // find searches for npages contiguous free pages in pallocBits and returns
    // the index where that run starts, as well as the index of the first free page
    // it found in the search. searchIdx represents the first known free page and
    // where to begin the next search from.
    //
    // If find fails to find any free space, it returns an index of ^uint(0) and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/executer/OutputScrapingExecutionResultTest.groovy

            expect:
            matches.size() == 6
            matches[0] == '\tat org.gradle.groovy.scripts.internal.DefaultScriptRunnerFactory$ScriptRunnerImpl.run(DefaultScriptRunnerFactory.java:93)'
        }
    
        def "does not find things that might look like stack traces"() {
            def output = """
    * What went wrong:
    A problem occurred evaluating root project '4j0h2'.
    > Could not create an instance of type Thing.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

    using Source = PointerUnion<Operation *, BlockArgument *>;
    
    // We use union-find algorithm to build clusters of connected operations based
    // on the user provided policy. If an operation can be clustered (one of the
    // user provided policies accepts it under given constraints), it will become
    // a "member" that will participate in the union-find cluster construction.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top