Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,329 for Handles (0.17 sec)

  1. 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)
  2. 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)
  3. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/gpu_hardware.h

    #include "tensorflow/compiler/mlir/lite/experimental/tac/hardwares/target_hardware.h"
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    
    namespace mlir {
    namespace TFL {
    namespace tac {
    // Gpu hardware class which handles GPU capabilities in TFLite.
    // This is used by TAC to get op supported/ op cost estimates on GPU.
    class GpuHardware : public TargetHardware {
     public:
      static constexpr char kId[] = "GPU";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 27 15:05:02 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  4. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotclasses.yaml

                    Required.
                  enum:
                    - Delete
                    - Retain
                  type: string
                driver:
                  description: driver is the name of the storage driver that handles this
                    VolumeSnapshotClass. Required.
                  type: string
                kind:
                  description: 'Kind is a string value representing the REST resource this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go

    	"k8s.io/apimachinery/pkg/runtime/serializer/recognizer"
    	"k8s.io/apimachinery/pkg/util/framer"
    	utilyaml "k8s.io/apimachinery/pkg/util/yaml"
    	"k8s.io/klog/v2"
    )
    
    // NewSerializer creates a JSON serializer that handles encoding versioned objects into the proper JSON form. If typer
    // is not nil, the object has the group, version, and kind fields set.
    // Deprecated: use NewSerializerWithOptions instead.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 25 16:08:07 UTC 2022
    - 12K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top