Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,957 for impl_5 (0.1 sec)

  1. cmd/kubeadm/app/util/runtime/runtime.go

    	return &CRIRuntime{
    		impl:      &defaultImpl{},
    		criSocket: criSocket,
    	}
    }
    
    // SetImpl can be used to set the internal implementation for testing purposes.
    func (runtime *CRIRuntime) SetImpl(impl impl) {
    	runtime.impl = impl
    }
    
    // Connect establishes a connection with the CRI runtime.
    func (runtime *CRIRuntime) Connect() error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/RepositorySystemSupplier.java

    import org.eclipse.aether.impl.ArtifactResolver;
    import org.eclipse.aether.impl.DependencyCollector;
    import org.eclipse.aether.impl.Deployer;
    import org.eclipse.aether.impl.Installer;
    import org.eclipse.aether.impl.LocalRepositoryProvider;
    import org.eclipse.aether.impl.MetadataGeneratorFactory;
    import org.eclipse.aether.impl.MetadataResolver;
    import org.eclipse.aether.impl.OfflineController;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 43.7K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpJavaEarSingleProjectIntegrationTest.groovy

            // Classpath
            def classpath = classpath
            classpath.assertHasLibs('lib2-impl-2.0.jar', 'lib1-impl-1.0.jar', 'lib1-api-1.0.jar')
            classpath.lib('lib1-api-1.0.jar').assertIsDeployedTo('/lib')
            classpath.lib('lib1-impl-1.0.jar').assertIsDeployedTo('/lib')
            classpath.lib('lib2-impl-2.0.jar').assertIsDeployedTo('/')
    
            // Facets
            def facets = wtpFacets
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/libtf/value.h

      };
    
    TF_ENUM_VALUE_OF(impl::Capsule, CAPSULE);
    TF_ENUM_VALUE_OF(impl::Float32, FLOAT32);
    TF_ENUM_VALUE_OF(impl::Int64, INT64);
    TF_ENUM_VALUE_OF(impl::List, LIST);
    TF_ENUM_VALUE_OF(impl::ListPtr, LIST);
    TF_ENUM_VALUE_OF(impl::Tuple, TUPLE);
    TF_ENUM_VALUE_OF(impl::TuplePtr, TUPLE);
    TF_ENUM_VALUE_OF(impl::Dict, DICT);
    TF_ENUM_VALUE_OF(impl::DictPtr, DICT);
    TF_ENUM_VALUE_OF(impl::None, NONE);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:23:45 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/ProcessInTransformIntegrationTest.groovy

     */
    
    package org.gradle.internal.cc.impl.inputs.process
    
    import org.gradle.internal.cc.impl.fixtures.ExternalProcessFixture.Snippets
    import org.gradle.internal.cc.impl.fixtures.ExternalProcessFixture.SnippetsFactory
    import org.gradle.internal.cc.impl.fixtures.TransformFixture
    import org.gradle.process.ExecOperations
    
    import javax.inject.Inject
    
    import static org.gradle.internal.cc.impl.fixtures.ExternalProcessFixture.exec
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/node_matchers.h

    // Matches a node with a boolean typed attribute named `name` and with value
    // `value`.
    template <typename ValueTy>
    impl::NodeMatcherProperties Attr(const string& name, ValueTy value) {
      return impl::Attr({impl::AttrLiteralHelper({name, value})});
    }
    
    inline impl::NodeMatcherProperties Attr(const string& name) {
      return impl::Attr(name);
    }
    
    // Matches a node with inputs `inputs`.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/CrossTaskConstantChangesIncrementalGroovyCompilationIntegrationTest.groovy

                    }""",
            ]
    
            impl.snapshot { run("impl:${language.compileTaskName}") }
    
            when:
            source api: ["class A { public static final int EVIL = 0; void blah() { /* avoid flakiness by changing compiled file length*/ } }"]
            run("impl:${language.compileTaskName}")
    
            then:
            impl.recompiledClasses('B', 'C', 'C$Inner', 'D', 'D$Inner', 'E', 'E$1', 'F', 'F$Inner')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependenciesIntegrationTest.groovy

        def "resolving project dependency triggers configuration of the target project"() {
            createDirs("impl")
            settingsFile << "include 'impl'"
            buildFile << """
                apply plugin: 'java'
                dependencies {
                    implementation project(":impl")
                }
                repositories {
                    //resolving project must declare the repo
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:37:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. pkg/kubelet/checkpointmanager/checkpoint_manager.go

    	RemoveCheckpoint(checkpointKey string) error
    	// ListCheckpoint returns the list of existing checkpoints.
    	ListCheckpoints() ([]string, error)
    }
    
    // impl is an implementation of CheckpointManager. It persists checkpoint in CheckpointStore
    type impl struct {
    	path  string
    	store utilstore.Store
    	mutex sync.Mutex
    }
    
    // NewCheckpointManager returns a new instance of a checkpoint manager
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 24 13:51:34 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/DependencySubstitutionRulesIntegrationTest.groovy

            mavenRepo.module("org.utils", "impl", '1.5').dependsOn('org.utils', 'api', '1.5').publish()
            createDirs("impl", "test")
            settingsFile << 'include "impl", "test"'
    
            buildFile << """
                $common
    
                project(":test") {
                    dependencies {
                        conf (group: "org.utils", name: "impl", version: "1.5") { transitive = false }
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 52.8K bytes
    - Viewed (0)
Back to top