Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 246 for retractions (0.19 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. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/resources.go

    	"k8s.io/client-go/rest"
    	"k8s.io/client-go/restmapper"
    	"k8s.io/client-go/scale"
    )
    
    const (
    	noxuInstanceNum int64 = 9223372036854775807
    )
    
    // AllowAllSchema doesn't enforce any schema restrictions
    func AllowAllSchema() *apiextensionsv1.CustomResourceValidation {
    	return &apiextensionsv1.CustomResourceValidation{
    		OpenAPIV3Schema: &apiextensionsv1.JSONSchemaProps{
    			XPreserveUnknownFields: pointer.BoolPtr(true),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 02:01:40 UTC 2021
    - 21.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. src/cmd/go/testdata/script/README

    mkdir path...
    	create directories, if they do not already exist
    
    	Unlike Unix mkdir, parent directories are always created if
    	needed.
    
    mv old new
    	rename a file or directory to a new path
    
    	OS-specific restrictions may apply when old and new are in
    	different directories.
    
    replace [old new]... file
    	replace strings in a file
    
    	The 'old' and 'new' arguments are unquoted as if in quoted
    	Go strings.
    
    rm path...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/certificates/v1/types.go

    	//  2. Permitted subjects: and behavior when a disallowed subject is requested.
    	//  3. Required, permitted, or forbidden x509 extensions in the request (including whether subjectAltNames are allowed, which types, restrictions on allowed values) and behavior when a disallowed extension is requested.
    	//  4. Required, permitted, or forbidden key usages / extended key usages.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. 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)
  7. tensorflow/c/c_test_util.cc

      values[0] = v;
      return TF_NewTensor(TF_FLOAT, nullptr, 0, values, num_bytes,
                          &FloatDeallocator, nullptr);
    }
    
    // All the *Helper methods are used as a workaround for the restrictions that
    // one cannot call ASSERT_* methods in non-void-returning functions (when
    // exceptions are disabled during compilation)
    void PlaceholderHelper(TF_Graph* graph, TF_Status* s, const char* name,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 15 03:16:52 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  8. 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)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/NodeBackedModelMap.java

                    return new NodeInitializer() {
                        @Override
                        public Multimap<ModelActionRole, ModelAction> getActions(ModelReference<?> subject, ModelRuleDescriptor descriptor) {
                            return ImmutableSetMultimap.<ModelActionRole, ModelAction>builder()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 23K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/types.go

    	// OmitStages is a list of stages for which no events are created. Note that this can also
    	// be specified policy wide in which case the union of both are omitted.
    	// An empty list means no restrictions will apply.
    	// +optional
    	// +listType=atomic
    	OmitStages []Stage `json:"omitStages,omitempty" protobuf:"bytes,8,rep,name=omitStages"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:24:10 UTC 2023
    - 14.5K bytes
    - Viewed (0)
Back to top