Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 84 for writing (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. pkg/proxy/ipvs/proxier_test.go

    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
    
        http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    	}
    	v := ValueOf(int64(0))
    	if allocs := testing.AllocsPerRun(100, func() { v.Interface() }); allocs > 0 {
    		t.Error("allocs:", allocs)
    	}
    }
    
    // An exhaustive is a mechanism for writing exhaustive or stochastic tests.
    // The basic usage is:
    //
    //	for x.Next() {
    //		... code using x.Maybe() or x.Choice(n) to create test cases ...
    //	}
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. src/database/sql/sql_test.go

    }
    
    func (db *DB) numDeps() int {
    	db.mu.Lock()
    	defer db.mu.Unlock()
    	return len(db.dep)
    }
    
    // Dependencies are closed via a goroutine, so this polls waiting for
    // numDeps to fall to want, waiting up to nearly the test's deadline.
    func (db *DB) numDepsPoll(t *testing.T, want int) int {
    	var n int
    	waitCondition(t, func() bool {
    		n = db.numDeps()
    		return n <= want
    	})
    	return n
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. src/database/sql/sql.go

    	Idle            int // The number of idle connections.
    
    	// Counters
    	WaitCount         int64         // The total number of connections waited for.
    	WaitDuration      time.Duration // The total time blocked waiting for a new connection.
    	MaxIdleClosed     int64         // The total number of connections closed due to SetMaxIdleConns.
    	MaxIdleTimeClosed int64         // The total number of connections closed due to SetConnMaxIdleTime.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  6. cmd/metrics-v2.go

    func getNodeDriveWaitingIOMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: driveSubsystem,
    		Name:      "io_waiting",
    		Help:      "Total number I/O operations waiting on drive",
    		Type:      counterMetric,
    	}
    }
    
    func getNodeDriveFreeBytesMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: driveSubsystem,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    // breaks the write up into ≥blockSize chunks to write them out, and schedules
    // as many goroutines as necessary to accomplish this task. This call then
    // blocks, waiting on the writes to complete. Note that we use the sem parameter
    // to limit the number of concurrent writes taking place.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. src/debug/elf/elf.go

     * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     * SUCH DAMAGE.
     */
    
    package elf
    
    import "strconv"
    
    /*
     * Constants
     */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    // loadPackageData have completed. The preloader will not make any new calls
    // to loadPackageData.
    func (pre *preload) flush() {
    	// flush is usually deferred.
    	// Don't hang program waiting for workers on panic.
    	if v := recover(); v != nil {
    		panic(v)
    	}
    
    	close(pre.cancel)
    	for i := 0; i < preloadWorkerCount; i++ {
    		pre.sema <- struct{}{}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm9.go

    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    // THE SOFTWARE.
    
    package ppc64
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/objabi"
    	"encoding/binary"
    	"fmt"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top