Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 101 for Write (0.28 sec)

  1. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

         *
         * - All (unsynchronized) read operations must first read the "count" field, and should not
         * look at table entries if it is 0.
         *
         * - All (synchronized) write operations should write to the "count" field after structurally
         * changing any bin. The operations must not take any action that could even momentarily
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "MOVDstore", argLength: 3, reg: gpstore, aux: "SymOff", asm: "MOVD", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"},   // store 8 bytes of arg1 to arg0 + auxInt + aux.  arg2=mem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        setUp(parameters.first, parameters.second)
        cache.close()
        writeFile(getCleanFile("k1", 0), "A")
        writeFile(getCleanFile("k1", 1), "B")
        filesystem.write(journalFile) {
          writeUtf8(
            // No trailing newline.
            """
            |${DiskLruCache.MAGIC}
            |${DiskLruCache.VERSION_1}
            |100
            |2
            |
            |CLEAN k1 1 1
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_server_test.go

    	if err != nil {
    		return nil, err
    	}
    	defer in.Close()
    	return parseTestData(in)
    }
    
    func (test *serverTest) run(t *testing.T, write bool) {
    	var clientConn, serverConn net.Conn
    	var recordingConn *recordingConn
    	var childProcess *exec.Cmd
    
    	if write {
    		var err error
    		recordingConn, childProcess, err = test.connFromCommand()
    		if err != nil {
    			t.Fatalf("Failed to start subcommand: %s", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  5. cmd/bucket-handlers.go

    	// Get current region.
    	region := globalSite.Region()
    	if region != globalMinioDefaultRegion {
    		encodedSuccessResponse = encodeResponse(LocationResponse{
    			Location: region,
    		})
    	}
    
    	// Write success response.
    	writeSuccessResponseXML(w, encodedSuccessResponse)
    }
    
    // ListMultipartUploadsHandler - GET Bucket (List Multipart uploads)
    // -------------------------
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  6. src/runtime/map.go

    				continue
    			}
    			if h.flags&hashWriting != 0 {
    				fatal("concurrent map read and map write")
    			}
    			k := add(unsafe.Pointer(b), dataOffset+offi*uintptr(t.KeySize))
    			if t.IndirectKey() {
    				k = *((*unsafe.Pointer)(k))
    			}
    			if s.len >= s.cap {
    				fatal("concurrent map read and map write")
    			}
    			typedmemmove(t.Key, add(s.array, uintptr(s.len)*uintptr(t.Key.Size())), k)
    			s.len++
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      );
    
      let results = (outs);
    }
    
    // TODO(b/168035831): Model db_uri read/write.
    def TF_CreateSummaryDbWriterOp : TF_Op<"CreateSummaryDbWriter", []> {
      let summary = "Creates summary database writer accessible by given resource handle.";
    
      let description = [{
    This can be used to write tensors from the execution graph directly
    to a database. Only SQLite is supported right now. This function
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  8. src/runtime/mgcmark.go

    //
    // Disabling write barriers is necessary to ensure that after we've
    // confirmed that we've drained gcw, that we don't accidentally end
    // up flipping that condition by immediately adding work in the form
    // of a write barrier buffer flush.
    //
    // Don't set nowritebarrierrec because it's safe for some callees to
    // have write barriers enabled.
    //
    //go:nowritebarrier
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. pkg/kubelet/server/server_test.go

    				}
    
    				if test.stdout {
    					_, err := out.Write([]byte(expectedStdout))
    					assert.NoError(t, err, "writing to stdout")
    					out.Close()
    					<-clientStdoutReadDone
    				}
    
    				if !test.tty && test.stderr {
    					_, err := stderr.Write([]byte(expectedStderr))
    					assert.NoError(t, err, "writing to stderr")
    					stderr.Close()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  10. cluster/gce/windows/k8s-node-setup.psm1

      & sc.exe stop wuauserv
      Write-VerboseServiceInfoToConsole -Service 'wuauserv' -Delay 1
    
      # Use TLS 1.2: needed for Invoke-WebRequest downloads from github.com.
      [Net.ServicePointManager]::SecurityProtocol = `
          [Net.SecurityProtocolType]::Tls12
    
      Configure-WindowsDefender
    }
    
    # Creates directories where other functions in this module will read and write
    # data.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top