Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,867 for Handles (0.13 sec)

  1. tensorflow/c/eager/abstract_tensor_handle.cc

                          ", dtype=", DataType_Name(DataType()),
                          ", type=", FullType().DebugString(), ")");
    }
    
    Status AbstractTensorHandle::TensorHandleStatus() const {
      // Tensor handles in current runtime don't carry error info and this method
      // should always return OK status.
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 09:49:45 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. plugin/pkg/admission/podnodeselector/admission_test.go

    		}
    		handler.clusterNodeSelectors = make(map[string]string)
    		handler.clusterNodeSelectors["clusterDefaultNodeSelector"] = test.defaultNodeSelector
    		handler.clusterNodeSelectors[namespace.Name] = test.whitelist
    		pod.Spec = api.PodSpec{NodeSelector: test.podNodeSelector}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/java/jvm-multi-project-with-toolchains/README.adoc

    This sample shows how to configure a toolchain for a JVM project in Gradle.
    Your project usually targets a specific java version.
    Using toolchains, it is very simple to set the required java version while Gradle handles the setting up the tasks (e.g. compile and test) accordingly.
    
    Concretely, we add a _convention plugin_ in `buildSrc` to share the setup between multiple subprojects:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. samples/ambient-argo/tag-chart/values.yaml

      #   (5) injectionPath: the injection path to use for this tag webhook.
      #
      # Note that the revision tag "default" has additional semantic meaning as it
      # controls the revision that performs validation and the revision that handles
      # injection for default selectors ("istio-injection=enabled" and "sidecar.istio.io/inject").
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Nov 04 01:54:50 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/jvm/scala/src/integTest/groovy/org/gradle/integtests/ScalaProjectIntegrationTest.groovy

    import org.junit.Rule
    
    class ScalaProjectIntegrationTest extends AbstractIntegrationSpec {
        @Rule
        ZincScalaCompileFixture zincScalaCompileFixture = new ZincScalaCompileFixture(executer, testDirectoryProvider)
    
        def "handles java source only"() {
            file("src/main/java/somepackage/SomeClass.java") << "public class SomeClass { }"
            buildFile << """
                apply plugin: 'scala'
            """
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. pkg/kubelet/server/server.go

    // filteringContainer delegates all Handle(...) calls to Container.HandleWithFilter(...),
    // so we can ensure restful.FilterFunctions are used for all handlers
    type filteringContainer struct {
    	*restful.Container
    
    	registeredHandlePaths []string
    }
    
    func (a *filteringContainer) Handle(path string, handler http.Handler) {
    	a.HandleWithFilter(path, handler)
    	a.registeredHandlePaths = append(a.registeredHandlePaths, path)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/management/DependencyManagementInjector.java

    package org.apache.maven.model.management;
    
    import org.apache.maven.model.Model;
    import org.apache.maven.model.building.ModelBuildingRequest;
    import org.apache.maven.model.building.ModelProblemCollector;
    
    /**
     * Handles injection of dependency management into the model.
     *
     */
    public interface DependencyManagementInjector {
    
        /**
         * Merges default values from the dependency management section of the given model into itself.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/HiddenInDslTest.kt

        @get:HiddenInDeclarativeDsl
        var y: Int = 0
    }
    
    
    class HiddenInDslTest {
        val schema = schemaFromTypes(HasHiddenProperty::class, listOf(HasHiddenProperty::class))
    
        @Test
        fun `handles the hidden properties correctly`() {
            val aType = schema.dataClassesByFqName.getValue(DefaultFqName.parse(HasHiddenProperty::class.qualifiedName!!))
            assertTrue { aType.properties.single { it.name == "y" }.isHiddenInDsl }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/repository/MirrorSelector.java

     * under the License.
     */
    package org.apache.maven.repository;
    
    import java.util.List;
    
    import org.apache.maven.artifact.repository.ArtifactRepository;
    import org.apache.maven.settings.Mirror;
    
    /**
     * Handles the selection of mirrors for repositories.
     *
     */
    @Deprecated
    public interface MirrorSelector {
    
        /**
         * Determines the mirror for the specified repository.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 11:28:54 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/exec/ReturnResult.java

    import org.gradle.launcher.daemon.protocol.Success;
    import org.gradle.launcher.daemon.server.api.DaemonCommandAction;
    import org.gradle.launcher.daemon.server.api.DaemonCommandExecution;
    
    /**
     * Handles sending the result of the execution back to the client.
     *
     * Likely to be the first thing in the pipeline.
     */
    public class ReturnResult implements DaemonCommandAction {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top