Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 139 for restriction (3.72 sec)

  1. src/internal/reflectlite/value.go

    import (
    	"internal/abi"
    	"internal/goarch"
    	"internal/unsafeheader"
    	"runtime"
    	"unsafe"
    )
    
    // Value is the reflection interface to a Go value.
    //
    // Not all methods apply to all kinds of values. Restrictions,
    // if any, are noted in the documentation for each method.
    // Use the Kind method to find out the kind of value before
    // calling kind-specific methods. Calling a method
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testsanitizers/cc_test.go

    	if err != nil {
    		return false
    	}
    	return testenv.Builder() != "" && u.Username == "swarming"
    }
    
    // compilerRequiredTsanVersion reports whether the compiler is the version required by Tsan.
    // Only restrictions for ppc64le are known; otherwise return true.
    func compilerRequiredTsanVersion(goos, goarch string) bool {
    	compiler, err := compilerVersion()
    	if err != nil {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 20:00:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/security/oauth2-jwt.md

    OAuth2 has the notion of "scopes".
    
    You can use them to add a specific set of permissions to a JWT token.
    
    Then you can give this token to a user directly or a third party, to interact with your API with a set of restrictions.
    
    You can learn how to use them and how they are integrated into **FastAPI** later in the **Advanced User Guide**.
    
    ## Recap
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    want it, that you can change the software or use pieces of it in new
    free programs; and that you know you can do these things.
    
    To protect your rights, we need to make restrictions that forbid anyone
    to deny you these rights or to ask you to surrender the rights. These
    restrictions translate to certain responsibilities for you if you
    distribute copies of the software, or if you modify it.
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  5. src/net/url/url.go

    		// RFC 3986 §2.2 allows not escaping sub-delims. A subset of sub-delims are
    		// included in reserved from RFC 2396 §2.2. The remaining sub-delims do not
    		// need to be escaped. To minimize potential breakage, we apply two restrictions:
    		// (1) we always escape sub-delims outside of the fragment, and (2) we always
    		// escape single quote to avoid breaking callers that had previously assumed that
    		// single quotes would be escaped. See issue #19917.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 36.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

      "getElementTypeOrSelf($0.getType()).isIntOrFloat() && "
      "getElementTypeOrSelf($1.getType()).isIntOrFloat()">,
      "element types must be integers or floats">;
    
    // TODO(mgester): Due to restrictions of xla::BitcastConvertType we currently
    // only lower if both input and output types are int or float and have same width
    
    def : Pat<(TF_BitcastOp:$res MHLO_Tensor:$arg),
              (MHLO_BitcastConvertOp $arg),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/build.go

    	}
    	m.Versions = v
    	m.Origin = mergeOrigin(m.Origin, origin)
    }
    
    // addRetraction fills in m.Retracted if the module was retracted by its author.
    // m.Error is set if there's an error loading retraction information.
    func addRetraction(ctx context.Context, m *modinfo.ModulePublic) {
    	if m.Version == "" {
    		return
    	}
    
    	err := CheckRetractions(ctx, module.Version{Path: m.Path, Version: m.Version})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/rulegen.go

    	val = val[1 : len(val)-1] // remove ()
    
    	// Split val up into regions.
    	// Split by spaces/tabs, except those contained in (), {}, [], or <>.
    	s := split(val)
    
    	// Extract restrictions and args.
    	op = s[0]
    	for _, a := range s[1:] {
    		switch a[0] {
    		case '<':
    			typ = a[1 : len(a)-1] // remove <>
    		case '[':
    			auxint = a[1 : len(a)-1] // remove []
    		case '{':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

            return isNoValueSupplier(getConventionSupplier());
        }
    
        private boolean isNoValueSupplier(CollectionSupplier<T, C> valueSupplier) {
            // Cannot use plain NoValueSupplier because of Java restrictions:
            // a generic type [AbstractCollectionProperty<T, C>.]NoValueSupplier cannot be used in instanceof.
            return valueSupplier instanceof AbstractCollectionProperty<?, ?>.NoValueSupplier;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  10. plugin/pkg/admission/serviceaccount/admission.go

    		return s.limitEphemeralContainerSecretReferences(pod, a)
    	}
    
    	if a.GetOperation() != admission.Create {
    		// we only validate pod specs during create requests
    		return nil
    	}
    
    	// Mirror pods have restrictions on what they can reference
    	if _, isMirrorPod := pod.Annotations[api.MirrorPodAnnotationKey]; isMirrorPod {
    		if len(pod.Spec.ServiceAccountName) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top