Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 112 for runNames (0.17 sec)

  1. src/cmd/dist/test.go

    		xexit(1)
    	}
    }
    
    func (t *tester) shouldRunTest(name string) bool {
    	if t.runRx != nil {
    		return t.runRx.MatchString(name) == t.runRxWant
    	}
    	if len(t.runNames) == 0 {
    		return true
    	}
    	for _, runName := range t.runNames {
    		if runName == name {
    			return true
    		}
    	}
    	return false
    }
    
    func (t *tester) maybeLogMetadata() error {
    	if t.compileOnly {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. architecture/runtimes.md

    All source code in Gradle is written to target one or more of these runtimes.
    Most source code targets the daemon and the remaining code either targets a single runtime, for example the Gradle client, or is shared across multiple runtimes.
    
    ## Composition by architecture modules
    
    Each [architecture module and platform](platforms.md) can contribute code to any of the runtimes.
    Not every module contributes to every runtime.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. architecture/README.md

    While a lot of Gradle source code runs only in the Gradle daemon, not all of it does and so, when working on some source code it is important to be aware of the runtimes in which it will run.
    
    See [Gradle runtimes](runtimes.md) for a list of these runtimes and more details.
    
    ## Build state model
    
    As Gradle executes, it acts on various pieces of the build definition, such as each project in the build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. pkg/kubelet/cadvisor/helpers_linux.go

    // to its file system label for images.
    type imageFsInfoProvider struct {
    	runtimeEndpoint string
    }
    
    // ImageFsInfoLabel returns the image fs label for the configured runtime.
    // For remote runtimes, it handles additional runtimes natively understood by cAdvisor.
    func (i *imageFsInfoProvider) ImageFsInfoLabel() (string, error) {
    	if detectCrioWorkaround(i) {
    		return cadvisorfs.LabelCrioImages, nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:15:53 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. src/go/types/generate_test.go

    	m := makeRenameMap(renames...)
    	ast.Inspect(f, func(n ast.Node) bool {
    		switch n := n.(type) {
    		case *ast.SelectorExpr:
    			m.renameSel(n)
    			return false
    		}
    		return true
    	})
    }
    
    // renameImportPath is like renameIdents but renames import paths.
    func renameImportPath(f *ast.File, renames ...string) {
    	m := makeRenameMap(renames...)
    	ast.Inspect(f, func(n ast.Node) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  6. pkg/kubelet/cadvisor/helpers_unsupported.go

    */
    
    package cadvisor
    
    import "errors"
    
    type unsupportedImageFsInfoProvider struct{}
    
    // ImageFsInfoLabel returns the image fs label for the configured runtime.
    // For remote runtimes, it handles additional runtimes natively understood by cAdvisor.
    func (i *unsupportedImageFsInfoProvider) ImageFsInfoLabel() (string, error) {
    	return "", errors.New("unsupported")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitSmokeMultiVersionIntegrationTest.groovy

                import junit.framework.TestCase;
    
                public class Junit3Test extends TestCase {
                    public void testRenamesItself() {
                        setName("a test that renames itself");
                        fail("epic");
                    }
                }
            """.stripIndent()
            file('src/test/java/org/gradle/Junit4Test.java') << """
                package org.gradle;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. architecture/platforms.md

    This platform does not provide special support for a particular kind of automation. This is the responsibility of other platforms.
    
    It is made up of 3 architecture modules:
    
    - **core-runtime**: Provides the runtimes or "containers" in which code runs. These runtimes include the Gradle client, the daemon and the worker processes. This is the base module on which all other architecture modules depend.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 06:42:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JvmVendorSpec.java

        /**
         * A constant for using <a href="https://developer.ibm.com/languages/java/semeru-runtimes/">IBM Semeru Runtimes</a> as the JVM vendor.
         *
         * @since 7.4
         * @deprecated We are grouping all IBM runtimes under the '{@code IBM}' vendor, won't keep a separate constant for Semeru ones. Just use '{@code IBM}' instead.
         */
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. src/crypto/internal/boring/build-goboring.sh

    awk '{print $0 " _goboringcrypto_" $0 }' syms.txt >renames.txt
    objcopy --globalize-symbol=BORINGSSL_bcm_power_on_self_test \
    	../boringssl/build/crypto/libcrypto.a libcrypto.a
    
    # Link together bcm.o and libcrypto.a into a single object.
    ld -r -nostdlib --whole-archive -o goboringcrypto.o libcrypto.a $extra
    
    echo __umodti3 _goboringcrypto___umodti3 >>renames.txt
    echo __udivti3 _goboringcrypto___udivti3 >>renames.txt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 26 22:52:27 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top