Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 369 for practice (0.39 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/sets/int64.go

    func (s1 Int64) IsSuperset(s2 Int64) bool {
    	return cast(s1).IsSuperset(cast(s2))
    }
    
    // Equal returns true if and only if s1 is equal (as a set) to s2.
    // Two sets are equal if their membership is identical.
    // (In practice, this means same elements, order doesn't matter)
    func (s1 Int64) Equal(s2 Int64) bool {
    	return cast(s1).Equal(cast(s2))
    }
    
    // List returns the contents as a sorted int64 slice.
    func (s Int64) List() []int64 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/sets/string.go

    func (s1 String) IsSuperset(s2 String) bool {
    	return cast(s1).IsSuperset(cast(s2))
    }
    
    // Equal returns true if and only if s1 is equal (as a set) to s2.
    // Two sets are equal if their membership is identical.
    // (In practice, this means same elements, order doesn't matter)
    func (s1 String) Equal(s2 String) bool {
    	return cast(s1).Equal(cast(s2))
    }
    
    // List returns the contents as a sorted string slice.
    func (s String) List() []string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 20 03:47:18 UTC 2022
    - 4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/versions/gover.go

    // A gover is a parsed Go gover: major[.Minor[.Patch]][kind[pre]]
    // The numbers are the original decimal strings to avoid integer overflows
    // and since there is very little actual math. (Probably overflow doesn't matter in practice,
    // but at the time this code was written, there was an existing test that used
    // go1.99999999999, which does not fit in an int on 32-bit platforms.
    // The "big decimal" representation avoids the problem entirely.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  4. src/os/env_test.go

    // See https://golang.org/issue/49886.
    func TestEnvironConsistency(t *testing.T) {
    	t.Parallel()
    
    	for _, kv := range Environ() {
    		i := strings.Index(kv, "=")
    		if i == 0 {
    			// We observe in practice keys with a single leading "=" on Windows.
    			// TODO(#49886): Should we consume only the first leading "=" as part
    			// of the key, or parse through arbitrarily many of them until a non-=,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 04 15:31:54 UTC 2023
    - 5K bytes
    - Viewed (0)
  5. docs/compression/README.md

     | `application/x-xz`       |
    
    All files with these extensions and mime types are excluded from compression,
    even if compression is enabled for all types.
    
    ## To test the setup
    
    To test this setup, practice put calls to the server using `mc` and use `mc ls` on
    the data directory to view the size of the object.
    
    ## Explore Further
    
    - [Use `mc` with MinIO Server](https://min.io/docs/minio/linux/reference/minio-mc.html)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 11 11:55:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. src/go/internal/gccgoimporter/ar.go

    // object in the archive containing export data, which is not quite
    // what gccgo does; gccgo concatenates together all the export data
    // for all the objects in the file.  In practice that case does not arise.
    func arExportData(archive io.ReadSeeker) (io.ReadSeeker, error) {
    	if _, err := archive.Seek(0, io.SeekStart); err != nil {
    		return nil, err
    	}
    
    	var buf [len(armag)]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 14:14:36 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/cluster_scoping_pass.cc

    // conjunction preserves the semantic of the old scope (i.e., the node still
    // cannot be merged with the previously incompatible nodes.)
    //
    // For example, the below case should be rare in practice but can serve for the
    // purpose of discussion.  After adding scopes for both Stage and Unstage,
    // Node_Y will receive both scopes "unstage" and "stage", while Node_X receives
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. src/image/gif/reader.go

    		if b.err != nil {
    			return 0, b.err
    		}
    	}
    
    	c := b.d.tmp[b.i]
    	b.i++
    	return c, nil
    }
    
    // blockReader must implement io.Reader, but its Read shouldn't ever actually
    // be called in practice. The compress/lzw package will only call [blockReader.ReadByte].
    func (b *blockReader) Read(p []byte) (int, error) {
    	if len(p) == 0 || b.err != nil {
    		return 0, b.err
    	}
    	if b.i == b.j {
    		b.fill()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  9. guava-testlib/test/com/google/common/testing/GcFinalizationTest.java

          Thread.interrupted();
        }
      }
    
      /**
       * awaitFullGc() is not quite as reliable a way to ensure calling of a specific finalize method as
       * the more direct await* methods, but should be reliable enough in practice to avoid flakiness of
       * this test. (And if it isn't, we'd like to know about it first!)
       */
      public void testAwaitFullGc() {
        final CountDownLatch finalizerRan = new CountDownLatch(1);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. docs/hotfixes.md

    Once the **patch** is successfully applied, developer must run tests to validate the fix that was backported by running following tests, locally.
    
    Unit tests
    
    ```
    λ make test
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 14 21:36:02 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top