Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 9,567 for Implements (0.16 sec)

  1. pkg/registry/networking/ingress/storage/storage.go

    	return &REST{store}, &StatusREST{store: &statusStore}, nil
    }
    
    // Implement ShortNamesProvider
    var _ rest.ShortNamesProvider = &REST{}
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"ing"}
    }
    
    // StatusREST implements the REST endpoint for changing the status of an ingress
    type StatusREST struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/hub/JavaSerializationBackedMethodArgsSerializer.java

        }
    
        private static class EmptyArraySerializer implements Serializer<Object[]> {
            @Override
            public Object[] read(Decoder decoder) {
                return ZERO_ARGS;
            }
    
            @Override
            public void write(Encoder encoder, Object[] value) {
            }
        }
    
        private class ArraySerializer implements Serializer<Object[]> {
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/writing-tasks/tasks-with-dependency-resolution-result-inputs/common/dependency-reports/src/main/java/com/example/DependencyReportsPlugin.java

    import java.util.Collection;
    import java.util.List;
    import java.util.Set;
    import java.util.stream.Collectors;
    
    import static java.util.stream.Collectors.toList;
    
    public abstract class DependencyReportsPlugin implements Plugin<Project> {
    
        @Override
        public void apply(Project project) {
    
            project.getPluginManager().withPlugin("java-base", plugin -> {
    
                ProjectLayout layout = project.getLayout();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. src/math/big/floatmarsh.go

    // license that can be found in the LICENSE file.
    
    // This file implements encoding/decoding of Floats.
    
    package big
    
    import (
    	"errors"
    	"fmt"
    	"internal/byteorder"
    )
    
    // Gob codec version. Permits backward-compatible changes to the encoding.
    const floatGobVersion byte = 1
    
    // GobEncode implements the [encoding/gob.GobEncoder] interface.
    // The [Float] value and all its attributes (precision,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/util/workloadinstances/index.go

    		ipToKeys:      make(MultiValueMap),
    	}
    }
    
    // index implements Index.
    type index struct {
    	mu sync.RWMutex
    	// key function
    	keyFunc func(*model.WorkloadInstance) string
    	// map of namespace/name -> workload instance
    	keyToInstance map[string]*model.WorkloadInstance
    	// map of ip -> set of namespace/name
    	ipToKeys MultiValueMap
    }
    
    // Insert implements Index.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 16 05:45:36 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  6. test-site/activator-launch-1.3.2.jar

    selectQuick$1 extends scala.runtime.AbstractFunction1 implements scala.Serializable { public void Initialize$$anonfun$selectQuick$1(); } xsbt/boot/Locks$$anonfun$1.class package xsbt.boot; public final synchronized class Locks$$anonfun$1 extends scala.runtime.AbstractFunction2 implements scala.Serializable { public void Locks$$anonfun$1(); } xsbt/boot/AppProperty.class package xsbt.boot; public final synchronized class AppProperty implements scala.Product, scala.Serializable { private final String...
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 1.2M bytes
    - Viewed (1)
  7. guava-testlib/test/com/google/common/testing/anotherpackage/ForwardingWrapperTesterTest.java

            assertThat(expected.getMessage()).contains(message);
          }
          return;
        }
        fail("expected failure not reported");
      }
    
      private class ForwardingRunnable implements Runnable {
    
        private final Runnable runnable;
    
        ForwardingRunnable(Runnable runnable) {
          this.runnable = runnable;
        }
    
        @Override
        public void run() {
          runnable.run();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentMetadataRulesChangingModulesIntegrationTest.groovy

            moduleA.allowAll()
        }
    
        def "changing dependency doesn't affect changing flag"() {
            buildFile <<
    """
    $repoDeclaration
    configurations {
        modules
    }
    
    class VerifyingRule implements ComponentMetadataRule {
        public void execute(ComponentMetadataContext context) {
            println "changing=" + context.details.changing
        }
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/route/sys_openbsd.go

    	}
    }
    
    // RouteMetrics represents route metrics.
    type RouteMetrics struct {
    	PathMTU int // path maximum transmission unit
    }
    
    // SysType implements the SysType method of Sys interface.
    func (rmx *RouteMetrics) SysType() SysType { return SysMetrics }
    
    // Sys implements the Sys method of Message interface.
    func (m *RouteMessage) Sys() []Sys {
    	return []Sys{
    		&RouteMetrics{
    			PathMTU: int(nativeEndian.Uint32(m.raw[60:64])),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/MissingScriptFixture.groovy

            TestFile addMissingScript(TestFile dir, ScriptLanguage scriptLanguage)
    
            String getDisplayName(String scriptExtension)
        }
    
        static class MissingBuild implements Scenario {
    
            @Override
            void setup(AbstractIntegrationSpec spec) {}
    
            @Override
            void createInitialBuildLayoutIn(TestFile dir, ScriptLanguage scriptLanguage) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top