Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 139 for restriction (1.8 sec)

  1. src/cmd/go/internal/modload/modfile.go

    	goVersion  string
    	toolchain  string
    	pruning    modPruning
    	require    []module.Version
    	retract    []retraction
    	deprecated string
    }
    
    // A retraction consists of a retracted version interval and rationale.
    // retraction is like modfile.Retract, but it doesn't point to the syntax tree.
    type retraction struct {
    	modfile.VersionInterval
    	Rationale string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/adapter/ProtocolToModelAdapter.java

                return true;
            }
    
            @Override
            public ViewDecoration restrictTo(Set<Class<?>> viewTypes) {
                List<ViewDecoration> filtered = new ArrayList<ViewDecoration>();
                for (ViewDecoration viewDecoration : decorations) {
                    ViewDecoration filteredDecoration = viewDecoration.restrictTo(viewTypes);
                    if (!filteredDecoration.isNoOp()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 04:42:54 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/authorization.go

    		if action == security.Action_ALLOW && anyNonEmpty(op.Hosts, op.NotHosts, op.Methods, op.NotMethods, op.Paths, op.NotPaths) {
    			// L7 policies never match for ALLOW
    			// For DENY they will always match, so it is more restrictive
    			return nil
    		}
    		match := &security.Match{
    			DestinationPorts:    stringToPort(op.Ports),
    			NotDestinationPorts: stringToPort(op.NotPorts),
    		}
    		toMatches = append(toMatches, match)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 16:23:36 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

     *
     *  It is recommended that the name of each CU_Test in a suite have
     *  a unique name.  Otherwise, only the first-registered test having 
     *  a given name will be accessible by that name.  There are no 
     *  restrictions on the test function.  This means that the same 
     *  function could, in principle, be called more than once from 
     *  different tests.
     *
     *  @see CU_Suite
     *  @see CU_TestRegistry
     */
    typedef struct CU_Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/typeset.go

    	"sort"
    	"strings"
    )
    
    // ----------------------------------------------------------------------------
    // API
    
    // A _TypeSet represents the type set of an interface.
    // Because of existing language restrictions, methods can be "factored out"
    // from the terms. The actual type set is the intersection of the type set
    // implied by the methods and the type set described by the terms and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. src/go/types/typeset.go

    	"sort"
    	"strings"
    )
    
    // ----------------------------------------------------------------------------
    // API
    
    // A _TypeSet represents the type set of an interface.
    // Because of existing language restrictions, methods can be "factored out"
    // from the terms. The actual type set is the intersection of the type set
    // implied by the methods and the type set described by the terms and the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  7. doc/go_mem.html

    is documented in the “Synchronization” section below.
    Individual packages are responsible for providing similar documentation
    for their own operations.
    </p>
    
    <h2 id="restrictions">Implementation Restrictions for Programs Containing Data Races</h2>
    
    <p>
    The preceding section gave a formal definition of data-race-free program execution.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 15:54:42 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/config_flags.go

    		discoveryBurst: 300,
    	}
    }
    
    // overlyCautiousIllegalFileCharacters matches characters that *might* not be supported.  Windows is really restrictive, so this is really restrictive
    var overlyCautiousIllegalFileCharacters = regexp.MustCompile(`[^(\w/.)]`)
    
    // computeDiscoverCacheDir takes the parentDir and the host and comes up with a "usually non-colliding" name.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 11 15:04:11 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/structuring/composite_builds.adoc

    include::sample[dir="snippets/developingPlugins/testingPlugins/groovy/include-plugin-build",files="settings.gradle[tags=include-build]"]
    ====
    
    [[included_builds]]
    == Restrictions on included builds
    
    Most builds can be included in a composite, including other composite builds.
    There are some restrictions.
    
    In a regular build, Gradle ensures that each project has a unique _project path_.
    It makes projects identifiable and addressable without conflicts.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 02:23:19 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config.cc

    namespace {
    
    // Returns ops that should use MLIR legalization.
    // All other ops not in this list should use XlaOpKernel.
    const llvm::DenseSet<mlir::TypeID>& MlirAlwaysOps() {
      // The static variable is a pointer in order to avoid destruction upon thread
      // termination.
      static const llvm::DenseSet<mlir::TypeID>* ops = new llvm::DenseSet<
          mlir::TypeID>{
          // Ops that should always use the MLIR legalization.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top