Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 4,434 for Allows (0.23 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemLocationProperty.java

         * that owns this property instance.
         *
         * <p>This method is the same as {@link #set(File)} but allows method chaining.</p>
         *
         * @return this
         * @since 6.0
         */
        FileSystemLocationProperty<T> fileValue(@Nullable File file);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 12:28:22 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/g3doc/tf_dialects.md

        island, these operations would need to have an equivalent in the
        `tf_executor` dialect.
    *   Nesting also allows to form islands without involving inter-procedural
        analyzes: any function call may involve a callee with a graph.
    
    The `tf_executor.island` region allows implicit capture. If any value captured
    by a `tf_executor.island` is dead, the whole region does not execute and every
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 13 16:33:28 UTC 2021
    - 16K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/client/listers/apiextensions/v1/expansion_generated.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Code generated by lister-gen. DO NOT EDIT.
    
    package v1
    
    // CustomResourceDefinitionListerExpansion allows custom methods to be added to
    // CustomResourceDefinitionLister.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 16 17:13:40 UTC 2019
    - 797 bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/UsageDescriberSpec.groovy

        }
    
        def "can describe usage for role which allows nothing"() {
            given:
            def role = new DefaultConfigurationRole("test", false, false, false, false, false, false)
    
            expect:
            UsageDescriber.describeRole(role) == "\tThis configuration does not allow any usage"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission.go

    		if a.GetOperation() == admission.Delete {
    			l.forceLiveLookupCache.Add(a.GetName(), true, forceLiveLookupTTL)
    		}
    		// allow all operations to namespaces
    		return nil
    	}
    
    	// always allow deletion of other resources
    	if a.GetOperation() == admission.Delete {
    		return nil
    	}
    
    	// always allow access review checks.  Returning status about the namespace would be leaking information
    	if isAccessReview(a) {
    		return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 15 09:52:18 UTC 2021
    - 8.6K bytes
    - Viewed (0)
  6. pkg/kubelet/container/testing/mock_runtime_cache.go

    func NewMockRuntimeCache(ctrl *gomock.Controller) *MockRuntimeCache {
    	mock := &MockRuntimeCache{ctrl: ctrl}
    	mock.recorder = &MockRuntimeCacheMockRecorder{mock}
    	return mock
    }
    
    // EXPECT returns an object that allows the caller to indicate expected use.
    func (m *MockRuntimeCache) EXPECT() *MockRuntimeCacheMockRecorder {
    	return m.recorder
    }
    
    // ForceUpdateIfOlder mocks base method.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. releasenotes/notes/46121.yaml

          explicitly setting `spec.replicas`, or using the chart-supplied
          `HorizontalPodAutoscaler`. Now `spec.replicas` is only set if
          `.Values.replicaCount` is supplied by the user and is a valid number.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 24 13:53:35 UTC 2023
    - 652 bytes
    - Viewed (0)
  8. pkg/test/failer.go

    	Cleanup(func())
    	Skip(args ...any)
    }
    
    // Fuzzer abstracts *testing.F
    type Fuzzer interface {
    	Fuzz(ff any)
    	Add(args ...any)
    }
    
    // errorWrapper is a Failer that can be used to just extract an `error`. This allows mixing
    // functions that take in a Failer and those that take an error.
    // The function must be called within a goroutine, or calls to Fatal will try to terminate the outer
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jul 15 23:58:50 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomLicenseSpec.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.publish.maven;
    
    import org.gradle.api.Action;
    
    /**
     * Allows to add licenses to a Maven publication.
     *
     * @since 4.8
     * @see MavenPom
     * @see MavenPomLicense
     */
    public interface MavenPomLicenseSpec {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 986 bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TargetCoverage.java

    import groovy.lang.Closure;
    
    import java.lang.annotation.*;
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target(ElementType.TYPE)
    @Inherited
    /**
     * Similar to {@link TargetVersions} but accepts a closure and hence allows to manage versions more flexibly.
     */
    public @interface TargetCoverage {
        Class<Closure> value();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 974 bytes
    - Viewed (0)
Back to top