Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for dctfix (0.17 sec)

  1. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	DADDQCC:        "daddq.",
    	DCFFIXQ:        "dcffixq",
    	DCFFIXQCC:      "dcffixq.",
    	DCMPO:          "dcmpo",
    	DCMPOQ:         "dcmpoq",
    	DCMPU:          "dcmpu",
    	DCMPUQ:         "dcmpuq",
    	DCTDP:          "dctdp",
    	DCTDPCC:        "dctdp.",
    	DCTFIX:         "dctfix",
    	DCTFIXCC:       "dctfix.",
    	DCTFIXQ:        "dctfixq",
    	DCTFIXQCC:      "dctfixq.",
    	DCTQPQ:         "dctqpq",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  2. Dockerfile.hotfix

    Harshavardhana <******@****.***> 1711791711 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 30 09:41:56 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. docs/hotfixes.md

    ### Building a hotfix binary and container
    
    To add a hotfix tag to the binary version and embed the relevant `commit-id` following build helpers are available
    
    #### Builds the hotfix binary and uploads to https;//dl.min.io
    
    ```
    λ CRED_DIR=/media/builder/minio make hotfix-push
    ```
    
    #### Builds the hotfix container and pushes to docker.io/minio/minio
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 14 21:36:02 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. Makefile

    	@echo "Published new hotfix binaries at https://dl.min.io/server/minio/hotfixes/linux-amd64/archive/minio.$(VERSION)"
    
    docker-hotfix-push: docker-hotfix
    	@docker push -q $(TAG) && echo "Published new container $(TAG)"
    
    docker-hotfix: hotfix-push checks ## builds minio docker container with hotfix tags
    	@echo "Building minio docker image '$(TAG)'"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. src/cmd/fix/context.go

    import (
    	"go/ast"
    )
    
    func init() {
    	register(contextFix)
    }
    
    var contextFix = fix{
    	name:     "context",
    	date:     "2016-09-09",
    	f:        ctxfix,
    	desc:     `Change imports of golang.org/x/net/context to context`,
    	disabled: false,
    }
    
    func ctxfix(f *ast.File) bool {
    	return rewriteImport(f, "golang.org/x/net/context", "context")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 19:04:54 UTC 2017
    - 510 bytes
    - Viewed (0)
  6. buildscripts/gen-ldflags.go

    func releaseTag(version string) (string, time.Time) {
    	relPrefix := "DEVELOPMENT"
    	if prefix := os.Getenv("MINIO_RELEASE"); prefix != "" {
    		relPrefix = prefix
    	}
    
    	relSuffix := ""
    	if hotfix := os.Getenv("MINIO_HOTFIX"); hotfix != "" {
    		relSuffix = hotfix
    	}
    
    	relTag := strings.Replace(version, " ", "-", -1)
    	relTag = strings.Replace(relTag, ":", "-", -1)
    	t, err := time.Parse("2006-01-02T15-04-05Z", relTag)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 16 23:10:48 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  7. src/cmd/fix/context_test.go

    // Copyright 2016 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    func init() {
    	addTestCases(contextTests, ctxfix)
    }
    
    var contextTests = []testCase{
    	{
    		Name: "context.0",
    		In: `package main
    
    import "golang.org/x/net/context"
    
    var _ = "golang.org/x/net/context"
    `,
    		Out: `package main
    
    import "context"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 15 19:24:04 UTC 2016
    - 648 bytes
    - Viewed (0)
  8. cmd/update_test.go

    			"DEVELOPMENT.GOGET is not a valid release tag",
    		},
    		{
    			time.Date(2017, time.August, 5, 0, 0, 53, 0, utcLoc),
    			"RELEASE.2017-08-05T00-00-53Z.hotfix", "",
    		},
    		{
    			time.Date(2017, time.August, 5, 0, 0, 53, 0, utcLoc),
    			"RELEASE.2017-08-05T00-00-53Z.hotfix.aaaa", "",
    		},
    	}
    	for i, testCase := range testCases {
    		if testCase.errStr != "" {
    			got := releaseTimeToReleaseTag(testCase.t)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Mar 09 03:07:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. src/image/png/reader.go

    	var (
    		srcPix        []uint8
    		dstPix        []uint8
    		stride        int
    		rect          image.Rectangle
    		bytesPerPixel int
    	)
    	switch target := dst.(type) {
    	case *image.Alpha:
    		srcPix = src.(*image.Alpha).Pix
    		dstPix, stride, rect = target.Pix, target.Stride, target.Rect
    		bytesPerPixel = 1
    	case *image.Alpha16:
    		srcPix = src.(*image.Alpha16).Pix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 26K bytes
    - Viewed (0)
  10. src/os/exec/lp_windows.go

    				//
    				// Otherwise, return the ErrDot for the implicit path as soon as we find
    				// out that the explicit one doesn't match.
    				dotfi, dotfiErr := os.Lstat(dotf)
    				fi, fiErr := os.Lstat(f)
    				if dotfiErr != nil || fiErr != nil || !os.SameFile(dotfi, fi) {
    					return dotf, dotErr
    				}
    			}
    
    			if !filepath.IsAbs(f) {
    				if execerrdot.Value() != "0" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top