Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 176 for ALLOW (0.05 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    the component or binary). The native software model provides tasks that enable this capability. First, the _dependent components_ report gives insight about the relationships between each component. Second, the _build and assemble dependents_ tasks allow you to assemble or build a component and its dependents in one step.
    
    In the following example, the build file defines `OpenSSL` as a dependency of `libUtil` and `libUtil` as a dependency of `LinuxApp` and `WindowsApp`. Test suites are treated...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modget/get.go

    	}
    
    	modload.ForceUseModules = true
    
    	// Do not allow any updating of go.mod until we've applied
    	// all the requested changes and checked that the result matches
    	// what was requested.
    	modload.ExplicitWriteGoMod = true
    
    	// Allow looking up modules for import paths when outside of a module.
    	// 'go get' is expected to do this, unlike other commands.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  3. pkg/kubelet/pod_workers.go

    	// NOTE: This function has to be thread-safe - it can be called for
    	// different pods at the same time.
    	podSyncer podSyncer
    
    	// workerChannelFn is exposed for testing to allow unit tests to impose delays
    	// in channel communication. The function is invoked once each time a new worker
    	// goroutine starts.
    	workerChannelFn func(uid types.UID, in chan struct{}) (out <-chan struct{})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            return createCopy(CollectionUtils.filter(getAllDependencies(), dependencySpec), getAllDependencyConstraints());
        }
    
        /**
         * Instead of copying a configuration's roles outright, we allow copied configurations
         * to assume any role. However, any roles which were previously disabled will become
         * deprecated in the copied configuration. In 9.0, we will update this to copy
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    checked by the 'verify' method of ops.
    ### `-tf-tpu-variable-runtime-reformatting`
    
    _Adds device variable formatting op to allow compilation-guided variable formatting._
    
    A pass that takes advantage of a loop to add ops that allow the execution to
    avoid repeatedly formatting variables back and forth. The desired formatting
    is determined by TPU program compilation, so this pass does not include how
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  6. src/runtime/mbitmap.go

    // isFree reports whether the index'th object in s is unallocated.
    //
    // The caller must ensure s.state is mSpanInUse, and there must have
    // been no preemption points since ensuring this (which could allow a
    // GC transition, which would allow the state to change).
    func (s *mspan) isFree(index uintptr) bool {
    	if index < uintptr(s.freeIndexForScan) {
    		return false
    	}
    	bytep, mask := s.allocBits.bitp(index)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/proxier.go

    	natChains        proxyutil.LineBuffer
    	filterChains     proxyutil.LineBuffer
    	natRules         proxyutil.LineBuffer
    	filterRules      proxyutil.LineBuffer
    	// Added as a member to the struct to allow injection for testing.
    	netlinkHandle NetLinkHandle
    	// ipsetList is the list of ipsets that ipvs proxier used.
    	ipsetList map[string]*IPSet
    	// nodePortAddresses selects the interfaces where nodePort works.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/types.go

    // is evaluated when the param referred by its perNamespaceParamRef is not found.
    type ParameterNotFoundActionType string
    
    const (
    	// Allow means all requests will be admitted if no param resources
    	// could be found.
    	AllowAction ParameterNotFoundActionType = "Allow"
    	// Deny means all requests will be denied if no param resources are found.
    	DenyAction ParameterNotFoundActionType = "Deny"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    }
    
    func (APIGroup) SwaggerDoc() map[string]string {
    	return map_APIGroup
    }
    
    var map_APIGroupList = map[string]string{
    	"":       "APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis.",
    	"groups": "groups is a list of APIGroup.",
    }
    
    func (APIGroupList) SwaggerDoc() map[string]string {
    	return map_APIGroupList
    }
    
    var map_APIResource = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            // is always available in the core and likely always will be, but we may have another ConfigurationProcessor
            // present supplied by the user. The rule is that we only allow the execution of one ConfigurationProcessor.
            // If there is more than one then we execute the one supplied by the user, otherwise we execute the
            // default SettingsXmlConfigurationProcessor.
            //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top