Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 1,820 for palmer (0.19 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/ComponentSelectorParsersTest.groovy

            thrown(UnsupportedNotationException)
    
            when:
            parser().parseNotation(null)
    
            then:
            thrown(UnsupportedNotationException)
        }
    
        def "single parser understands String notation"() {
            //just smoke testing the single parser, it is covered in multiParser, too.
            when:
            def v = parser().parseNotation("org.foo:bar:1.0")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/TimeLimiter.java

       * exception is propagated to the caller exactly as-is. If, on the other hand, the time limit is
       * reached, the proxy will attempt to abort the call to the target, and will throw an {@link
       * UncheckedTimeoutException} to the caller.
       *
       * <p>It is important to note that the primary purpose of the proxy object is to return control to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 18:32:03 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/internal/publisher/ValidatingIvyPublisher.java

    import org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.DescriptorParseContext;
    import org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.DisconnectedDescriptorParseContext;
    import org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.DisconnectedIvyXmlModuleDescriptorParser;
    import org.gradle.api.internal.artifacts.ivyservice.ivyresolve.parser.IvyModuleDescriptorConverter;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  4. 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)
  5. src/go/doc/example_internal_test.go

    	"a"
    
    	_ "b"
    
    	_ "c"
    	"d"
    )`,
    			want: []string{"a", "b", "c"},
    		},
    	} {
    		t.Run(test.name, func(t *testing.T) {
    			fset := token.NewFileSet()
    			file, err := parser.ParseFile(fset, "test.go", strings.NewReader(test.in), parser.ParseComments)
    			if err != nil {
    				t.Fatal(err)
    			}
    			imps := findImportGroupStarts1(file.Imports)
    			got := make([]string, len(imps))
    			for i, imp := range imps {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 14:22:16 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  6. pkg/security/mock.go

    	}
    }
    
    func (f *FakeAuthenticator) Authenticate(authCtx AuthContext) (*Caller, error) {
    	if authCtx.GrpcContext != nil {
    		return f.authenticateGrpc(authCtx.GrpcContext)
    	}
    	if authCtx.Request != nil {
    		return f.authenticateHTTP(authCtx.Request)
    	}
    	return nil, nil
    }
    
    func (f *FakeAuthenticator) authenticateHTTP(req *http.Request) (*Caller, error) {
    	return nil, errors.New("not implemented")
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  7. platforms/software/antlr/src/test/groovy/org/gradle/api/plugins/antlr/internal/antlr2/MetadataExtracterTest.groovy

        def "parses package information when defined in a separate line"() {
            given:
            def grammar = """
            header {
                package org.acme;
            }
    
            class TestGrammar extends Parser;
    
            options {
                buildAST = true;
            }
    
            expr:   mexpr (PLUS^ mexpr)* SEMI!
                ;
    
            mexpr
                :   atom (STAR^ atom)*
                ;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/internal/classpath/BasicCallInterceptionTest.groovy

        }
    
        def 'access to a #kind of a Groovy property from a #caller caller is intercepted as #expected'() {
            when:
            def intercepted = interceptedWhen(shouldDelegate, invocation)
    
            then:
            intercepted == expected
    
            where:
            kind                  | caller      | expected                                      | invocation                           | shouldDelegate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 09:44:54 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  9. 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)
  10. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/TaskOutputPackagingTarBenchmark.java

    public class TaskOutputPackagingTarBenchmark extends AbstractTaskOutputPackagingBenchmark {
        @Param({"tar", "tar.commons", "tar.jtar"})
        String packer;
    
        @Param({"direct", "buffered"})
        String accessor;
    
        @Override
        protected String getPackerName() {
            return packer;
        }
    
        @Override
        protected String getAccessorName() {
            return accessor;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top