Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,434 for Allows (0.25 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/initialization/ClassLoaderScope.java

         */
        ClassLoader getLocalClassLoader();
    
        /**
         * The classloader for use by child nodes.
         * <p>
         * Contains exported classes of the parent scope and all local and exported additions to this scope.
         * It is strongly preferable to only call this after {@link #lock() locking} the scope as it allows the structure to be optimized.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. pkg/kube/kubetypes/types.go

    	// Namespace to watch.
    	// This is a *server side* filter.
    	Namespace string
    	// ObjectFilter allows arbitrary filtering logic.
    	// This is a *client side* filter. This means CPU/memory costs are still present for filtered objects.
    	// Use LabelSelector or FieldSelector instead, if possible.
    	ObjectFilter DynamicObjectFilter
    	// ObjectTransform allows arbitrarily modifying objects stored in the underlying cache.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. cluster/addons/rbac/kubelet-api-auth/kubelet-api-admin-role.yaml

    # This role allows full access to the kubelet API
    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRole
    metadata:
      name: kubelet-api-admin
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    rules:
    - apiGroups:
      - ""
      resources:
      - nodes/proxy
      - nodes/log
      - nodes/stats
      - nodes/metrics
      verbs:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 21 18:57:07 UTC 2022
    - 323 bytes
    - Viewed (0)
  4. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/EarPluginConvention.java

         * Default is "src/main/application".
         */
        public abstract String getAppDirName();
    
        public abstract void setAppDirName(String appDirName);
    
        /**
         * Allows changing the application directory.
         * Default is "src/main/application".
         */
        public abstract void appDirName(String appDirName);
    
        /**
         * The name of the library directory in the EAR file.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.css

    #stack-holder {
      width: 100%;
      flex-grow: 1;
      overflow-y: auto;
      background: #eee; /* Light grey gives better contrast with boxes */
      position: relative; /* Allows absolute positioning of child boxes */
    }
    /* Flame graph */
    #stack-chart {
      width: 100%;
      position: relative; /* Allows absolute positioning of child boxes */
    }
    /* Shows details of frame that is under the mouse */
    #current-details {
      position: absolute;
      top: 5px;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 16:39:48 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. src/crypto/internal/edwards25519/tables.go

    	points [64]affineCached
    }
    
    // Constructors.
    
    // Builds a lookup table at runtime. Fast.
    func (v *projLookupTable) FromP3(q *Point) {
    	// Goal: v.points[i] = (i+1)*Q, i.e., Q, 2Q, ..., 8Q
    	// This allows lookup of -8Q, ..., -Q, 0, Q, ..., 8Q
    	v.points[0].FromP3(q)
    	tmpP3 := Point{}
    	tmpP1xP1 := projP1xP1{}
    	for i := 0; i < 7; i++ {
    		// Compute (i+1)*Q as Q + i*Q and convert to a projCached
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 05 21:02:45 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/dsl/ComponentSelectorParsersTest.groovy

            def v = multiParser().parseNotation(sb) as List
    
            then:
            v.size() == 1
            v[0] instanceof ModuleComponentSelector
            v[0].module == 'charsequence'
        }
    
        def "allows exact type on input"() {
            def module = DefaultModuleIdentifier.newId("org.foo", "bar")
            def id = DefaultModuleComponentSelector.newSelector(module, new DefaultMutableVersionConstraint("2.0"))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. 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)
  9. releasenotes/notes/proxy-headers.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    releaseNotes:
      - |
        **Added** a new configuration to `ProxyConfig`, `ProxyHeaders`. This allows customization of headers like `server`, `x-forwarded-client-cert`, etc.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 25 18:08:43 UTC 2023
    - 314 bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/ExclusiveCacheAccessCoordinator.java

         *
         * <p>This method is re-entrant, so that an action can call back into this method.</p>
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top