Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 403 for stage1 (0.26 sec)

  1. .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)
  2. 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)
  3. samples/bookinfo/platform/kube/bookinfo-certificate.yaml

    metadata:
      name: letsencrypt-staging
      namespace: istio-system
    spec:
      acme:
        # The ACME server URL
        server: https://acme-staging-v02.api.letsencrypt.org/directory
        # Email address used for ACME registration
        email: stage@istio.io
        # Name of a secret used to store the ACME account private key
        privateKeySecretRef:
          name: letsencrypt-staging
        # Enable the HTTP-01 challenge provider
        http01: {}
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 02 15:32:24 UTC 2019
    - 914 bytes
    - Viewed (0)
  4. 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)
  5. subprojects/core/src/main/java/org/gradle/configuration/ProjectsPreparer.java

     *
     * <p>This stage includes running the build script for each project.</p>
     */
    public interface ProjectsPreparer {
        void prepareProjects(GradleInternal gradle);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 03:05:02 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/cmd/compile/internal/s390x/galign.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package s390x
    
    import (
    	"cmd/compile/internal/ssagen"
    	"cmd/internal/obj/s390x"
    )
    
    func Init(arch *ssagen.ArchInfo) {
    	arch.LinkArch = &s390x.Links390x
    	arch.REGSP = s390x.REGSP
    	arch.MAXWIDTH = 1 << 50
    
    	arch.ZeroRange = zerorange
    	arch.Ginsnop = ginsnop
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 03 21:05:55 UTC 2021
    - 518 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