Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 108 for small7 (0.12 sec)

  1. src/runtime/mgcmark.go

    // condition.
    //
    //go:nowritebarrierrec
    func gcFlushBgCredit(scanWork int64) {
    	if work.assistQueue.q.empty() {
    		// Fast path; there are no blocked assists. There's a
    		// small window here where an assist may add itself to
    		// the blocked queue and park. If that happens, we'll
    		// just get it on the next flush.
    		gcController.bgScanCredit.Add(scanWork)
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Iterators.java

          checkNotNull(input);
        }
        return concat(consumingForArray(inputs));
      }
    
      /**
       * Divides an iterator into unmodifiable sublists of the given size (the final list may be
       * smaller). For example, partitioning an iterator containing {@code [a, b, c, d, e]} with a
       * partition size of 3 yields {@code [[a, b, c], [d, e]]} -- an outer iterator containing two
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Iterators.java

          checkNotNull(input);
        }
        return concat(consumingForArray(inputs));
      }
    
      /**
       * Divides an iterator into unmodifiable sublists of the given size (the final list may be
       * smaller). For example, partitioning an iterator containing {@code [a, b, c, d, e]} with a
       * partition size of 3 yields {@code [[a, b, c], [d, e]]} -- an outer iterator containing two
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. src/runtime/pprof/pprof_test.go

    	exe, err := os.Executable()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	heap := 1 << 30
    	if runtime.GOOS == "android" {
    		// Use smaller size for Android to avoid crash.
    		heap = 100 << 20
    	}
    	if runtime.GOOS == "windows" && runtime.GOARCH == "arm" {
    		// Use smaller heap for Windows/ARM to avoid crash.
    		heap = 100 << 20
    	}
    	if testing.Short() {
    		heap = 100 << 20
    	}
    	// This makes fork slower.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  5. cmd/object-api-multipart_test.go

    	}{
    		// inputParts - 0.
    		// Case for replicating ETag mismatch.
    		{
    			[]CompletePart{
    				{ETag: "abcd", PartNumber: 1},
    			},
    		},
    		// inputParts - 1.
    		// should error out with part too small.
    		{
    			[]CompletePart{
    				{ETag: "e2fc714c4727ee9395f324cd2e7f331f", PartNumber: 1},
    				{ETag: "1f7690ebdd9b4caf8fab49ca1757bf27", PartNumber: 2},
    			},
    		},
    		// inputParts - 2.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_test.cc

      TestEncodeDecode(__LINE__, {"hello"});
      TestEncodeDecode(__LINE__,
                       {"the", "quick", "brown", "fox", "jumped", "over"});
    
      string big(1000, 'a');
      TestEncodeDecode(__LINE__, {"small", big, "small2"});
    }
    
    TEST(CAPI, SessionOptions) {
      TF_SessionOptions* opt = TF_NewSessionOptions();
      TF_DeleteSessionOptions(opt);
    }
    
    TEST(CAPI, DeprecatedSession) {
      TF_Status* s = TF_NewStatus();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go

    	{30, "EROFS", "read-only file system"},
    	{31, "EMLINK", "too many links"},
    	{32, "EPIPE", "broken pipe"},
    	{33, "EDOM", "numerical argument out of domain"},
    	{34, "ERANGE", "result too large or too small"},
    	{35, "EAGAIN", "resource temporarily unavailable"},
    	{36, "EINPROGRESS", "operation now in progress"},
    	{37, "EALREADY", "operation already in progress"},
    	{38, "ENOTSOCK", "socket operation on non-socket"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 72.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/deadness_analysis.cc

      // controlling the start and end of a processing frame.
      absl::flat_hash_map<absl::string_view, std::vector<Node*>>
          ready_enters_per_frame;
      // Exit nodes shall all be from the same frame, as we process a frame at a
      // time. So, one vector is enough.
      std::vector<Node*> ready_exits;
      while (!ready.empty()) {
        Node* curr_node = ready.front();
        ready.pop_front();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        return success();
      }
    };
    
    // Rewrites `TensorListResize` op into a functional `If` op and several basic
    // TF ops to match the op semantics of Tensorflow. Basically, it does:
    // 1) If the requested size is smaller or equal than the input tensorlist's
    // size, rewrite it to a Slice op so that only the first 'size' rows are
    // returned. 2) If the requested size is larger than the input tensorlist's
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  10. src/strings/strings_test.go

    			EqualFold(s1+"αβδ", s2+"ΑΒΔ")
    		}
    	})
    }
    
    var CountTests = []struct {
    	s, sep string
    	num    int
    }{
    	{"", "", 1},
    	{"", "notempty", 0},
    	{"notempty", "", 9},
    	{"smaller", "not smaller", 0},
    	{"12345678987654321", "6", 2},
    	{"611161116", "6", 3},
    	{"notequal", "NotEqual", 0},
    	{"equal", "equal", 1},
    	{"abc1231231123q", "123", 3},
    	{"11111", "11", 2},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 12:58:37 UTC 2024
    - 53K bytes
    - Viewed (0)
Back to top