Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,696 for palmer (0.17 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradleModuleMetadataParserTest.groovy

            when:
            parser.parse(resource('{ "formatVersion": "1.1" }'), metadata)
    
            then:
            1 * metadata.getMutableVariants()
            0 * metadata._
        }
    
        def "parses minimal metadata with identity and producer information"() {
            def metadata = Mock(MutableModuleComponentResolveMetadata)
    
            when:
            parser.parse(resource('''
        {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 38K bytes
    - Viewed (0)
  2. src/runtime/testdata/testprogcgo/needmdeadlock.go

    }
    
    static void runNeedmSignalThread() {
    	int i;
    	pthread_t caller;
    	pthread_t s[SIGNALERS];
    
    	pthread_create(&caller, NULL, needmCallbackThread, NULL);
    	for (i = 0; i < SIGNALERS; i++) {
    		pthread_create(&s[i], NULL, needmSignalThread, &caller);
    	}
    	for (i = 0; i < SIGNALERS; i++) {
    		pthread_join(s[i], NULL);
    	}
    	pthread_join(caller, NULL);
    }
    */
    import "C"
    
    import (
    	"fmt"
    	"os"
    	"time"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  3. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/GrammarMetadata.java

        }
    
        public boolean extendsStandardGrammar() {
            final String superGrammarClassName = getSuperGrammarDelegate().getClassName();
            return Parser.class.getName().equals(superGrammarClassName) || Parser.class.getSimpleName().equals(
                    superGrammarClassName) || TreeParser.class.getName().equals(superGrammarClassName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. pkg/test/framework/components/echo/common/call.go

    		}
    		return nil, true, nil
    	}, opts.Retry.Options...)
    
    	return result, err
    }
    
    type Caller struct {
    	f *forwarder.Instance
    }
    
    func NewCaller() *Caller {
    	return &Caller{
    		f: forwarder.New(),
    	}
    }
    
    func (c *Caller) Close() error {
    	return c.f.Close()
    }
    
    func (c *Caller) CallEcho(from echo.Caller, opts echo.CallOptions) (echo.CallResult, error) {
    	if err := opts.FillDefaults(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. pkg/log/scope_test.go

    			pat:    timePattern + "\tdebug\ttestScope\tlog/scope_test.go:.*\tHello",
    			caller: true,
    		},
    
    		{
    			f: func() { s.Debug("Hello") },
    			pat: "{\"level\":\"debug\",\"time\":\"" + timePattern + "\",\"scope\":\"testScope\",\"caller\":\"log/scope_test.go:.*\",\"msg\":\"Hello\"," +
    				"\"stack\":\".*\"}",
    			json:       true,
    			caller:     true,
    			stackLevel: DebugLevel,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 17:36:09 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. test/nowritebarrier.go

    	x.f = y // ERROR "write barrier prohibited by caller"
    	d4()
    }
    
    //go:yeswritebarrierrec
    func d4() {
    	d2()
    }
    
    //go:noinline
    func systemstack(func()) {}
    
    //go:nowritebarrierrec
    func e1() {
    	systemstack(e2)
    	systemstack(func() {
    		x.f = y // ERROR "write barrier prohibited by caller"
    	})
    }
    
    func e2() {
    	x.f = y // ERROR "write barrier prohibited by caller"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:18:21 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. src/os/proc.go

    // Getuid returns the numeric user id of the caller.
    //
    // On Windows, it returns -1.
    func Getuid() int { return syscall.Getuid() }
    
    // Geteuid returns the numeric effective user id of the caller.
    //
    // On Windows, it returns -1.
    func Geteuid() int { return syscall.Geteuid() }
    
    // Getgid returns the numeric group id of the caller.
    //
    // On Windows, it returns -1.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/CallInterceptor.java

         * The implementation may choose to delegate to the original Groovy implementation by returning the value of {@code invocation.callOriginal()}.
         *
         * @param invocation the arguments supplied by the caller
         * @param consumer the class that invokes the intercepted call
         * @return the value to return to the caller
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. src/cmd/dist/buildtag.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    	"strings"
    )
    
    // exprParser is a //go:build expression parser and evaluator.
    // The parser is a trivial precedence-based parser which is still
    // almost overkill for these very simple expressions.
    type exprParser struct {
    	x string
    	t exprToken // upcoming token
    }
    
    // val is the value type result of parsing.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 03:35:04 UTC 2021
    - 3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/parse_text_proto.cc

                          absl::string_view prefix_to_strip,
                          protobuf::Message* parsed_proto) {
      protobuf::TextFormat::Parser parser;
      // Don't produce errors when attempting to parse text format as it would fail
      // when the input is actually a binary file.
      NoOpErrorCollector collector;
      parser.RecordErrorsTo(&collector);
      // Attempt to parse as text.
      absl::string_view text_proto_without_prefix = text_proto;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top