Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 43 for completeness (0.16 sec)

  1. src/net/http/routing_tree_test.go

    		},
    		{
    			"host3",
    			hostTree, "b.com", "/bar",
    			"PUT",
    		},
    		{
    			// This case shouldn't come up because we only call matchingMethods
    			// when there was no match, but we include it for completeness.
    			"empty",
    			buildTree("/"), "", "/",
    			"",
    		},
    	} {
    		t.Run(test.name, func(t *testing.T) {
    			ms := map[string]bool{}
    			test.tree.matchingMethods(test.host, test.path, ms)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. pkg/config/analysis/README.md

    generate messages and that good entries do not.
    
    Since the analysis is tightly scoped and the YAML isn't checked for completeness, it's OK to partially specify the
    resources in YAML to keep the test cases as simple and legible as possible.
    
    Note that this test framework will also verify that the resources requested in testing match the resources listed as
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/appendixa_test.go

    	"k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes"
    
    	"github.com/google/go-cmp/cmp"
    )
    
    // TestAppendixA roundtrips the examples of encoded CBOR data items in RFC 8949 Appendix A. For
    // completeness, all examples from the appendix are included, even those those that are rejected by
    // this decoder or are re-encoded to a different sequence of CBOR bytes (with explanation).
    func TestAppendixA(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 18:59:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. pkg/controller/statefulset/stateful_set_utils_test.go

    					Controller: ptr.To(true),
    				},
    			},
    			shouldReportUnexpectedController: true,
    		},
    		{
    			// API validation should prevent two controllers from being set,
    			// but for completeness it is still tested.
    			name: "own controller and another",
    			refs: []metav1.OwnerReference{
    				{
    					APIVersion: "v1",
    					Kind:       "Pod",
    					Name:       "pod",
    					UID:        "pod-uid",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/decode_test.go

    		want          interface{}
    		assertOnError func(t *testing.T, e error)
    
    		// TODO: Some failing test cases are included for completeness. The next library
    		// minor version should allow them all to be fixed. In the meantime, this field
    		// explains the behavior reason for a particular failure.
    		fixme string
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 18:43:10 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    * Avoid dependencies that pull in legacy libraries.
    * Upgrade the dependency version if the new version no longer pulls in a legacy library.
    * Downgrade to `google-collections`. It's not recommended, just mentioned for completeness.
    
    Traditional approaches work but they are not general enough.
    For example, an organisation wants to resolve the `google-collections` -> `guava` conflict resolution problem in all projects.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  7. hack/lib/golang.sh

      # OS X, in bytes. Note that get_physmem, as used, should only ever
      # run in a Linux container (because it's only used in the multiple
      # platform case, which is a Dockerized build), but this is provided
      # for completeness.
      if mem=$(sysctl -n hw.memsize 2>/dev/null); then
        echo $(( mem / 1073741824 ))
        return
      fi
    
      # If we can't infer it, just give up and assume a low memory system
      echo 1
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 16:43:08 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  8. pkg/controller/garbagecollector/graph_builder.go

    	if a.Namespace != b.Namespace {
    		return a.Namespace < b.Namespace
    	}
    	// name is more significant than uid
    	if a.Name != b.Name {
    		return a.Name < b.Name
    	}
    	// uid is included for completeness, but is expected to be identical
    	// when getting alternate identities for an owner since they are keyed by uid
    	if a.UID != b.UID {
    		return a.UID < b.UID
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  9. docs/changelogs/changelog_3x.md

        Module System.
     *  New: Log gzipped bodies when `HttpLoggingInterceptor` is used as a network
        interceptor.
     *  New: `Protocol.QUIC` constant. This protocol is not supported but this
        constant is included for completeness.
     *  New: Upgrade to Okio 1.14.0.
    
         ```xml
         <dependency>
           <groupId>com.squareup.okio</groupId>
           <artifactId>okio</artifactId>
           <version>1.14.0</version>
         </dependency>
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/buildlist.go

    //     an explicit package pattern is included as a root. This follows directly
    //     from (1): packages matching explicit package patterns are marked with
    //     pkgIsRoot.
    //
    //  3. (The completeness invariant.) Every module that contributed any package
    //     to the build is required by either the main module or one of the modules
    //     it requires explicitly. This invariant is left up to the caller, who must
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top