Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 240 for equivalently (0.34 sec)

  1. src/cmd/link/internal/sym/compilation_unit.go

    // together. Since all Go sources in a Go package are compiled together,
    // there's one CompilationUnit per package that represents all Go sources in
    // that package, plus one for each assembly file.
    //
    // Equivalently, there's one CompilationUnit per object file in each Library
    // loaded by the linker.
    //
    // These are used for both DWARF and pclntab generation.
    type CompilationUnit struct {
    	Lib       *Library      // Our library
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 20:39:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/graph/BaseGraph.java

       * @since 24.0
       */
      Set<EndpointPair<N>> incidentEdges(N node);
    
      /**
       * Returns the count of {@code node}'s incident edges, counting self-loops twice (equivalently,
       * the number of times an edge touches {@code node}).
       *
       * <p>For directed graphs, this is equal to {@code inDegree(node) + outDegree(node)}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/graph/BaseGraph.java

       * @since 24.0
       */
      Set<EndpointPair<N>> incidentEdges(N node);
    
      /**
       * Returns the count of {@code node}'s incident edges, counting self-loops twice (equivalently,
       * the number of times an edge touches {@code node}).
       *
       * <p>For directed graphs, this is equal to {@code inDegree(node) + outDegree(node)}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/matching/matching.go

    	equivalents := o.GetEquivalentResourceMapper().EquivalentResourcesFor(attr.GetResource(), attr.GetSubresource())
    	for _, namedRule := range namedRules {
    		for _, equivalent := range equivalents {
    			if equivalent == attr.GetResource() {
    				// we have already checked the original resource
    				continue
    			}
    			attrWithOverride.resource = equivalent
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/generic/webhook.go

    		attrWithOverride := &attrWithResourceOverride{Attributes: attr}
    		equivalents := o.GetEquivalentResourceMapper().EquivalentResourcesFor(attr.GetResource(), attr.GetSubresource())
    		// honor earlier rules first
    	OuterLoop:
    		for _, r := range h.GetRules() {
    			// see if the rule matches any of the equivalent resources
    			for _, equivalent := range equivalents {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/running-builds/introduction/command_line_interface_basics.adoc

    ----
    gradle [...] --build-cache
    gradle [...] --no-build-cache
    ----
    
    Many long-form options have short-option equivalents. The following are equivalent:
    
    ----
    gradle --help
    gradle -h
    ----
    
    == Command-line usage
    
    The following sections describe the use of the Gradle command-line interface.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. docs/fr/docs/benchmarks.md

    ## Tests de performance et rapidité
    
    Lorsque vous vérifiez les tests de performance, il est commun de voir plusieurs outils de différents types comparés comme équivalents.
    
    En particulier, on voit Uvicorn, Starlette et FastAPI comparés (parmi de nombreux autres outils).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:49:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. pkg/apis/admissionregistration/v1/defaults_test.go

    	_ "k8s.io/kubernetes/pkg/apis/admissionregistration/install"
    	utilpointer "k8s.io/utils/pointer"
    )
    
    func TestDefaultAdmissionWebhook(t *testing.T) {
    	fail := v1.Fail
    	equivalent := v1.Equivalent
    	never := v1.NeverReinvocationPolicy
    	ten := int32(10)
    	allScopes := v1.AllScopes
    
    	tests := []struct {
    		name     string
    		original runtime.Object
    		expected runtime.Object
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/MethodsTest.groovy

            expect:
            !SIGNATURE_EQUIVALENCE.equivalent(takeObjReturnStr, takeIntReturnInt)
            SIGNATURE_EQUIVALENCE.hash(takeObjReturnStr) != SIGNATURE_EQUIVALENCE.hash(takeIntReturnInt)
    
            SIGNATURE_EQUIVALENCE.equivalent(takeObjReturnObj, takeObjReturnStr)
            SIGNATURE_EQUIVALENCE.hash(takeObjReturnObj) == SIGNATURE_EQUIVALENCE.hash(takeObjReturnStr)
    
            SIGNATURE_EQUIVALENCE.equivalent(takeObjReturnObj, takeObjReturnObj)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  10. pkg/apis/admissionregistration/v1alpha1/defaults_test.go

    	"k8s.io/kubernetes/pkg/api/legacyscheme"
    	_ "k8s.io/kubernetes/pkg/apis/admissionregistration/install"
    )
    
    func TestDefaultAdmissionPolicy(t *testing.T) {
    	fail := v1alpha1.Fail
    	equivalent := v1alpha1.Equivalent
    	allScopes := v1alpha1.AllScopes
    
    	tests := []struct {
    		name     string
    		original runtime.Object
    		expected runtime.Object
    	}{
    		{
    			name: "ValidatingAdmissionPolicy",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:09 UTC 2023
    - 4.8K bytes
    - Viewed (0)
Back to top