Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,820 for palmer (0.09 sec)

  1. 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)
  2. security/tools/jwt/sa-jwt.py

        return signed_jwt
    
    
    if __name__ == '__main__':
        parser = argparse.ArgumentParser(
            description=__doc__,
            formatter_class=argparse.RawDescriptionHelpFormatter)
        # positional arguments
        parser.add_argument(
            'service_account_file',
            help='The path to your service account key file (in JSON format).')
        # optional arguments
        parser.add_argument("-iss", "--iss",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 2.6K 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/go/testdata/script/test_trimpath.txt

    module example.com/pkg
    
    go 1.17
    
    -- pkg.go --
    package pkg
    
    import "runtime"
    
    func PrintFile() {
    	_, file, _, _ := runtime.Caller(0)
    	println(file)
    }
    
    -- pkg_test.go --
    package pkg
    
    import "runtime"
    
    func PrintFileForTest() {
    	_, file, _, _ := runtime.Caller(0)
    	println(file)
    }
    
    -- pkg_x_test.go --
    package pkg_test
    
    import (
    	"runtime"
    	"testing"
    
    	"example.com/pkg"
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 12 15:17:33 UTC 2021
    - 657 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. test/fixedbugs/issue21879.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"runtime"
    )
    
    func main() {
    	println(caller().frame.Function)
    
    	// Used to erroneously print "main.call.name" instead of
    	// "main.main".
    	println(caller().name())
    }
    
    func caller() call {
    	var pcs [3]uintptr
    	n := runtime.Callers(1, pcs[:])
    	frames := runtime.CallersFrames(pcs[:n])
    	frame, _ := frames.Next()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 19 18:35:24 UTC 2017
    - 658 bytes
    - Viewed (0)
  9. 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)
  10. test/fixedbugs/issue18410.go

    //go:noinline
    func (t X) Print() {
    	if t.B != nil {
    		panic("t.B must be nil")
    	}
    }
    
    //go:noinline
    func caller(f func()) {
    	f()
    }
    
    //go:noinline
    func test() {
    	var i, j int
    	x := X{A: &i, C: &j}
    	caller(func() { X{A: &i, C: &j}.Print() })
    	caller(X{A: &i, C: &j}.Print)
    	caller(x.Print)
    }
    
    func main() {
    	test()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 06 20:35:52 UTC 2017
    - 686 bytes
    - Viewed (0)
Back to top