Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 417 for getCert (0.22 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/ExtractorFactoryTest.java

        }
    
        public void test_addExtractor() {
            final ExtractorFactory extractorFactory = new ExtractorFactory();
            final Extractor extractor = new Extractor() {
                public ExtractData getText(final InputStream in, final Map<String, String> params) {
                    return null;
                }
            };
    
            assertNull(extractorFactory.getExtractor("test"));
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/stored.rules

    classes\ that\ are\ not\ assignable\ from\ org.gradle.internal.Factory\ and\ are\ injected\ into\ getters\ via\ @Inject\ or\ are\ injected\ into\ constructors\ via\ @Inject\ should\ be\ annotated\ with\ @ServiceScope=injected-services-should-have-service-scope-applied.txt
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/CppLibWithSimpleUnitTest.groovy

        }
    
        @Override
        SourceElement getSources() {
            return empty()
        }
    
        @Override
        public void writeToProject(TestFile projectDir) {
            getMain().writeToProject(projectDir);
            getTest().writeToProject(projectDir);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/gateway/conflictinggateway.go

    			m.Line = line
    		}
    		c.Report(gvk.Gateway, m)
    		return
    	}
    
    	for _, server := range gw.Servers {
    		var gateways []string
    		conflictingGWMatch := 0
    		sPortNumber := strconv.Itoa(int(server.GetPort().GetNumber()))
    		mapKey := genGatewayMapKey(sGWSelector, sPortNumber)
    		for gwNameKey, gwHostsValue := range gwCMap[mapKey] {
    			for _, gwHost := range server.GetHosts() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. platforms/core-configuration/base-services-groovy/src/main/java/org/gradle/groovy/scripts/internal/AstUtils.java

            boolean hasName = call.getMethod() instanceof ConstantExpression && call.getMethod().getText().equals(name);
            return hasName && targetIsThis(call);
        }
    
        public static boolean targetIsThis(MethodCallExpression call) {
            Expression target = call.getObjectExpression();
            return target instanceof VariableExpression && target.getText().equals("this");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:00:26 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-workers/src/main/java/org/gradle/internal/operations/logging/StyledTextBuildOperationProgressDetails.java

        interface Span {
    
            /**
             * Always a value name of {@code org.gradle.internal.logging.text.StyledTextOutput.Style}.
             */
            String getStyleName();
    
            String getText();
    
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/internal/DefaultDebugOptions.java

    import java.io.Serializable;
    
    public class DefaultDebugOptions implements InternalDebugOptions, Serializable {
    
        private int port = -1;
    
        @Override
        public int getPort() {
            return this.port;
        }
    
        public void setPort(int port) {
            this.port = port;
        }
    
        @Override
        public boolean isDebugMode() {
            return port > 0;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/connection/ToolingParameterProxyTest.groovy

        }
    
        def "returns parameter invalid when no setter for getter"() {
            when:
            ToolingParameterProxy.validateParameter(InvalidParameter5)
    
            then:
            IllegalArgumentException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/provider/ValueSourceParameters.java

     * limitations under the License.
     */
    
    package org.gradle.api.provider;
    
    /**
     * Marker interface for parameter objects to {@link ValueSource}s.
     *
     * <p>
     * Parameter types should be interfaces, only declaring getters for {@link org.gradle.api.provider.Property}-like objects.
     * </p>
     * <pre class='autoTested'>
     * public interface MyParameters extends ValueSourceParameters {
     *     Property&lt;String&gt; getStringParameter();
     * }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 03 18:37:31 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/tracing.go

    		providerName = envoyZipkin
    		providerConfig = func() (*anypb.Any, error) {
    			hostname, cluster, err := clusterLookupFn(pushCtx, provider.Zipkin.GetService(), int(provider.Zipkin.GetPort()))
    			if err != nil {
    				model.IncLookupClusterFailures("zipkin")
    				return nil, fmt.Errorf("could not find cluster for tracing provider %q: %v", provider, err)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top