Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 54 for GoFiles (0.14 sec)

  1. src/cmd/cgo/doc.go

    to auto-update code from Go 1.14 and earlier:
    
    	go tool fix -r eglconf <pkg>
    
    # Using cgo directly
    
    Usage:
    
    	go tool cgo [cgo options] [-- compiler options] gofiles...
    
    Cgo transforms the specified input Go source files into several output
    Go and C source files.
    
    The compiler options are passed through uninterpreted when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/test/test.go

    			Actor:      work.ActorFunc(builderPrintTest),
    			Deps:       []*work.Action{cleanAction},
    			Package:    p,
    			IgnoreFail: true, // print even if test failed
    		}
    	}
    
    	if len(ptest.GoFiles)+len(ptest.CgoFiles) > 0 {
    		addTestVet(b, ptest, vetRunAction, installAction)
    	}
    	if pxtest != nil {
    		addTestVet(b, pxtest, vetRunAction, installAction)
    	}
    
    	if installAction != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  3. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishJavaPlatformIntegTest.groovy

            then:
            javaPlatform.assertPublished()
            javaPlatform.assertNoDependencies()
    
            and:
            resolveArtifacts(javaPlatform) { noFiles() }
            resolveApiArtifacts(javaPlatform) { noFiles() }
            resolveRuntimeArtifacts(javaPlatform) { noFiles() }
        }
    
        def "can publish java-platform with constraints"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  4. src/runtime/env_plan9.go

    		env := make([]byte, len(name)+r)
    		copy(env, name)
    		copy(env[len(name):], buf[:r])
    		envs = append(envs, string(env))
    	})
    }
    
    // dofiles reads the directory opened with file descriptor fd, applying function f
    // to each filename in it.
    //
    //go:nosplit
    func dofiles(dirfd int32, f func([]byte)) {
    	dirbuf := new([dirBufSize]byte)
    
    	var off int64 = 0
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 02:39:39 UTC 2022
    - 3K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/ArtifactResolutionExpectationSpec.groovy

         * @param fileNames
         */
        void expectFiles(String... fileNames) {
            always {
                expectFiles(fileNames as List<String>)
            }
        }
    
        void noFiles() {
            always {
                noFiles()
            }
        }
    
        /**
         * Short-hand notation for expecting a list of files independently of the fact module metadata is used or not
         * @param fileNames
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonStarter.java

                builder.applicationClasspath(classPathRegistry.getClassPath("MINIMUM_WORKER_RUNTIME").getAsFiles());
                builder.useApplicationClassloaderOnly();
                builder.applicationClasspath(toFiles(flatClassLoaderStructure.getSpec()));
            } else {
                builder.applicationClasspath(classPathRegistry.getClassPath("CORE_WORKER_RUNTIME").getAsFiles());
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 14:39:33 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeMultipleSwiftProjectIntegrationTest.groovy

            rootXcodeWorkspace.contentFile.assertHasProjects("${rootProjectName}.xcodeproj", 'app/app.xcodeproj', 'cppGreeter/cppGreeter.xcodeproj', 'hello/hello.xcodeproj')
    
            def appSwiftIncludeDirs = toFiles(xcodeProject("app/app.xcodeproj").projectFile.indexTarget.getBuildSettings().SWIFT_INCLUDE_PATHS)
            appSwiftIncludeDirs.size() == 3
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 23.3K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/SingleArtifactResolutionResultSpec.groovy

        void expectFiles(String... fileNames) {
            expectFiles(fileNames as List<String>)
        }
    
        void expectFiles(List<String> fileNames) {
            expectedFileNames = fileNames.sort()
        }
    
        void noFiles() {
            expectedFileNames = []
        }
    
        void shouldFail(@DelegatesTo(value = ExecutionFailure, strategy = Closure.DELEGATE_FIRST) Closure<?> onFailure) {
            expectSuccess = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/fixtures/AbstractXcodeIntegrationSpec.groovy

            assert target.buildConfigurationList.buildConfigurations[1].buildSettings.CONFIGURATION_BUILD_DIR == file("build/install/main/release/lib").absolutePath
        }
    
        static List<TestFile> toFiles(Object includePath) {
            def includePathElements = Splitter.on('"').splitToList(String.valueOf(includePath))
            return includePathElements.grep({ !it.trim().empty }).collect { new TestFile(it) }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  10. docs/fr/docs/tutorial/first-steps.md

    Vous pourriez aussi l'utiliser pour générer du code automatiquement, pour les clients qui communiquent avec votre API. Comme par exemple, des applications frontend, mobiles ou IOT.
    
    ## Récapitulatif, étape par étape
    
    ### Étape 1 : import `FastAPI`
    
    ```Python hl_lines="1"
    {!../../../docs_src/first_steps/tutorial001.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 20:52:31 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top