Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for writeAny (0.21 sec)

  1. cmd/bucket-replication-utils_gen.go

    		err = en.Append(0xa2, 0x72, 0x63)
    		if err != nil {
    			return
    		}
    		err = en.WriteInt(za0002.RetryCount)
    		if err != nil {
    			err = msgp.WrapError(err, "Entries", za0001, "RetryCount")
    			return
    		}
    	}
    	// write "v"
    	err = en.Append(0xa1, 0x76)
    	if err != nil {
    		return
    	}
    	err = en.WriteInt(z.Version)
    	if err != nil {
    		err = msgp.WrapError(err, "Version")
    		return
    	}
    	return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 61.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            assertThat(bean.getProp(), equalTo("value"));
    
            call("{ it.finalGetter 'another'}", bean);
            assertThat(bean.getFinalGetter(), equalTo("another"));
    
            call("{ it.writeOnly 12}", bean);
            assertThat(bean.writeOnly, equalTo(12));
    
            call("{ it.primitive 12}", bean);
            assertThat(bean.getPrimitive(), equalTo(12));
    
            call("{ it.bool true}", bean);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/debug.go

    		// function, this would be indistinguishable from an
    		// end entry. Fudge it.
    		if begin == 0 && end == 0 {
    			end = 1
    		}
    
    		if ctxt.UseBASEntries {
    			listSym.WriteInt(ctxt, listSym.Size, ctxt.Arch.PtrSize, int64(begin))
    			listSym.WriteInt(ctxt, listSym.Size, ctxt.Arch.PtrSize, int64(end))
    		} else {
    			listSym.WriteCURelativeAddr(ctxt, listSym.Size, startPC, int64(begin))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  4. cmd/xl-storage-format-v2_gen.go

    	err = en.Append(0xa3, 0x45, 0x63, 0x4d)
    	if err != nil {
    		return
    	}
    	err = en.WriteInt(z.ErasureM)
    	if err != nil {
    		err = msgp.WrapError(err, "ErasureM")
    		return
    	}
    	// write "EcN"
    	err = en.Append(0xa3, 0x45, 0x63, 0x4e)
    	if err != nil {
    		return
    	}
    	err = en.WriteInt(z.ErasureN)
    	if err != nil {
    		err = msgp.WrapError(err, "ErasureN")
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. cmd/batch-handlers.go

    					slowCh <- obj
    					continue
    				}
    
    				batch = append(batch, obj.Item)
    
    				if len(batch) < *r.Source.Snowball.Batch {
    					continue
    				}
    				writeFn(batch)
    				batch = batch[:0]
    			}
    			writeFn(batch)
    			xioutil.SafeClose(slowCh)
    		}()
    	} else {
    		slowCh = walkCh
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  6. cmd/sts-handlers_test.go

    		// Built-in user should be imported without errors even if LDAP is
    		// enabled.
    		allUsersFile: `{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  7. cmd/kubelet/app/server.go

    				return nil, fmt.Errorf("unable to generate self signed cert: %w", err)
    			}
    
    			if err := certutil.WriteCert(kc.TLSCertFile, cert); err != nil {
    				return nil, err
    			}
    
    			if err := keyutil.WriteKey(kc.TLSPrivateKeyFile, key); err != nil {
    				return nil, err
    			}
    
    			klog.V(4).InfoS("Using self-signed cert", "TLSCertFile", kc.TLSCertFile, "TLSPrivateKeyFile", kc.TLSPrivateKeyFile)
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/MapMakerInternalMap.java

        }
    
        @Override
        protected ConcurrentMap<K, V> delegate() {
          return delegate;
        }
    
        void writeMapTo(ObjectOutputStream out) throws IOException {
          out.writeInt(delegate.size());
          for (Entry<K, V> entry : delegate.entrySet()) {
            out.writeObject(entry.getKey());
            out.writeObject(entry.getValue());
          }
          out.writeObject(null); // terminate entries
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        }
    
        @Override
        protected ConcurrentMap<K, V> delegate() {
          return delegate;
        }
    
        void writeMapTo(ObjectOutputStream out) throws IOException {
          out.writeInt(delegate.size());
          for (Entry<K, V> entry : delegate.entrySet()) {
            out.writeObject(entry.getKey());
            out.writeObject(entry.getValue());
          }
          out.writeObject(null); // terminate entries
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/riscv/obj.go

    				offset += 4
    			}
    			continue
    		}
    
    		offset := p.Pc
    		for _, ins := range instructionsForProg(p) {
    			if ic, err := ins.encode(); err == nil {
    				cursym.WriteInt(ctxt, offset, ins.length(), int64(ic))
    				offset += int64(ins.length())
    			}
    			if ins.usesRegTmp() {
    				p.Mark |= USES_REG_TMP
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top