Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,506 for dwrite (0.15 sec)

  1. cmd/kubeadm/app/cmd/phases/join/kubelet.go

    func NewKubeletStartPhase() workflow.Phase {
    	return workflow.Phase{
    		Name:  "kubelet-start [api-server-endpoint]",
    		Short: "Write kubelet settings, certificates and (re)start the kubelet",
    		Long:  "Write a file with KubeletConfiguration and an environment file with node specific kubelet settings, and then (re)start kubelet.",
    		Run:   runKubeletStartJoinPhase,
    		InheritFlags: []string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/tasks/internal/ValidationProblemSerialization.java

                }
            }
    
            @Override
            public void write(JsonWriter out, @Nullable Throwable throwable) throws IOException {
                if (throwable == null) {
                    out.nullValue();
                } else if (throwable.getMessage() == null && throwable.getCause() != null) {
                    write(out, throwable.getCause());
                } else {
                    out.beginObject();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  3. src/runtime/profbuf.go

    		i = 0
    	}
    	return nd >= want
    }
    
    // write writes an entry to the profiling buffer b.
    // The entry begins with a fixed hdr, which must have
    // length b.hdrsize, followed by a variable-sized stack
    // and a single tag pointer *tagPtr (or nil if tagPtr is nil).
    // No write barriers allowed because this might be called from a signal handler.
    func (b *profBuf) write(tagPtr *unsafe.Pointer, now int64, hdr []uint64, stk []uintptr) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. cmd/last-minute_gen.go

    }
    
    // EncodeMsg implements msgp.Encodable
    func (z AccElem) EncodeMsg(en *msgp.Writer) (err error) {
    	// map header, size 3
    	// write "Total"
    	err = en.Append(0x83, 0xa5, 0x54, 0x6f, 0x74, 0x61, 0x6c)
    	if err != nil {
    		return
    	}
    	err = en.WriteInt64(z.Total)
    	if err != nil {
    		err = msgp.WrapError(err, "Total")
    		return
    	}
    	// write "Size"
    	err = en.Append(0xa4, 0x53, 0x69, 0x7a, 0x65)
    	if err != nil {
    		return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jul 05 21:45:49 UTC 2022
    - 17.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/xml/SimpleMarkupWriter.java

        private final String indent;
    
        protected SimpleMarkupWriter(Writer writer, String indent) throws IOException {
            this.indent = indent;
            this.output = writer;
        }
    
        @Override
        public void write(char[] chars, int offset, int length) throws IOException {
            characters(chars, offset, length);
        }
    
        @Override
        public void flush() throws IOException {
            output.flush();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 02 12:15:58 UTC 2021
    - 12K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/macho_combine_dwarf.go

    	}
    
    	if _, err := dwarff.Seek(int64(realdwarf.Offset), 0); err != nil {
    		return err
    	}
    
    	// Write out the compressed sections, or the originals if we gave up
    	// on compressing them.
    	var dwarfsize uint64
    	if compressedBytes != nil {
    		dwarfsize = uint64(len(compressedBytes))
    		if _, err := outf.Write(compressedBytes); err != nil {
    			return err
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

        // unknown read(s).
        bool are_last_unknown_reads_tracked = false;
        // Whether a previous write access of this resource already tracks the last
        // unknown write.
        bool is_last_unknown_write_tracked_by_write = false;
        // Whether a previous read or write access of this resource already tracks
        // the last unknown write.
        bool is_last_unknown_write_tracked = false;
      };
    
      // Resource access info per resource ID.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_unix.go

    		}
    		if err == nil {
    			raceAcquire(unsafe.Pointer(&ioSync))
    		}
    	}
    	return
    }
    
    func Pwrite(fd int, p []byte, offset int64) (n int, err error) {
    	if raceenabled {
    		raceReleaseMerge(unsafe.Pointer(&ioSync))
    	}
    	n, err = pwrite(fd, p, offset)
    	if raceenabled && n > 0 {
    		raceReadRange(unsafe.Pointer(&p[0]), n)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/io/FilesTest.java

        File temp = createTempFile();
        Files.write(I18N, temp, Charsets.UTF_16LE);
        assertEquals(I18N, Files.toString(temp, Charsets.UTF_16LE));
      }
    
      public void testWriteBytes() throws IOException {
        File temp = createTempFile();
        byte[] data = newPreFilledByteArray(2000);
        Files.write(data, temp);
        assertTrue(Arrays.equals(data, Files.toByteArray(temp)));
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  10. src/hash/crc32/crc32_test.go

    			if d >= len(b) {
    				d = len(b)
    			}
    			ieee.Write(b[:d])
    			ieee.Write(b[d:])
    			return ieee.Sum32()
    		})
    	}
    
    	castagnoliTab := MakeTable(Castagnoli)
    	if castagnoliTab == nil {
    		t.Errorf("nil Castagnoli Table")
    	}
    
    	testGoldenCastagnoli(t, func(b []byte) uint32 {
    		castagnoli := New(castagnoliTab)
    		castagnoli.Write(b)
    		return castagnoli.Sum32()
    	})
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top