Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 460 for FILL (0.11 sec)

  1. android/guava-tests/test/com/google/common/io/ByteStreamsTest.java

        Arrays.fill(b, (byte) 0);
        ByteStreams.readFully(newTestStream(10), b, 0, 0);
        assertThat(b).isEqualTo(new byte[10]);
    
        Arrays.fill(b, (byte) 0);
        ByteStreams.readFully(newTestStream(10), b, 0, 10);
        assertThat(b).isEqualTo(newPreFilledByteArray(10));
    
        Arrays.fill(b, (byte) 0);
        ByteStreams.readFully(newTestStream(10), b, 0, 5);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.9K bytes
    - Viewed (0)
  2. pkg/ctrlz/assets/static/css/all.css

        padding-top: .2em;
        padding-bottom: .2em
    }
    
    header .navbar .logo {
        width: 2em;
        top: 3px;
        left: 1.3em;
        position: fixed;
        fill: #fff
    }
    
    header .navbar .logo circle {
        fill: #466BB0;
        stroke: #fff
    }
    
    @media (min-width: 768px) {
        header .navbar .logo {
            width: 3em;
            left: 0.8em
        }
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/module.cc

    #include "tensorflow/core/protobuf/saved_object_graph.pb.h"
    namespace tf {
    namespace libtf {
    namespace impl {
    
    using tensorflow::libexport::TFPackage;
    using tf::libtf::runtime::Runtime;
    
    // TODO(danielellis): Fill in with implementations.
    
    // Builds a vector of runtime representations of `SavedObject`s from a
    // SavedModel. These are returned as a flat list.  The full hierarchy building
    // and initialization should be done in a later pass.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 02 20:02:30 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval_test.go

    				// The interval buffer can be empty either when received is
    				// either a multiple of bufferSize (after one complete fill)
    				// or when received is equal to the number of expected events.
    				// The latter happens when partial filling occurs and no more
    				// events are left post the partial fill.
    				if wci.buffer.isEmpty() != (i%bufferSize == 0 || i == numExpectedEvents) {
    					t.Error("expected empty interval buffer")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/delete.go

    		//nolint: staticcheck
    		if !wasDeleted && options.OrphanDependents != nil && !*options.OrphanDependents {
    			status = http.StatusAccepted
    		}
    		// if the rest.Deleter returns a nil object, fill out a status. Callers may return a valid
    		// object with the response.
    		if result == nil {
    			result = &metav1.Status{
    				Status: metav1.StatusSuccess,
    				Code:   int32(status),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:32 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/RegularImmutableMap.java

           * size to 2^8 - 1. However, due to a load factor < 1 the limit is never approached.
           */
          byte[] hashTable = new byte[tableSize];
          Arrays.fill(hashTable, ABSENT);
    
          int outI = 0;
          entries:
          for (int i = 0; i < n; i++) {
            int keyIndex = 2 * i + keyOffset;
            int outKeyIndex = 2 * outI + keyOffset;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 15 22:32:14 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  7. okhttp-testing-support/src/main/kotlin/okhttp3/TestUtilJvm.kt

        return List(elements.size / 2) { Header(elements[it * 2]!!, elements[it * 2 + 1]!!) }
      }
    
      @JvmStatic
      fun repeat(
        c: Char,
        count: Int,
      ): String {
        val array = CharArray(count)
        Arrays.fill(array, c)
        return String(array)
      }
    
      /**
       * Okio buffers are internally implemented as a linked list of arrays. Usually this implementation
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/testing-database.md

    You could want to set up a different database for testing, rollback the data after the tests, pre-fill it with some testing data, etc.
    
    The main idea is exactly the same you saw in that previous chapter.
    
    ## Add tests for the SQL app
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  9. src/internal/bytealg/count_ppc64x.s

    // On exit:
    // R3: return value
    TEXT countbytebody<>(SB), NOSPLIT|NOFRAME, $0-0
    	MOVD	$0, R18 // byte count
    
    #ifndef GOPPC64_power10
    	RLDIMI	$8, R5, $48, R5
    	RLDIMI	$16, R5, $32, R5
    	RLDIMI	$32, R5, $0, R5	// fill reg with the byte to count
    #endif
    
    	CMPU	R4, $32		// Check if it's a small string (<32 bytes)
    	BLT	tail		// Jump to the small string case
    	SRD	$5, R4, R20
    	MOVD	R20, CTR
    	MOVD	$16, R21
    	XXLXOR	V4, V4, V4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 20:30:44 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. src/cmd/fix/main_test.go

    	Name    string
    	Fn      func(*ast.File) bool
    	Version string
    	In      string
    	Out     string
    }
    
    var testCases []testCase
    
    func addTestCases(t []testCase, fn func(*ast.File) bool) {
    	// Fill in fn to avoid repetition in definitions.
    	if fn != nil {
    		for i := range t {
    			if t[i].Fn == nil {
    				t[i].Fn = fn
    			}
    		}
    	}
    	testCases = append(testCases, t...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 05:31:47 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top