Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,820 for palmer (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. subprojects/core/src/main/java/org/gradle/caching/internal/services/DefaultBuildCacheControllerFactory.java

            TemporaryFileProvider temporaryFileProvider,
            BuildCacheEntryPacker packer
        ) {
            super(
                startParameter,
                buildOperationRunner,
                originMetadataFactory,
                stringInterner
            );
            this.temporaryFileProvider = temporaryFileProvider;
            this.packer = packer;
            this.buildOperationProgressEmitter = buildOperationProgressEmitter;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 17:08:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/swig/testdata/callback/main.h

    // license that can be found in the LICENSE file.
    
    class Callback {
    public:
    	virtual ~Callback() { }
    	virtual std::string run() { return "Callback::run"; }
    };
    
    class Caller {
    private:
    	Callback *callback_;
    public:
    	Caller(): callback_(0) { }
    	~Caller() { delCallback(); }
    	void delCallback() { delete callback_; callback_ = 0; }
    	void setCallback(Callback *cb) { delCallback(); callback_ = cb; }
    	std::string call();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:07 UTC 2023
    - 529 bytes
    - Viewed (0)
  6. src/go/ast/commentmap_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // To avoid a cyclic dependency with go/parser, this file is in a separate package.
    
    package ast_test
    
    import (
    	"fmt"
    	. "go/ast"
    	"go/parser"
    	"go/token"
    	"sort"
    	"strings"
    	"testing"
    )
    
    const src = `
    // the very first comment
    
    // package p
    package p /* the name is p */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 15:35:30 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/pseudo_test.go

    	// Note these errors should be independent of the architecture.
    	// Just run the test with amd64.
    	parser := newParser("amd64")
    	var buf strings.Builder
    	parser.errorWriter = &buf
    
    	for _, cat := range testcats {
    		for _, test := range cat.tests {
    			parser.allowABI = cat.allowABI
    			parser.errorCount = 0
    			parser.lineNum++
    			if !parser.pseudo(test.pseudo, tokenize(test.operands)) {
    				t.Fatalf("Wrong pseudo-instruction: %s", test.pseudo)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:48:38 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. src/net/dnsclient_unix.go

    	if _, err := c.Write(b); err != nil {
    		return dnsmessage.Parser{}, dnsmessage.Header{}, err
    	}
    
    	b = make([]byte, maxDNSPacketSize)
    	for {
    		n, err := c.Read(b)
    		if err != nil {
    			return dnsmessage.Parser{}, dnsmessage.Header{}, err
    		}
    		var p dnsmessage.Parser
    		// Ignore invalid responses as they may be malicious
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. security/pkg/server/ca/authenticate/cert_authenticator.go

    	if authCtx.GrpcContext != nil {
    		return cca.authenticateGrpc(authCtx.GrpcContext)
    	}
    	if authCtx.Request != nil {
    		return cca.authenticateHTTP(authCtx.Request)
    	}
    	return nil, nil
    }
    
    func (cca *ClientCertAuthenticator) authenticateGrpc(ctx context.Context) (*security.Caller, error) {
    	peer, ok := peer.FromContext(ctx)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 19 02:12:12 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/HtmlExtractor.java

            final DOMParser parser = getDomParser();
            try (final Reader reader = new StringReader(content)) {
                parser.parse(new InputSource(reader));
            } catch (final Exception e) {
                logger.warn("Failed to parse the content.", e);
                return new ExtractData(extractString(content));
            }
    
            final Document document = parser.getDocument();
            try {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top