Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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. 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)
  9. 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)
  10. subprojects/core/src/main/java/org/gradle/initialization/SettingsPreparer.java

    /**
     * Responsible creating and configuring the `Settings` object for a newly created `Gradle` instance. The result is passed to a {@link org.gradle.configuration.ProjectsPreparer} to configure the projects.
     *
     * <p>This stage includes running the init scripts and settings script.</p>
     */
    public interface SettingsPreparer {
        void prepareSettings(GradleInternal gradle);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 03:05:02 UTC 2019
    - 1.1K bytes
    - Viewed (0)
Back to top