Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 349 for stage1 (0.12 sec)

  1. src/cmd/compile/internal/loong64/galign.go

    package loong64
    
    import (
    	"cmd/compile/internal/ssa"
    	"cmd/compile/internal/ssagen"
    	"cmd/internal/obj/loong64"
    )
    
    func Init(arch *ssagen.ArchInfo) {
    	arch.LinkArch = &loong64.Linkloong64
    	arch.REGSP = loong64.REGSP
    	arch.MAXWIDTH = 1 << 50
    	arch.ZeroRange = zerorange
    	arch.Ginsnop = ginsnop
    
    	arch.SSAMarkMoves = func(s *ssagen.State, b *ssa.Block) {}
    	arch.SSAGenValue = ssaGenValue
    	arch.SSAGenBlock = ssaGenBlock
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:04:16 UTC 2023
    - 649 bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildContentGenerationContext.java

     * limitations under the License.
     */
    
    package org.gradle.buildinit.plugins.internal;
    
    import org.gradle.api.NonNullApi;
    
    /**
     * Context passed through all stages of the build generation to track state.
     */
    @NonNullApi
    public class BuildContentGenerationContext {
        private final VersionCatalogDependencyRegistry versionCatalogDependencyRegistry;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/gccgo_link_c.txt

    ! go build -x -compiler gccgo
    stderr 'gccgo.*\-L [^ ]*alibpath \-lalib' # make sure that Go-inline "#cgo LDFLAGS:" ("-L alibpath -lalib") passed to gccgo linking stage
    ! stderr 'gccgo.*-lalib.*-lalib' # make sure -lalib is only passed once
    
    -- go.mod --
    module m
    -- cgoref.go --
    package main
    // #cgo LDFLAGS: -L alibpath -lalib
    // void f(void) {}
    import "C"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 16:38:51 UTC 2023
    - 617 bytes
    - Viewed (0)
  4. .gitignore

    **/*.swp
    cover.out
    *~
    minio
    !*/
    site/
    **/*.test
    **/*.sublime-workspace
    /.idea/
    /Minio.iml
    **/access.log
    vendor/
    .DS_Store
    *.syso
    coverage.txt
    .vscode/
    *.tar.bz2
    parts/
    prime/
    stage/
    .sia_temp/
    config.json
    node_modules/
    mc.*
    s3-check-md5*
    xl-meta*
    healing-*
    inspect*.zip
    200M*
    hash-set
    minio.RELEASE*
    mc
    nancy
    inspects/*
    .bin/
    *.gz
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 27 19:17:46 UTC 2024
    - 802 bytes
    - Viewed (0)
  5. src/cmd/compile/internal/s390x/ssa.go

    // may be further adjusted (offset, scale, etc).
    func opregregimm(s *ssagen.State, op obj.As, dest, src int16, off int64) *obj.Prog {
    	p := s.Prog(op)
    	p.From.Type = obj.TYPE_CONST
    	p.From.Offset = off
    	p.Reg = src
    	p.To.Reg = dest
    	p.To.Type = obj.TYPE_REG
    	return p
    }
    
    func ssaGenValue(s *ssagen.State, v *ssa.Value) {
    	switch v.Op {
    	case ssa.OpS390XSLD, ssa.OpS390XSLW,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 27.1K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_block.go

    	klog.V(4).Infof(log("blockMapper.GetPodDeviceMapPath [path=%s; name=%s]", path, m.specName))
    	return path, m.specName
    }
    
    // stageVolumeForBlock stages a block volume to stagingPath
    func (m *csiBlockMapper) stageVolumeForBlock(
    	ctx context.Context,
    	csi csiClient,
    	accessMode v1.PersistentVolumeAccessMode,
    	csiSource *v1.CSIPersistentVolumeSource,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  7. docs/en/docs/deployment/index.md

    This is in contrast to the **development** stages, where you are constantly changing the code, breaking it and fixing it, stopping and restarting the development server, etc.
    
    ## Deployment Strategies
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/invocation/DefaultGradleSpec.groovy

            when:
            gradle.attachSettings(state2)
    
            then:
            1 * state1.close()
        }
    
        def "closes settings when discarded"() {
            def state = Mock(SettingsState)
    
            given:
            gradle.attachSettings(state)
    
            when:
            gradle.resetState()
    
            then:
            1 * state.close()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  9. pkg/volume/csi/fake/fake_client.go

    	f.nodePublishedVolumes[volID] = CSIVolume{
    		Path:          deviceMountPath,
    		VolumeContext: volumeContext,
    	}
    }
    
    // GetNodeStagedVolumes returns node staged volumes
    func (f *NodeClient) GetNodeStagedVolumes() map[string]CSIVolume {
    	return f.nodeStagedVolumes
    }
    
    // AddNodeStagedVolume adds specified volume to nodeStagedVolumes
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 16K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/BaselineVersionResolver.groovy

            GradleVersion versionObject = GradleVersion.version(version)
            // there is no public API for checking for RC version, this is an internal way
            return versionObject.snapshot || versionObject.stage?.stage == 3
        }
    
        private static GradleDistribution findRelease(ReleasedVersionDistributions releases, String requested) {
            GradleDistribution best = null
            for (GradleDistribution release : releases.all) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top