Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 9,567 for Implements (0.35 sec)

  1. pkg/kubelet/metrics/collectors/log_metrics.go

    	metrics.BaseStableCollector
    
    	podStats func(ctx context.Context) ([]statsapi.PodStats, error)
    }
    
    // Check if logMetricsCollector implements necessary interface
    var _ metrics.StableCollector = &logMetricsCollector{}
    
    // NewLogMetricsCollector implements the metrics.StableCollector interface and
    // exposes metrics about container's log volume size.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 05 13:02:13 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  2. schema/serializer.go

    	Destination     reflect.Value
    	Context         context.Context
    	value           interface{}
    	fieldValue      interface{}
    }
    
    // Scan implements sql.Scanner interface
    func (s *serializer) Scan(value interface{}) error {
    	s.value = value
    	return nil
    }
    
    // Value implements driver.Valuer interface
    func (s serializer) Value() (driver.Value, error) {
    	return s.SerializeValuer.Value(s.Context, s.Field, s.Destination, s.fieldValue)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 08:28:46 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. platforms/core-execution/workers/src/testFixtures/groovy/org/gradle/workers/fixtures/OptionsVerifier.groovy

            }
        }
    
        class EnableAssertions implements Option {
            @Override
            String getDsl() {
                return "enableAssertions = true"
            }
    
            @Override
            void verify(Map processEnv) {
                assert processEnv[ARGUMENTS].contains('-ea')
            }
        }
    
        class BootstrapClassPath implements Option {
            String path
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/StronglyTypedConfigurationAttributesResolveIntegrationTest.groovy

            buildFile << """
                $typeDefs
    
                class FlavorCompatibilityRule implements AttributeCompatibilityRule<Flavor> {
                    void execute(CompatibilityCheckDetails<Flavor> details) {
                        details.compatible()
                    }
                }
                class FlavorSelectionRule implements AttributeDisambiguationRule<Flavor> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 48.1K bytes
    - Viewed (0)
  5. pkg/config/analysis/legacy/source/kube/origin.go

    }
    
    // Namespace implements resource.Origin
    func (o *Origin) Namespace() resource.Namespace {
    	// Special case: the namespace of a namespace resource is its own name
    	if o.Type == gvk.Namespace {
    		return resource.Namespace(o.FullName.Name)
    	}
    
    	return o.FullName.Namespace
    }
    
    // Reference implements resource.Origin
    func (o *Origin) Reference() resource.Reference {
    	return o.Ref
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/plugins/consuming/common/ivy-repo/com.example/sample-plugins/1.0.0/sample-plugins-1.0.0.jar

    META-INF/MANIFEST.MF Manifest-Version: 1.0 com/example/hello/HelloPlugin$1.class package com.example.hello; synchronized class HelloPlugin$1 implements org.gradle.api.Action { void HelloPlugin$1(HelloPlugin); public void execute(org.gradle.api.Task); } com/example/hello/HelloPlugin.class package com.example.hello; public synchronized class HelloPlugin implements org.gradle.api.Plugin { public void HelloPlugin(); public void apply(org.gradle.api.Project); } com/example/goodbye/GoodbyePlugin.class package...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4K bytes
    - Viewed (0)
  7. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestEventSerializer.java

            registry.register(DefaultTestFailure.class, new DefaultTestFailureSerializer(throwableSerializer));
            return registry;
        }
    
        private static class NullableSerializer<T> implements Serializer<T> {
            private final Serializer<T> serializer;
    
            private NullableSerializer(Serializer<T> serializer) {
                this.serializer = serializer;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFlowScopeIntegrationTest.groovy

            def configCache = newConfigurationCacheFixture()
            scriptFileFor(scriptTarget) << """
                import org.gradle.api.flow.*
                import org.gradle.api.services.*
    
                class LavaLampPlugin implements Plugin<$targetType> {
    
                    final FlowScope flowScope
                    final FlowProviders flowProviders
    
                    @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r16/CustomToolingModelCrossVersionSpec.groovy

    import javax.inject.Inject
    
    apply plugin: CustomPlugin
    
    class CustomModel implements Serializable {
        String getValue() { 'greetings' }
        Set<CustomThing> getThings() { return [new CustomThing()] }
        Map<String, CustomThing> getThingsByName() { return [thing: new CustomThing()] }
    }
    class CustomThing implements Serializable {
    }
    class CustomBuilder implements ToolingModelBuilder {
        boolean canBuild(String modelName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. pkg/test/loadbalancersim/loadbalancer/edf.go

    	}
    	return pq[i].deadline < pq[j].deadline
    }
    
    // Swap implements heap.Interface/sort.Interface
    func (pq priorityQueue) Swap(i, j int) {
    	pq[i], pq[j] = pq[j], pq[i]
    }
    
    // Push implements heap.Interface for pushing an item into the heap
    func (pq *priorityQueue) Push(x any) {
    	entry := x.(*Entry)
    	*pq = append(*pq, entry)
    }
    
    // Pop implements heap.Interface for popping an item from the heap
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 20 19:13:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top