Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,088 for Allows (0.15 sec)

  1. 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)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/permissions/permissions.kt

        }
    }
    
    @RequiresOptIn("Analysis should not be allowed to be run from the EDT, as otherwise it may cause IDE freezes.")
    public annotation class KaAllowAnalysisOnEdt
    
    /**
     * Allows [analyze][org.jetbrains.kotlin.analysis.api.analyze] to be called on the EDT in the given [action], which is normally not allowed.
     *
     * Analysis is not supposed to be invoked from the EDT, as it may cause freezes. Use at your own risk!
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ResettableExpectations.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.test.fixtures;
    
    /**
     * Allows {@link org.gradle.integtests.fixtures.ToBeFixedForConfigurationCacheExtension} to verify
     * test expectations before cleanup so they can be silenced if necessary.
     */
    public interface ResettableExpectations {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. maven-core/src/site/apt/configuration-management.apt

     the project level, and the user level. On the site level you can configure maven for all users
     utilizing the local installation, the group level allows configuration management for all the projects
     that belong to the same group, the project level allows configuration management at
     the project level, and the user level allows users to override settings on
     the site level, group level and project level.
    
    * Site configuration
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/GradleEnterprisePluginServiceRef.java

    /**
     * A service that provides the plugin service for the current build invocation.
     *
     * The plugin uses this to encapsulate its service in user facing code that may be cached.
     * This allows such cached code to use the plugin service for the current build when used from-cache.
     */
    @ServiceScope(Scope.BuildTree.class)
    public interface GradleEnterprisePluginServiceRef {
    
        GradleEnterprisePluginService get();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. pkg/test/echo/docker/Dockerfile.app_sidecar_base

        update-alternatives --set iptables /usr/sbin/iptables-legacy && \
        update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy; fi
    
    # Add a user that will run the application. This allows running as this user and capture iptables
    RUN useradd -m --uid 1338 application && \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. src/cmd/internal/pgo/serialize.go

    package pgo
    
    import (
    	"bufio"
    	"fmt"
    	"io"
    )
    
    // Serialization of a Profile allows go tool preprofile to construct the edge
    // map only once (rather than once per compile process). The compiler processes
    // then parse the pre-processed data directly from the serialized format.
    //
    // The format of the serialized output is as follows.
    //
    //      GO PREPROFILE V1
    //      caller_name
    //      callee_name
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/WorkInputListeners.java

    import org.gradle.internal.properties.InputBehavior;
    import org.gradle.internal.service.scopes.Scope.Global;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.util.EnumSet;
    
    /**
     * Allows the registration of {@link WorkInputListener work input listeners}.
     */
    @ServiceScope(Global.class)
    public interface WorkInputListeners {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.3K 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. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/local/internal/LocalBuildCacheService.java

    import java.io.Closeable;
    import java.io.File;
    import java.util.function.Consumer;
    
    /**
     * A build cache service that is capable of handling local files directly. The direct access
     * allows more optimized implementations than the more general {@link org.gradle.caching.BuildCacheService}
     * interface.
     */
    public interface LocalBuildCacheService extends BuildCacheTempFileStore, Closeable {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top