Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,696 for palmer (0.15 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/notations/DependencyMapNotationConverterTest.groovy

    class DependencyMapNotationConverterTest extends Specification {
    
        def parser = NotationParserBuilder.toType(ExternalModuleDependency).converter(new DependencyMapNotationConverter<DefaultExternalModuleDependency>(TestUtil.instantiatorFactory().decorateLenient(), DefaultExternalModuleDependency.class)).toComposite()
    
        def "with artifact"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/notations/ModuleIdentifierNotationConverterTest.groovy

            }
        }
        @Subject parser = NotationParserBuilder.toType(ModuleIdentifier).fromCharSequence(new ModuleIdentifierNotationConverter(moduleIdentifierFactory)).toComposite()
    
        def "parses module identifier notation"() {
            expect:
            parser.parseNotation("org.gradle:gradle-core") == newId("org.gradle", "gradle-core")
            parser.parseNotation(" foo:bar ") == newId("foo", "bar")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/labels/selector.go

    	case isSpecialSymbol(ch):
    		l.unread()
    		return l.scanSpecialSymbol()
    	default:
    		l.unread()
    		return l.scanIDOrKeyword()
    	}
    }
    
    // Parser data structure contains the label selector parser data structure
    type Parser struct {
    	l            *Lexer
    	scannedItems []ScannedItem
    	position     int
    	path         *field.Path
    }
    
    // ParserContext represents context during parsing:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 31.8K bytes
    - Viewed (0)
  4. platforms/core-runtime/wrapper-main/src/main/java/org/gradle/wrapper/GradleWrapperMain.java

            File propertiesFile = wrapperProperties(wrapperJar);
            File rootDir = rootDir(wrapperJar);
    
            CommandLineParser parser = new CommandLineParser();
            parser.allowUnknownOptions();
            parser.option(GRADLE_USER_HOME_OPTION, GRADLE_USER_HOME_DETAILED_OPTION).hasArgument();
            parser.option(GRADLE_QUIET_OPTION, GRADLE_QUIET_DETAILED_OPTION);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. src/cmd/gofmt/rewrite.go

    // Copyright 2009 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 main
    
    import (
    	"fmt"
    	"go/ast"
    	"go/parser"
    	"go/token"
    	"os"
    	"reflect"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    )
    
    func initRewrite() {
    	if *rewriteRule == "" {
    		rewrite = nil // disable any previous rewrite
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:07:13 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/execution/TaskNameResolvingBuildTaskSchedulerSpec.groovy

        ExecutionPlan executionPlan
        CommandLineTaskParser parser
        EntryTaskSelector selector
        TaskNameResolvingBuildTaskScheduler action
    
        def setup() {
            gradle = Mock(GradleInternal)
            executionPlan = Mock(ExecutionPlan)
            parser = Mock(CommandLineTaskParser)
            selector = Mock(EntryTaskSelector)
            action = new TaskNameResolvingBuildTaskScheduler(parser, Stub(BuildTaskSelector.BuildSpecificSelector))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  7. platforms/software/resources-http/src/test/groovy/org/gradle/internal/resource/transport/http/ApacheDirectoryListingParserTest.groovy

        private URI baseUrl = URI.create("http://testrepo/")
        private ApacheDirectoryListingParser parser = new ApacheDirectoryListingParser();
    
        def "parse returns empty List if no link can be found"() {
            expect:
            List urls = parser.parse(baseUrl, new ByteArrayInputStream("<html>no link here</html>".bytes), CONTENT_TYPE)
            assertNotNull(urls)
            urls.isEmpty()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/DefaultCommandLineActionFactoryTest.groovy

            def rawAction = Mock(Action<? super ExecutionListener>)
    
            when:
            def commandLineExecution = factory.convert(["--some-option"])
            commandLineExecution.execute(executionListener)
    
            then:
            1 * actionFactory1.configureCommandLineParser(!null) >> {
                CommandLineParser parser -> parser.option("some-option")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_device.cc

        if (parser->parseOptionalOperand(operand_type).has_value()) {
          packed_inputs->emplace_back(operand_type);
          if (parser->parseKeyword("as",
                                   " between packed input and block argument") ||
              parser->parseOperand(packed_region_args.emplace_back(),
                                   /*allowResultNumber=*/false) ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/GoogleTestTestResults.groovy

            this.testResultsFile = testResultsFile
            final XmlParser parser = new XmlParser(false, false)
            parser.setFeature("http://apache.org/xml/features/nonvalidating/load-external-dtd", false);
            parser.setFeature("http://xml.org/sax/features/namespaces", false)
            parser.setFeature("http://apache.org/xml/features/disallow-doctype-decl", false)
            this.resultsNode = parser.parse(testResultsFile)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top