Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 715 for subst (0.04 sec)

  1. src/cmd/compile/internal/types2/subst.go

    		// that has a type argument for it.
    		targs, updated := subst.typeList(t.TypeArgs().list())
    		if updated {
    			return subst.check.newAliasInstance(subst.pos, t.orig, targs, subst.ctxt)
    		}
    
    	case *Array:
    		elem := subst.typOrNil(t.elem)
    		if elem != t.elem {
    			return &Array{len: t.len, elem: elem}
    		}
    
    	case *Slice:
    		elem := subst.typOrNil(t.elem)
    		if elem != t.elem {
    			return &Slice{elem: elem}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/go/types/subst.go

    		// that has a type argument for it.
    		targs, updated := subst.typeList(t.TypeArgs().list())
    		if updated {
    			return subst.check.newAliasInstance(subst.pos, t.orig, targs, subst.ctxt)
    		}
    
    	case *Array:
    		elem := subst.typOrNil(t.elem)
    		if elem != t.elem {
    			return &Array{len: t.len, elem: elem}
    		}
    
    	case *Slice:
    		elem := subst.typOrNil(t.elem)
    		if elem != t.elem {
    			return &Slice{elem: elem}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_git_export_subst.txt

    env GO111MODULE=on
    env GOPROXY=direct
    
    # Testing that git export-subst is disabled
    [!net:github.com] skip
    [!git] skip
    go build
    
    -- x.go --
    package x
    
    import _ "github.com/jasonkeene/export-subst"
    
    -- go.mod --
    module x
    
    require github.com/jasonkeene/export-subst v0.0.0-20180927204031-5845945ec626
    
    -- go.sum --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 555 bytes
    - Viewed (0)
  4. src/cmd/gofmt/rewrite.go

    	}
    
    	// Handle token integers, etc.
    	return p.Interface() == v.Interface()
    }
    
    // subst returns a copy of pattern with values from m substituted in place
    // of wildcards and pos used as the position of tokens from the pattern.
    // if m == nil, subst returns a copy of pattern and doesn't change the line
    // number information.
    func subst(m map[string]reflect.Value, pattern reflect.Value, pos reflect.Value) reflect.Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 27 22:07:13 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  5. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/FileSystemRootUpToDateIntegrationTest.groovy

            ['subst', drive, substRoot].execute().waitForProcessOutput()
            assert isPresent(drive): "Can't subst ${drive}!"
            substRoot
        }
    
        static isPresent(String drive) {
            File.listRoots().any { "${it}".toUpperCase().startsWith(drive.toUpperCase()) }
        }
    
        def cleanupSubst(String drive) {
            ['subst', '/d', drive].execute()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. hack/lib/.gitattributes

    version.sh export-subst...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 10 00:36:27 UTC 2017
    - 24 bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/common/performance-test-extensions.kt

        if (os == Os.WINDOWS) {
            script {
                name = "SETUP_VIRTUAL_DISK_FOR_PERF_TEST"
                executionMode = BuildStep.ExecutionMode.ALWAYS
                scriptContent = """
                    subst p: /d
                    subst p: "%teamcity.build.checkoutDir%"
                """.trimIndent()
                skipConditionally()
            }
        }
    }
    
    fun BuildType.cleanUpGitUntrackedFilesAndDirectories() {
        steps {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. tests/integration/tests.mk

    test.integration.%.kube: | $(JUNIT_REPORT) check-go-tag
    	$(call run-test,./tests/integration/$(subst .,/,$*)/...)
    
    # Generate integration fuzz test targets for kubernetes environment.
    test.integration-fuzz.%.kube: | $(JUNIT_REPORT) check-go-tag
    	$(call run-test,./tests/integration/$(subst .,/,$*)/...,-tags="integfuzz integ")
    
    # Generate presubmit integration test targets for each component in kubernetes environment
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/infer.go

    				// thus there is no need to call under below.
    				// TODO(gri) Consider doing this in Checker.subst.
    				//           Then this would fall out automatically here and also
    				//           in instantiation (where we also explicitly nil out
    				//           type parameters). See the *Signature TODO in subst.
    				if sig, _ := t1.(*Signature); sig != nil && sig.TypeParams().Len() > 0 && !isParameterized(tparams, sig) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  10. src/go/types/infer.go

    				// thus there is no need to call under below.
    				// TODO(gri) Consider doing this in Checker.subst.
    				//           Then this would fall out automatically here and also
    				//           in instantiation (where we also explicitly nil out
    				//           type parameters). See the *Signature TODO in subst.
    				if sig, _ := t1.(*Signature); sig != nil && sig.TypeParams().Len() > 0 && !isParameterized(tparams, sig) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
Back to top