Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,042 for Allows (0.17 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/service_injection.adoc

    7. <<archiveoperations,`ArchiveOperations`>> - Allows a task to run operations on archive files such as ZIP or TAR files.
    8. <<execoperations,`ExecOperations`>> - Allows a task to run external processes with dedicated support for running external `java` programs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

        /**
         * Allows lazy access to the contents of the given file.
         *
         * When the file contents are read at configuration time the file is automatically considered
         * as an input to the configuration model.
         *
         * @param file the file whose contents to read.
         * @return an interface that allows lazy access to the contents of the given file.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/mock_threshold_notifier_test.go

    func NewMockManager(ctrl *gomock.Controller) *MockManager {
    	mock := &MockManager{ctrl: ctrl}
    	mock.recorder = &MockManagerMockRecorder{mock}
    	return mock
    }
    
    // EXPECT returns an object that allows the caller to indicate expected use.
    func (m *MockManager) EXPECT() *MockManagerMockRecorder {
    	return m.recorder
    }
    
    // IsUnderDiskPressure mocks base method.
    func (m *MockManager) IsUnderDiskPressure() bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/podresources/testing/provider_mock.go

    func NewMockDevicesProvider(ctrl *gomock.Controller) *MockDevicesProvider {
    	mock := &MockDevicesProvider{ctrl: ctrl}
    	mock.recorder = &MockDevicesProviderMockRecorder{mock}
    	return mock
    }
    
    // EXPECT returns an object that allows the caller to indicate expected use.
    func (m *MockDevicesProvider) EXPECT() *MockDevicesProviderMockRecorder {
    	return m.recorder
    }
    
    // GetAllocatableDevices mocks base method.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileCompatibilityIntegrationTest.groovy

            javaClassFile("Parent.class").assertDoesNotExist()
        }
    
        def "source compatibility matching the compiler version allows accessing Java language features"() {
            def jdk = AvailableJavaHomes.getJdk(JavaVersion.VERSION_17)
    
            buildFile << """
                apply plugin: "java"
    
                java {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/HttpServer.groovy

            return forbid(path, false, ['GET'], ok())
        }
    
        /**
         * Allows one GET request for the given URL. Reads the request content from the given file.
         */
        HttpResourceInteraction expectGet(String path, File srcFile) {
            return expect(path, false, ['GET'], fileHandler(path, srcFile))
        }
    
        /**
         * Allows one GET request for the given URL. Returns an empty 200 OK response.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  7. pkg/features/kube_features.go

    	// owner: @mimowo
    	// kep: https://kep.k8s.io/3850
    	// alpha: v1.28
    	// beta: v1.29
    	//
    	// Allows users to specify counting of failed pods per index.
    	JobBackoffLimitPerIndex featuregate.Feature = "JobBackoffLimitPerIndex"
    
    	// owner: @mimowo
    	// kep: https://kep.k8s.io/4368
    	// alpha: v1.30
    	//
    	// Allows to delegate reconciliation of a Job object to an external controller.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  8. pkg/kubelet/status/testing/mock_pod_status_provider.go

    func NewMockPodManager(ctrl *gomock.Controller) *MockPodManager {
    	mock := &MockPodManager{ctrl: ctrl}
    	mock.recorder = &MockPodManagerMockRecorder{mock}
    	return mock
    }
    
    // EXPECT returns an object that allows the caller to indicate expected use.
    func (m *MockPodManager) EXPECT() *MockPodManagerMockRecorder {
    	return m.recorder
    }
    
    // GetMirrorPodByPod mocks base method.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/networking/v1/generated.proto

      // (and cluster policy otherwise allows the traffic), OR if the traffic source is
      // the pod's local node, OR if the traffic matches at least one ingress rule
      // across all of the NetworkPolicy objects whose podSelector matches the pod. If
      // this field is empty then this NetworkPolicy does not allow any traffic (and serves
      // solely to ensure that the pods it selects are isolated by default)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  10. pkg/kubelet/apis/config/types.go

    	// pulls to burst to this number, while still not exceeding registryPullQPS.
    	// Only used if registryPullQPS > 0.
    	RegistryBurst int32
    	// eventRecordQPS is the maximum event creations per second. If 0, there
    	// is no limit enforced.
    	EventRecordQPS int32
    	// eventBurst is the maximum size of a burst of event creations, temporarily
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top