Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for completeness (0.16 sec)

  1. 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)
  2. 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)
  3. src/main/java/jcifs/smb1/netbios/NbtAddress.java

     * href="../../../nbtcodes.html">Here</a> is
     * a fairly complete list of NetBIOS hex codes. Scope is not used but is
     * still functional in other NetBIOS products and so for completeness it has been
     * implemented. A <code>scope</code> of <code>null</code> or <code>""</code>
     * signifies no scope.
     *
     * @param host the name to resolve
     * @param type the hex code of the name
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 30.1K bytes
    - Viewed (0)
  4. 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` -&gt; `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)
  5. 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)
  6. 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)
Back to top