Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 121 for writes (0.23 sec)

  1. guava/src/com/google/common/util/concurrent/Futures.java

      //    visible to done(). This is because there is no happens before edge between the write and a
      //    (hypothetical) unsafe read by our caller. Note: adding 'volatile' does not fix this issue,
      //    it would just add an edge such that if done() observed non-null, then it would also
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    //    (from _GCoff), enabling the write barrier, enabling mutator
    //    assists, and enqueueing root mark jobs. No objects may be
    //    scanned until all Ps have enabled the write barrier, which is
    //    accomplished using STW.
    //
    //    b. Start the world. From this point, GC work is done by mark
    //    workers started by the scheduler and by assists performed as
    //    part of allocation. The write barrier shades both the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  3. configure.py

        if python_lib_path in python_paths:
          write_action_env_to_bazelrc('PYTHONPATH', environ_cp.get('PYTHONPATH'))
    
      # Write tools/python_bin_path.sh
      with open(
          os.path.join(_TF_WORKSPACE_ROOT, 'tools', 'python_bin_path.sh'),
          'w') as f:
        f.write('export PYTHON_BIN_PATH="{}"'.format(python_bin_path))
    
    
    def reset_tf_configure_bazelrc():
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. src/runtime/traceback.go

    	// not want to do the subtraction here. But we started out without
    	// any frame pointer, and when we wanted to add it, we didn't
    	// want to break all the assembly doing direct writes to 8(RSP)
    	// to set the first parameter to a called function.
    	// So we decided to write the FP link *below* the stack pointer
    	// (with R29 = RSP - 8 in Go functions).
    	// This is technically ABI-compatible but not standard.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/resource_op_lifting.mlir

      }) {cluster_attr = "cluster_attr"} : () -> tensor<*xi32>
    
      // CHECK: return %[[CLUSTER_RES]]
      return %0 : tensor<*xi32>
    }
    
    // -----
    
    // Tests that pass lifts resource reads/writes from a loop, and removed unused
    // resources.
    
    // CHECK-LABEL: func @cluster_with_loop
    func.func @cluster_with_loop() -> () {
      // CHECK: %[[COUNT:.*]] = "tf.Const"() <{value = dense<10> : tensor<i32>}>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 74K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/elf.go

    	out.Write32(uint32(e.Paddr))
    	out.Write32(uint32(e.Filesz))
    	out.Write32(uint32(e.Memsz))
    	out.Write32(uint32(e.Flags))
    	out.Write32(uint32(e.Align))
    }
    
    func elf64shdr(out *OutBuf, e *ElfShdr) {
    	out.Write32(e.Name)
    	out.Write32(uint32(e.Type))
    	out.Write64(uint64(e.Flags))
    	out.Write64(e.Addr)
    	out.Write64(e.Off)
    	out.Write64(e.Size)
    	out.Write32(e.Link)
    	out.Write32(e.Info)
    	out.Write64(e.Addralign)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  7. cmd/erasure-object.go

    			inlineBuffers[i] = bytes.NewBuffer(buf[:0])
    			defer grid.PutByteBuffer(buf)
    			writers[i] = newStreamingBitrotWriterBuffer(inlineBuffers[i], DefaultBitrotAlgorithm, erasure.ShardSize())
    		}
    	}
    
    	n, erasureErr := erasure.Encode(ctx, data, writers, buffer, writeQuorum)
    	closeBitrotWriters(writers)
    	if erasureErr != nil {
    		return ObjectInfo{}, toObjectErr(erasureErr, minioMetaBucket, key)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

                    writer.print(indent);
                }
                if (eolComment != null) {
                    writer.println(s + eolComment);
                    eolComment = null;
                } else {
                    writer.println(s);
                }
                hasSeparatorLine = false;
            }
    
            private void println() {
                writer.println();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/http2/Http2ConnectionTest.kt

        // Verify the peer's settings were read and applied.
        assertThat(connection.peerSettings.headerTableSize).isEqualTo(0)
        val writer = connection.writer
        assertThat(writer.hpackWriter.dynamicTableByteCount).isEqualTo(0)
        assertThat(writer.hpackWriter.headerTableSizeSetting).isEqualTo(0)
      }
    
      @Test fun peerHttp2ClientDisablesPush() {
        val client = false // Peer is client, so we are server.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  10. src/cmd/dist/build.go

    	if err := os.WriteFile(importcfg, buf.Bytes(), 0666); err != nil {
    		fatalf("cannot write importcfg file: %v", err)
    	}
    
    	var archive string
    	// The next loop will compile individual non-Go files.
    	// Hand the Go files to the compiler en masse.
    	// For packages containing assembly, this writes go_asm.h, which
    	// the assembly files will need.
    	pkgName := pkg
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
Back to top