Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 424 for distinguish (0.21 sec)

  1. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy_test.go

    	rbacv1helpers.NewRule(bootstrappolicy.Read...).Groups("").Resources("services/proxy").RuleOrDie(),
    }
    
    // ungettableResources is the list of rules that don't allow to view (GET) them
    // this is purposefully separate list to distinguish from escalating privs
    var ungettableResources = []rbacv1.PolicyRule{
    	rbacv1helpers.NewRule(bootstrappolicy.Read...).Groups("apps", "extensions").Resources("deployments/rollback").RuleOrDie(),
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:45:31 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    	nextMain:      nextComposed,
    }, {
    	form:          NFKD,
    	composing:     false,
    	compatibility: true,
    	info:          lookupInfoNFKC,
    	nextMain:      nextDecomposed,
    }}
    
    // We do not distinguish between boundaries for NFC, NFD, etc. to avoid
    // unexpected behavior for the user.  For example, in NFD, there is a boundary
    // after 'a'.  However, 'a' might combine with modifiers, so from the application's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/discovery/v1/types_swagger_doc_generated.go

    	"conditions":         "conditions contains information about the current status of the endpoint.",
    	"hostname":           "hostname of this endpoint. This field may be used by consumers of endpoints to distinguish endpoints from each other (e.g. in DNS names). Multiple endpoints which use the same hostname should be considered fungible (e.g. multiple A values in DNS). Must be lowercase and pass DNS Label (RFC 1123) validation.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 15:36:48 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // Finally, you are free to instantiate the pattern with the types you
    // want.  If you put the above code in a header file, you can #include
    // it in multiple C++ source files and instantiate it multiple times.
    //
    // To distinguish different instances of the pattern, the first
    // argument to the INSTANTIATE_* macro is a prefix that will be added
    // to the actual test case name.  Remember to pick unique prefixes for
    // different instances.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/request/requestinfo.go

    var specialVerbsNoSubresources = sets.NewString("proxy")
    
    // namespaceSubresources contains subresources of namespace
    // this list allows the parser to distinguish between a namespace subresource, and a namespaced resource
    var namespaceSubresources = sets.NewString("status", "finalize")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 13:24:29 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apps/v1beta2/types.go

    }
    
    // DeploymentSpec is the specification of the desired behavior of the Deployment.
    type DeploymentSpec struct {
    	// Number of desired pods. This is a pointer to distinguish between explicit
    	// zero and not specified. Defaults to 1.
    	// +optional
    	Replicas *int32 `json:"replicas,omitempty" protobuf:"varint,1,opt,name=replicas"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

         * StackOverflowError: We can't reliably call setException(error).
         *
         * - Any kind of Error from a listener. Even if we could distinguish that case (by exposing some
         * extra state from AbstractFuture), our options are limited: A call to setException() would be
         * a no-op. We could log, but if that's what we really want, we should modify
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/AbstractTransformFuture.java

         * StackOverflowError: We can't reliably call setException(error).
         *
         * - Any kind of Error from a listener. Even if we could distinguish that case (by exposing some
         * extra state from AbstractFuture), our options are limited: A call to setException() would be
         * a no-op. We could log, but if that's what we really want, we should modify
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 01 21:46:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DependenciesExtensionModule.java

         *
         * <p>
         * Unfortunately, this method cannot be split into two methods, one for {@link Dependency} and one for {@link DependencyConstraint},
         * because Groovy cannot distinguish between the two.
         * </p>
         *
         * @param dependencyOrDependencyConstraint dependency or dependency constraint to add
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. src/testing/quick/quick_test.go

    	A struct{ B *B }
    	B struct{ A *A }
    )
    
    func TestMutuallyRecursive(t *testing.T) {
    	f := func(a A) bool { return true }
    	Check(f, nil)
    }
    
    // Some serialization formats (e.g. encoding/pem) cannot distinguish
    // between a nil and an empty map or slice, so avoid generating the
    // zero value for these.
    func TestNonZeroSliceAndMap(t *testing.T) {
    	type Q struct {
    		M map[int]int
    		S []int
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 12:54:00 UTC 2019
    - 9K bytes
    - Viewed (0)
Back to top