Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 420 for pinned (0.16 sec)

  1. src/internal/reflectlite/tostring_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Formatting of reflection types and values for debugging.
    // Not defined as methods so they do not need to be linked into most binaries;
    // the functions are not used by the library itself, only in tests.
    
    package reflectlite_test
    
    import (
    	. "internal/reflectlite"
    	"reflect"
    	"strconv"
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 26 14:24:17 UTC 2021
    - 2.4K bytes
    - Viewed (0)
  2. docs/sts/keycloak.md

    client_id     (string)    unique public identifier for apps e.g. "292085223830.apps.googleusercontent.com"
    claim_name    (string)    JWT canned policy claim name, defaults to "policy"
    claim_prefix  (string)    JWT claim namespace prefix e.g. "customer1/"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheInputListenerLifecycleIntegrationTest.groovy

            given:
            def configurationCache = newConfigurationCacheFixture()
    
            and: "a project that has a provider having undeclared configuration inputs, which is linked to a task"
            buildFile("""
                abstract class MyTask extends DefaultTask {
                    @Input
                    abstract Property<String> getMyProperty();
    
                    @OutputFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. platforms/jvm/language-jvm/src/main/java/org/gradle/api/plugins/FeatureSpec.java

         * See also {@link JavaPluginExtension#withJavadocJar()}.
         *
         * @since 6.0
         */
        void withJavadocJar();
    
        /**
         * Automatically package sources from the linked {@link #usingSourceSet(SourceSet) SourceSet} and register the produced JAR as a variant.
         * See also {@link JavaPluginExtension#withSourcesJar()}.
         *
         * @since 6.0
         */
        void withSourcesJar();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/cpp/CppBinary.java

    import org.gradle.language.cpp.tasks.CppCompile;
    import org.gradle.language.nativeplatform.ComponentWithObjectFiles;
    import org.gradle.nativeplatform.Linkage;
    
    /**
     * A binary built from C++ source and linked from the resulting object files.
     *
     * @since 4.2
     */
    public interface CppBinary extends ComponentWithObjectFiles, ComponentWithDependencies, BuildableComponent {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLanguageParallelIntegrationTest.groovy

                app.greetingsSources*.writeToDir(file("src/${name}Greetings"))
    
                buildFile << """
                    model {
                        // Allow static libraries to be linked into shared
                        binaries {
                            withType(StaticLibraryBinarySpec) {
                                if (toolChain in Gcc || toolChain in Clang) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  7. src/syscall/exec_freebsd_test.go

    	}
    
    	jid, root := prepareJail(t)
    
    	// Since jail attach does an implicit chroot to the jail's path,
    	// we need the binary there, and it must be statically linked.
    	x := filepath.Join(root, "syscall.test")
    	cmd := exec.Command(testenv.GoToolPath(t), "test", "-c", "-o", x, "syscall")
    	cmd.Env = append(os.Environ(), "CGO_ENABLED=0")
    	if o, err := cmd.CombinedOutput(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 22 20:38:48 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/readme-templates/native-application-body.adoc.template

    To learn more, have a look at their respective linked documentation to configure those IDE integration in your project.
    
    == Run the application
    
    Look inside the `build` folder and you will notice the appearance of an `exe` folder.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

    //
    // Authors: Dan Egnor (******@****.***)
    //
    // A "smart" pointer type with reference tracking.  Every pointer to a
    // particular object is kept on a circular linked list.  When the last pointer
    // to an object is destroyed or reassigned, the object is deleted.
    //
    // Used properly, this deletes the object when the last reference goes away.
    // There are several caveats:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  10. platforms/native/language-native/src/main/java/org/gradle/language/swift/SwiftComponent.java

     * Configuration for a Swift component, such as a library or executable, defining the source files that make up the component plus other settings.
     *
     * <p>Swift component is composed of some Swift source files that are compiled and then linked into some binary.</p>
     *
     * <p>An instance of this type is added as a project extension by the Swift plugins.</p>
     *
     * @since 4.2
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top