Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for writeScope (0.23 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/DefaultClassEncoder.kt

                if (scope == null) {
                    writeBoolean(false)
                } else {
                    writeBoolean(true)
                    writeScope(scope.first)
                    writeBoolean(scope.second.local)
                }
            }
        }
    
        private
        fun WriteContext.writeScope(scope: ClassLoaderScopeSpec) {
            val id = scopes.getId(scope)
            if (id != null) {
                writeSmallInt(id)
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/x86/seh.go

    	buf.write8(SEH_REG_BP)           // FP register
    
    	// Notes are written in reverse order of appearance.
    	buf.write8(uint8(movbp.Link.Pc))
    	buf.writecode(UWOP_SET_FPREG, 0)
    
    	buf.write8(uint8(pushbp.Link.Pc))
    	buf.writecode(UWOP_PUSH_NONVOL, SEH_REG_BP)
    
    	// The following 4 bytes reference the RVA of the exception handler.
    	// The value is set to 0 for now, if an exception handler is needed,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/cc_op_gen_main.cc

      OpList ops;
      absl::StatusOr<ApiDefMap> api_def_map =
          LoadOpsAndApiDefs(ops, include_internal, api_def_dirs);
      TF_CHECK_OK(api_def_map.status());
      api_def_map->UpdateDocs();
      WriteCCOps(ops, *api_def_map, dot_h, dot_cc);
    }
    
    }  // namespace
    }  // namespace cc_op
    }  // namespace tensorflow
    
    int main(int argc, char* argv[]) {
      tensorflow::port::InitMain(argv[0], &argc, &argv);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. src/compress/flate/inflate.go

    		goto copyHistory
    	}
    
    copyHistory:
    	// Perform a backwards copy according to RFC section 3.2.3.
    	{
    		cnt := f.dict.tryWriteCopy(f.copyDist, f.copyLen)
    		if cnt == 0 {
    			cnt = f.dict.writeCopy(f.copyDist, f.copyLen)
    		}
    		f.copyLen -= cnt
    
    		if f.dict.availWrite() == 0 || f.copyLen > 0 {
    			f.toRead = f.dict.readFlush()
    			f.step = (*decompressor).huffmanBlock // We need to continue this work
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
Back to top