Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 242 for writelns (0.17 sec)

  1. pilot/pkg/model/typed_xds_cache.go

    // We should never have a case where we overwrite an existing item with a new change. Instead, when
    // config sources change, Clear/ClearAll should be called. At this point, we may get multiple writes
    // because multiple writers may get cache misses concurrently, but they ought to generate identical
    // configuration. This also checks that our XDS config generation is deterministic, which is a very
    // important property.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerWriter.kt

      fun writeBoolean(b: Boolean) {
        sink().writeByte(if (b) -1 else 0)
      }
    
      fun writeBigInteger(value: BigInteger) {
        sink().write(value.toByteArray())
      }
    
      fun writeLong(v: Long) {
        val sink = sink()
    
        val lengthBitCount: Int =
          if (v < 0L) {
            65 - java.lang.Long.numberOfLeadingZeros(v xor -1L)
          } else {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/serializer/ProgressStartEventSerializer.java

            encoder.writeSmallLong(event.getProgressOperationId().getId());
            if (parentProgressOperationId != null) {
                encoder.writeSmallLong(parentProgressOperationId.getId());
            }
            encoder.writeLong(event.getTimestamp());
            if ((flags & CATEGORY_NAME) != 0) {
                encoder.writeString(event.getCategory());
            }
            encoder.writeString(description);
            if ((flags & LOGGING_HEADER) != 0) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v1_gen.go

    	if err != nil {
    		return
    	}
    	err = en.WriteInt(z.DataBlocks)
    	if err != nil {
    		err = msgp.WrapError(err, "DataBlocks")
    		return
    	}
    	// write "ParityBlocks"
    	err = en.Append(0xac, 0x50, 0x61, 0x72, 0x69, 0x74, 0x79, 0x42, 0x6c, 0x6f, 0x63, 0x6b, 0x73)
    	if err != nil {
    		return
    	}
    	err = en.WriteInt(z.ParityBlocks)
    	if err != nil {
    		err = msgp.WrapError(err, "ParityBlocks")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 40.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/IsolatedCodecs.kt

            return StringValueSnapshot(value)
        }
    }
    
    
    object IntegerValueSnapshotCodec : Codec<IntegerValueSnapshot> {
        override suspend fun WriteContext.encode(value: IntegerValueSnapshot) {
            writeInt(value.value)
        }
    
        override suspend fun ReadContext.decode(): IntegerValueSnapshot {
            val value = readInt()
            return IntegerValueSnapshot(value)
        }
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. cmd/kube-proxy/app/conntrack.go

    	// errReadOnlySysFS differently.
    	writable, err := rct.isSysFSWritable(ctx)
    	if err != nil {
    		return err
    	}
    	if !writable {
    		return errReadOnlySysFS
    	}
    	// TODO: generify this and sysctl to a new sysfs.WriteInt()
    	logger.Info("Setting conntrack hashsize", "conntrackHashsize", max/4)
    	return writeIntStringFile("/sys/module/nf_conntrack/parameters/hashsize", max/4)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/collection/ArrayMap.java

                };
            }
            return (Set<Map.Entry<K, V>>) entrySet;
        }
    
        @Override
        public void writeExternal(final ObjectOutput out) throws IOException {
            out.writeInt(listTable.length);
            out.writeInt(size);
            for (int i = 0; i < size; i++) {
                out.writeObject(listTable[i].key);
                out.writeObject(listTable[i].value);
            }
        }
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. internal/config/cache/remote_gen.go

    		return
    	}
    	// write "IfPartNumber"
    	err = en.Append(0xac, 0x49, 0x66, 0x50, 0x61, 0x72, 0x74, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72)
    	if err != nil {
    		return
    	}
    	err = en.WriteInt(z.IfPartNumber)
    	if err != nil {
    		err = msgp.WrapError(err, "IfPartNumber")
    		return
    	}
    	return
    }
    
    // MarshalMsg implements msgp.Marshaler
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Nov 22 21:46:17 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/LongAdder.java

      @Override
      public double doubleValue() {
        return (double) sum();
      }
    
      private void writeObject(ObjectOutputStream s) throws IOException {
        s.defaultWriteObject();
        s.writeLong(sum());
      }
    
      private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException {
        s.defaultReadObject();
        busy = 0;
        cells = null;
        base = s.readLong();
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  10. src/text/tabwriter/tabwriter.go

    		n := cellw - textw // amount of padding
    		if n < 0 {
    			panic("internal error")
    		}
    		b.writeN(tabs, (n+b.tabwidth-1)/b.tabwidth)
    		return
    	}
    
    	// padding is done with non-tab characters
    	b.writeN(b.padbytes[0:], cellw-textw)
    }
    
    var vbar = []byte{'|'}
    
    func (b *Writer) writeLines(pos0 int, line0, line1 int) (pos int) {
    	pos = pos0
    	for i := line0; i < line1; i++ {
    		line := b.lines[i]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 17.8K bytes
    - Viewed (0)
Back to top