Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 9,567 for Implements (0.2 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/ExtensibleEnumRegistries.java

    public class ExtensibleEnumRegistries {
    
        @Named
        @SessionScoped
        public static class DefaultPathScopeRegistry extends DefaultExtensibleEnumRegistry<PathScope, PathScopeProvider>
                implements PathScopeRegistry {
    
            @Inject
            public DefaultPathScopeRegistry(List<PathScopeProvider> providers) {
                super(
                        providers,
                        PathScope.MAIN_COMPILE,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/DefaultCompatibilityRuleChainTest.groovy

        static class CompatibilityRule implements AttributeCompatibilityRule<String> {
            @Override
            void execute(CompatibilityCheckDetails<String> details) {
                assert details.consumerValue == "value1"
                assert details.producerValue == "value2"
                details.compatible()
            }
        }
    
        static class CompatibilityRuleWithParams implements AttributeCompatibilityRule<String> {
            String p1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyComponentMetadataRulesStatusIntegrationTest.groovy

        }
    
        def "module with custom status can be resolved by adapting status scheme"() {
            buildFile <<
                    """
    class StatusRule implements ComponentMetadataRule {
        public void execute(ComponentMetadataContext context) {
            assert context.details.status == "silver"
            context.details.statusScheme = ["gold", "silver", "bronze"]
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultValueSourceProviderFactoryTest.groovy

            }
        }
    
        static abstract class EchoValueSourceWithDisplayName extends EchoValueSource
            implements Describable {
    
            @Override
            String getDisplayName() {
                "echo(${getParameters().value.orElse('?').get()})"
            }
        }
    
        static abstract class NoParameters implements ValueSource<Integer, ValueSourceParameters.None> {
    
            @Override
            Integer obtain() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:25 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/transfer/ProgressLoggingExternalResourceLister.java

    import javax.annotation.Nullable;
    import java.net.URI;
    import java.util.List;
    
    public class ProgressLoggingExternalResourceLister extends AbstractProgressLoggingHandler implements ExternalResourceLister {
        private final ExternalResourceLister delegate;
        private final BuildOperationRunner buildOperationExecutor;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 12:31:19 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/cpumanager/policy.go

    	"k8s.io/utils/cpuset"
    )
    
    // Policy implements logic for pod container to CPU assignment.
    type Policy interface {
    	Name() string
    	Start(s state.State) error
    	// Allocate call is idempotent
    	Allocate(s state.State, pod *v1.Pod, container *v1.Container) error
    	// RemoveContainer call is idempotent
    	RemoveContainer(s state.State, podUID string, containerName string) error
    	// GetTopologyHints implements the topologymanager.HintProvider Interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/gateway/conflictinggateway.go

    		}
    	}
    }
    
    // isGWsHostMatched implements gateway's hosts match
    func isGWsHostMatched(gwInstance string, gwHostList []string) bool {
    	gwInstanceNamed := host.Name(gwInstance)
    	for _, gwElem := range gwHostList {
    		gwElemNamed := host.Name(gwElem)
    		if gwInstanceNamed.Matches(gwElemNamed) {
    			return true
    		}
    	}
    	return false
    }
    
    // initGatewaysMap implements initialization for gateways Map
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/unicode/norm/readwriter.go

    // license that can be found in the LICENSE file.
    
    package norm
    
    import "io"
    
    type normWriter struct {
    	rb  reorderBuffer
    	w   io.Writer
    	buf []byte
    }
    
    // Write implements the standard write interface.  If the last characters are
    // not at a normalization boundary, the bytes will be buffered for the next
    // write. The remaining bytes will be written on close.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/BaseJavaClassChangeIncrementalCompilationIntegrationTest.groovy

                        }
                    }
                """
                source """
                    class MethodLocal1 {
                        SomeInterface getAnonymous() {
                            class Foo implements SomeInterface {
                                public int foo() {
                                    return 2;
                                }
                            }
                            return new Foo();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/DefaultDisambiguationRuleChainTest.groovy

        static class SelectionRule implements AttributeDisambiguationRule<String> {
            @Override
            void execute(MultipleCandidatesDetails<String> details) {
                assert details.candidateValues == ["value1", "value2"] as Set
                details.closestMatch("value1")
            }
        }
        static class SelectionRuleWithParams implements AttributeDisambiguationRule<String> {
            String p1
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top