Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 864 for palmer (0.15 sec)

  1. platforms/core-execution/build-cache/src/test/groovy/org/gradle/caching/internal/controller/DefaultBuildCacheControllerPackOperationExecutorTest.groovy

        def packer = Mock(BuildCacheEntryPacker)
        def originFactory = Mock(OriginMetadataFactory)
        def stringInterner = new StringInterner()
        def buildOperationContext = Mock(BuildOperationContext)
        def buildOperationRunner = Mock(BuildOperationRunner)
        PackOperationExecutor packOperationExecutor = new PackOperationExecutor(buildOperationRunner, packer, originFactory, stringInterner)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReader.java

    import static org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.PomDomParser.AddDTDFilterInputStream;
    import static org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.PomDomParser.getAllChilds;
    import static org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.PomDomParser.getFirstChildElement;
    import static org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.PomDomParser.getFirstChildText;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:53:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/internal/classpath/CompositeCallInterceptionTest.groovy

            "vararg"        | "Groovy dynamic dispatch" | { testVararg(it, it, it) }    | true           | "testVararg(Object...)"
        }
    
        def 'access to a #kind of a Groovy property from a #caller caller is intercepted as #expected for multiple types with the same method names'() {
            when:
            def firstIntercepted = interceptedInterceptorTestReceiver(shouldDelegate, invocation)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 11:38:52 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

                    maybeApplyInterceptor(ccs, caller, flags, interceptors.get(InterceptScope.readsOfPropertiesNamed(name)));
                    break;
                case "init":
                    maybeApplyInterceptor(ccs, caller, flags, dispatchingConstructorInterceptor);
                    break;
            }
            return ccs;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/init_mlir.cc

    TensorFlow and LLVM:
      * Flags before the first '--' are parsed by tensorflow::InitMain while those
        post are parsed by LLVM's command line parser.
      * If there is no separator, then no flags are parsed by InitMain and only
        LLVM command line parser used.e
    The above help options reported are for LLVM's parser, run with `--help --` for
    TensorFlow's help.
    )");
    
    namespace tensorflow {
    
    InitMlir::InitMlir(int *argc, char ***argv) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 10:03:56 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. src/index/suffixarray/sais2.go

    		// If k-1 is L-type, queue k for processing later in this loop.
    		// If k-1 is S-type (text[k-1] < text[k]), queue -k to save for the caller.
    		// If k is zero, k-1 doesn't exist, so we only need to leave it
    		// for the caller. The caller can't tell the difference between
    		// an empty slot and a non-empty zero, but there's no need
    		// to distinguish them anyway: the final suffix array will end up
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. src/go/ast/example_test.go

    func main() {
    	fmt.Println(hello) // line comment 3
    }
    `
    
    	// Create the AST by parsing src.
    	fset := token.NewFileSet() // positions are relative to fset
    	f, err := parser.ParseFile(fset, "src.go", src, parser.ParseComments)
    	if err != nil {
    		panic(err)
    	}
    
    	// Create an ast.CommentMap from the ast.File's comments.
    	// This helps keeping the association between comments
    	// and AST nodes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:44:50 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/decompose_optionals.cc

        if (!symbol_uses.has_value()) {
          return failure();
        }
        for (auto use : *symbol_uses) {
          Operation* caller = use.getUser();
          bool changed = false;
          rewriter.startOpModification(caller);
          for (auto [result, type] :
               llvm::zip(caller->getResults(), return_types)) {
            if (result.getType() != type) {
              result.setType(type);
              changed = true;
            }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/go/ast/walk_test.go

    // Copyright 2024 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package ast_test
    
    import (
    	"go/ast"
    	"go/parser"
    	"go/token"
    	"testing"
    )
    
    func TestPreorderBreak(t *testing.T) {
    	// This test checks that Preorder correctly handles a break statement while
    	// in the middle of walking a node. Previously, incorrect handling of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:34:10 UTC 2024
    - 916 bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/converter/BuildOptionBackedConverter.java

        public BuildOptionBackedConverter(BuildOptionSet<T> buildOptions) {
            this.buildOptions = buildOptions;
        }
    
        public void configure(CommandLineParser parser) {
            buildOptions.commandLineConverter().configure(parser);
        }
    
        public void convert(ParsedCommandLine commandLine, Map<String, String> properties, T target) {
            buildOptions.propertiesConverter().convert(properties, target);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 11:25:33 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top