Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 109 for while_1 (0.15 sec)

  1. src/cmd/go/alldocs.go

    // different sets of packages. If a package matches patterns given in
    // multiple flags, the latest match on the command line wins.
    // For example, 'go build -gcflags=-S fmt' prints the disassembly
    // only for package fmt, while 'go build -gcflags=all=-S fmt'
    // prints the disassembly for fmt and all its dependencies.
    //
    // For more about specifying packages, see 'go help packages'.
    // For more about where packages and binaries are installed,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. cmd/site-replication.go

    		}
    	}
    
    	// leave some gaps in priority numbers for flexibility
    	return maxPrio + 10
    }
    
    // returns a slice with site names participating in site replciation but unspecified while adding
    // a new site.
    func getMissingSiteNames(oldDeps, newDeps set.StringSet, currSites []madmin.PeerInfo) []string {
    	diff := oldDeps.Difference(newDeps)
    	var diffSlc []string
    	for _, v := range currSites {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_node_status_test.go

    	require.NoError(t, err)
    
    	for i, cond := range updatedNode.Status.Conditions {
    		old := metav1.Date(2012, 1, 1, 0, 0, 0, 0, time.UTC).Time
    		// Expect LastHearbeat to be updated to Now, while LastTransitionTime to be the same.
    		assert.NotEqual(t, old, cond.LastHeartbeatTime.Rfc3339Copy().UTC(), "LastHeartbeatTime for condition %v", cond.Type)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

                }
              } else {
                val buf = ByteArray(if (writeKind == WriteKind.SMALL_BUFFERS) 256 else 64 * 1024)
                Arrays.fill(buf, 'x'.code.toByte())
                var i = 0
                while (i < n) {
                  sink.write(buf, 0, Math.min(buf.size, n - i))
                  i += buf.size
                }
              }
            }
          }
        val response =
          getResponse(
            Request(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  5. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    fro about its Axis, this Image will be made to move up and down the Board _de_, and by this means all its parts from one end to the other may be made to pass successively through the hole _g_ which is made in the middle of that Board. In the mean while another Prism _abc_ is to be fixed next after that hole _g_, to refract the trajected Light a second time. And these things being thus ordered, I marked the places M and N of the opposite Wall upon which the refracted Light fell, and found that whilst...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    				t.Errorf("server timed out reading request body: got err %v; want os.ErrDeadlineExceeded", err)
    			}
    			res.Write([]byte(respBody))
    		}), func(ts *httptest.Server) {
    			ts.Config.ReadHeaderTimeout = -1 // don't time out while reading headers
    			ts.Config.ReadTimeout = timeout
    			t.Logf("Server.Config.ReadTimeout = %v", timeout)
    		})
    
    		var retries atomic.Int32
    		cst.c.Transport.(*Transport).Proxy = func(*Request) (*url.URL, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    //
    // Pointer-typed fields may point to one of many different types. It's
    // up to the caller to provide a pointer to the appropriate type, cast
    // to Pointer. The caller must obey the unsafe.Pointer rules while
    // doing so.
    type Pointer *struct{}
    
    // Invented values to support what package os expects.
    type Timeval struct {
    	Sec  int32
    	Usec int32
    }
    
    func (tv *Timeval) Nanoseconds() int64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    				{Name: "F2", Type: ArrayOf(3, t1)},
    			},
    		},
    		{
    			shouldPanic: true, // overflow while aligning F2
    			fields: []StructField{
    				{Name: "F1", Type: bigType},
    				{Name: "F2", Type: t4},
    			},
    		},
    		{
    			shouldPanic: true, // overflow while adding trailing byte for zero-sized fields
    			fields: []StructField{
    				{Name: "F1", Type: bigType},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CallTest.kt

          override fun contentLength(): Long {
            return if (chunked) -1L else size
          }
    
          override fun writeTo(sink: BufferedSink) {
            var count = 0
            while (count < size) {
              sink.write(buffer, 0, Math.min(size - count, writeSize.toLong()).toInt())
              count += writeSize
            }
          }
        }
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/ops.mlir

    }
    
    func.func @main(%arg0: tensor<i32>, %arg1: tensor<1xf32>) -> tensor<i32> {
      // expected-error @+1 {{number of operands does not match number of results}}
      %0:1 = "tfl.while"(%arg0, %arg1) ({
      ^bb0(%arg2: tensor<*xi32>, %arg3: tensor<*xf32>):
        %1 = func.call @WhileOp_cond(%arg2, %arg3) : (tensor<*xi32>, tensor<*xf32>) -> tensor<i1>
        "tfl.yield"(%1) : (tensor<i1>) -> ()
      },  {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
Back to top