Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 93 for bark (0.14 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

          regions.push_back(RegionSuccessor(&getBody()));
          regions.push_back(RegionSuccessor());  // branch back to parent, no args
        }
      } else if (!point.isParent() && point == (*this)->getRegion(1)) {
        // 'body' branches back to 'cond'.
        regions.push_back(
            RegionSuccessor(&getCond(), getCond().front().getArguments()));
      } else if (point.isParent()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.4.md

    fail, usually with an error message that will direct you here. If you saw that error, then don't worry, the operation succeeded except for the part where the new replication controller is renamed back to the old name. You can just do another rolling update using kubectl 1.4 or higher to change the name back: look for a replication controller that has the original name plus a random suffix.
    
    Unfortunately, there is a much rarer second possible failure mode: the replication controller gets...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  3. src/database/sql/sql_test.go

    	}
    	if closes < 9 {
    		t.Errorf("closes = %d; want >= 9", closes)
    	}
    }
    
    // TestIssue18429 attempts to stress rolling back the transaction from a
    // context cancel while simultaneously calling Tx.Rollback. Rolling back from a
    // context happens concurrently so tx.rollback and tx.Commit must guard against
    // double entry.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. src/net/http/transport_test.go

    		// read its header. Wait for the bar request to block in Dial, then
    		// let the foo response finish so we can use its connection for /bar.
    
    		if mode == http2Mode {
    			// In HTTP/2 mode, the second Dial won't happen because the protocol
    			// multiplexes the streams by default. Just sleep for an arbitrary time;
    			// the test should pass regardless of how far the bar request gets by this
    			// point.
    			select {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  5. src/cmd/go/alldocs.go

    // made up of a keyword followed by arguments. For example:
    //
    //	go 1.18
    //
    //	use ../foo/bar
    //	use ./baz
    //
    //	replace example.com/foo v1.2.3 => example.com/bar v1.4.5
    //
    // The leading keyword can be factored out of adjacent lines to create a block,
    // like in Go imports.
    //
    //	use (
    //	  ../foo/bar
    //	  ./baz
    //	)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  6. pkg/volume/util/operationexecutor/operation_generator.go

    			err = volumeDetacher.Detach(volumeName, volumeToDetach.NodeName)
    		}
    
    		migrated := getMigratedStatusBySpec(volumeToDetach.VolumeSpec)
    
    		if err != nil {
    			// On failure, mark the volume as uncertain. Attach() must succeed before adding the volume back
    			// to node status as attached.
    			uncertainError := actualStateOfWorld.MarkVolumeAsUncertain(
    				logger, volumeToDetach.VolumeName, volumeToDetach.VolumeSpec, volumeToDetach.NodeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    	eventedPlegRelistPeriod     = time.Second * 300
    	eventedPlegRelistThreshold  = time.Minute * 10
    	eventedPlegMaxStreamRetries = 5
    
    	// backOffPeriod is the period to back off when pod syncing results in an
    	// error. It is also used as the base period for the exponential backoff
    	// container restarts and image pulls.
    	backOffPeriod = time.Second * 10
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. cmd/object-handlers_test.go

    	objectName := "test-object"
    	// set of byte data for PutObject.
    	// object has to be created before running tests for HeadObject.
    	// this is required even to assert the HeadObject data,
    	// since dataInserted === dataFetched back is a primary criteria for any object storage this assertion is critical.
    	bytesData := []struct {
    		byteData []byte
    	}{
    		{generateBytesData(6 * humanize.MiByte)},
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  9. src/net/http/server.go

    	return cw.res.conn.bufw.Flush()
    }
    
    func (cw *chunkWriter) close() {
    	if !cw.wroteHeader {
    		cw.writeHeader(nil)
    	}
    	if cw.chunking {
    		bw := cw.res.conn.bufw // conn's bufio writer
    		// zero chunk to mark EOF
    		bw.WriteString("0\r\n")
    		if trailers := cw.res.finalTrailers(); trailers != nil {
    			trailers.Write(bw) // the writer handles noting errors
    		}
    		// final blank line after the trailers (whether
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

                                                        hlo_filter_shape.end());
          tf_filter_shape[2] = input_channels;
          tf_filter_shape[3] = hlo_filter_shape.back() / input_channels;
          auto reshaped_filter = rewriter.create<mhlo::ReshapeOp>(
              rhs.getLoc(),
              RankedTensorType::get(tf_filter_shape, filter_type.getElementType()),
              rhs);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
Back to top