Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for dctfix (0.2 sec)

  1. cmd/erasure-server-pool-decom.go

    	z.poolMetaMutex.Lock()
    	var dctx context.Context
    	dctx, z.decommissionCancelers[idx] = context.WithCancel(GlobalContext)
    	z.poolMetaMutex.Unlock()
    
    	// Generate an empty request info so it can be directly modified later by audit
    	dctx = logger.SetReqInfo(dctx, &logger.ReqInfo{})
    
    	if err := z.decommissionInBackground(dctx, idx); err != nil {
    		decomLogIf(GlobalContext, err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 14:30:43 UTC 2024
    - 41.5K bytes
    - Viewed (1)
  2. src/cmd/asm/internal/asm/testdata/ppc64_p10.s

    	CFUGED R1, R2, R3                       // 7c2311b8
    	CNTLZDM R2, R3, R1                      // 7c411876
    	CNTTZDM R2, R3, R1                      // 7c411c76
    	DCFFIXQQ V1, F2                         // fc400fc4
    	DCTFIXQQ F2, V3                         // fc6117c4
    	LXVKQ $0, VS33                          // f03f02d1
    	LXVP 12352(R5), VS6                     // 18c53040
    	LXVPX (R1)(R2), VS4                     // 7c820a9a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 23 20:52:57 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  3. src/image/draw/draw.go

    		}
    		d0 += ddelta
    		s0 += sdelta
    	}
    }
    
    // drawCopySrc copies bytes to dstPix from srcPix. These arguments roughly
    // correspond to the Pix fields of the image package's concrete image.Image
    // implementations, but are offset (dstPix is dst.Pix[dpOffset:] not dst.Pix).
    func drawCopySrc(
    	dstPix []byte, dstStride int, r image.Rectangle,
    	srcPix []byte, srcStride int, sp image.Point,
    	bytesPerRow int) {
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  4. cmd/update.go

    		}
    	}
    
    	return string(contentBytes), nil
    }
    
    func releaseInfoToReleaseTime(releaseInfo string) (releaseTime time.Time, err error) {
    	// Split release of style minio.RELEASE.2019-08-21T19-40-07Z.<hotfix>
    	nfields := strings.SplitN(releaseInfo, ".", 2)
    	if len(nfields) != 2 {
    		err = fmt.Errorf("Unknown release information `%s`", releaseInfo)
    		return releaseTime, err
    	}
    	if nfields[0] != "minio" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  5. cmd/xl-storage-disk-id-check.go

    			}
    		}
    
    		// Offset checks a bit.
    		time.Sleep(time.Duration(rng.Int63n(int64(1 * time.Second))))
    
    		dctx, dcancel := context.WithCancel(ctx)
    		started := time.Now()
    		go func() {
    			timeout := time.NewTimer(globalDriveConfig.GetMaxTimeout())
    			select {
    			case <-dctx.Done():
    				if !timeout.Stop() {
    					<-timeout.C
    				}
    			case <-timeout.C:
    				spent := time.Since(started)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modget/get.go

    The 'go env -w' command (see 'go help env') can be used to set the GOVCS
    variable for future go command invocations.
    `,
    }
    
    var (
    	getD        dFlag
    	getF        = CmdGet.Flag.Bool("f", false, "")
    	getFix      = CmdGet.Flag.Bool("fix", false, "")
    	getM        = CmdGet.Flag.Bool("m", false, "")
    	getT        = CmdGet.Flag.Bool("t", false, "")
    	getU        upgradeFlag
    	getInsecure = CmdGet.Flag.Bool("insecure", false, "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9_gtables.go

    	"PEXTD",
    	"PDEPD",
    	"MTVSRWM",
    	"MTVSRQM",
    	"MTVSRHM",
    	"MTVSRDM",
    	"MTVSRBMI",
    	"MTVSRBM",
    	"LXVRWX",
    	"LXVRHX",
    	"LXVRDX",
    	"LXVRBX",
    	"LXVPX",
    	"LXVP",
    	"LXVKQ",
    	"DCTFIXQQ",
    	"DCFFIXQQ",
    	"CNTTZDM",
    	"CNTLZDM",
    	"CFUGED",
    	"BRW",
    	"BRH",
    	"BRD",
    	"HASHSTP",
    	"HASHST",
    	"HASHCHKP",
    	"HASHCHK",
    	"XXSPLTIW",
    	"XXSPLTIDP",
    	"XXSPLTI32DX",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 16 20:18:50 UTC 2022
    - 42.6K bytes
    - Viewed (0)
  8. cmd/admin-handlers.go

    		Services:      services,
    		Backend:       backend,
    		Servers:       servers,
    		Pools:         poolsInfo,
    	}
    }
    
    func getKubernetesInfo(dctx context.Context) madmin.KubernetesInfo {
    	ctx, cancel := context.WithCancel(dctx)
    	defer cancel()
    
    	ki := madmin.KubernetesInfo{}
    
    	req, err := http.NewRequestWithContext(ctx, http.MethodGet, kubernetesVersionEndpoint, nil)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

    }
    
    # Writes debugging information, such as Windows version and patch info, to the
    # console.
    function Dump-DebugInfoToConsole {
      Try {
        $version = Get_WindowsVersion | Out-String
        $hotfixes = "$(Get-Hotfix | Out-String)"
        $image = "$(Get-InstanceMetadata 'image' | Out-String)"
        Log-Output "Windows version:`n$version"
        Log-Output "Installed hotfixes:`n$hotfixes"
        Log-Output "GCE Windows image:`n$image"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  10. cluster/gce/util.sh

    AUTOSCALER_EXPANDER_CONFIG: $(yaml-quote "${AUTOSCALER_EXPANDER_CONFIG}")
    EOF
          if [[ "${master}" == "false" ]]; then
              # TODO(kubernetes/autoscaler#718): AUTOSCALER_ENV_VARS is a hotfix for cluster autoscaler,
              # which reads the kube-env to determine the shape of a node and was broken by #60020.
              # This should be removed as soon as a more reliable source of information is available!
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top