Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,856 for makeID (0.19 sec)

  1. src/cmd/link/internal/ld/macho_update_uuid.go

    // particular) appear to compute the UUID based not just on the
    // content of the object files being linked but also on things like
    // the timestamps/paths of the objects; this makes it
    // difficult/impossible to support reproducible builds. Since we try
    // hard to maintain build reproducibility for Go, the APIs here
    // compute a new UUID (based on the Go build ID) and write it to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. src/hash/crc32/crc32.go

    	// https://dx.doi.org/10.1109/DSN.2002.1028931
    	Koopman = 0xeb31d82e
    )
    
    // Table is a 256-word table representing the polynomial for efficient processing.
    type Table [256]uint32
    
    // This file makes use of functions implemented in architecture-specific files.
    // The interface that they implement is as follows:
    //
    //    // archAvailableIEEE reports whether an architecture-specific CRC32-IEEE
    //    // algorithm is available.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. src/compress/bzip2/huffman.go

    	// We keep the codes packed into a uint32, at the most-significant end.
    	// So branches are taken from the MSB downwards. This makes it easy to
    	// sort them later.
    	code := uint32(0)
    	length := uint8(32)
    
    	codes := make([]huffmanCode, len(lengths))
    	for i := len(pairs) - 1; i >= 0; i-- {
    		if length > pairs[i].length {
    			length = pairs[i].length
    		}
    		codes[i].code = code
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:44:37 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/internal/bytealg/bytealg.go

    		h *= PrimeRK
    		h += uint32(s[i])
    		h -= pow * uint32(s[i+n])
    		if h == hashss && string(s[i:i+n]) == string(sep) {
    			return i
    		}
    	}
    	return -1
    }
    
    // MakeNoZero makes a slice of length n and capacity of at least n Bytes
    // without zeroing the bytes (including the bytes between len and cap).
    // It is the caller's responsibility to ensure uninitialized bytes
    // do not leak to the end user.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 19 19:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. src/net/tcpsock_test.go

    		t.Fatal(err)
    	}
    	defer r.Close()
    
    	errc2 := make(chan error, 1)
    	defer func() {
    		if err := <-errc2; err != nil {
    			t.Error(err)
    		}
    	}()
    
    	defer w.Close()
    
    	go func() {
    		_, err := io.Copy(c, r)
    		errc2 <- err
    	}()
    
    	// Split write into 2 packets. That makes Windows TransmitFile
    	// drop second packet.
    	packet := make([]byte, 1)
    	_, err = w.Write(packet)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/util/dryrun/dryrun.go

    // Useful for things like loading a file from /tmp/ but saying to the user "Would write file foo to /etc/kubernetes/..."
    type FileToPrint struct {
    	RealPath  string
    	PrintPath string
    }
    
    // NewFileToPrint makes a new instance of FileToPrint with the specified arguments
    func NewFileToPrint(realPath, printPath string) FileToPrint {
    	return FileToPrint{
    		RealPath:  realPath,
    		PrintPath: printPath,
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/api_test.go

    		{`package p13
    
    		var (
    		    v = t.m()
    		    t = makeT(0)
    		)
    
    		type T struct{}
    
    		func (T) m() int { return 0 }
    
    		func makeT(n int) T {
    		    if n > 0 {
    		        return makeT(n-1)
    		    }
    		    return T{}
    		}`, []string{
    			"t = makeT(0)", "v = t.m()",
    		}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/copyelim.go

    			w.reset(OpUnknown)
    			break
    		}
    		if advance {
    			slow = slow.Args[0]
    		}
    		advance = !advance
    	}
    
    	// The answer is w.  Update all the copies we saw
    	// to point directly to w.  Doing this update makes
    	// sure that we don't end up doing O(n^2) work
    	// for a chain of n copies.
    	for v != w {
    		x := v.Args[0]
    		v.SetArg(0, w)
    		v = x
    	}
    	return w
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. common-protos/k8s.io/apimachinery/pkg/api/resource/generated.proto

    // +protobuf.options.marshal=false
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    // +k8s:deepcopy-gen=true
    // +k8s:openapi-gen=true
    message Quantity {
      optional string string = 1;
    }
    
    // QuantityValue makes it possible to use a Quantity as value for a command
    // line parameter.
    //
    // +protobuf=true
    // +protobuf.embed=string
    // +protobuf.options.marshal=false
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    A complex and highly dynamic build may require some restructuring anyway, so in such cases reimplementing build logic to follow Gradle best practice makes sense.
    
    Since applying Gradle best practices will make your builds easier to use and faster, we recommend that you migrate all projects in that way eventually, but it makes sense to focus on the projects that have to be restructured first and those that would benefit most from the improvements.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top