Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,736 for shared (0.3 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/informers/externalversions/cr/v1/example.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	watch "k8s.io/apimachinery/pkg/watch"
    	cache "k8s.io/client-go/tools/cache"
    )
    
    // ExampleInformer provides access to a shared informer and lister for
    // Examples.
    type ExampleInformer interface {
    	Informer() cache.SharedIndexInformer
    	Lister() v1.ExampleLister
    }
    
    type exampleInformer struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 08 02:16:47 UTC 2020
    - 3.5K bytes
    - Viewed (0)
  2. src/mime/type_unix.go

    	"os"
    	"strings"
    )
    
    func init() {
    	osInitMime = initMimeUnix
    }
    
    // See https://specifications.freedesktop.org/shared-mime-info-spec/shared-mime-info-spec-0.21.html
    // for the FreeDesktop Shared MIME-info Database specification.
    var mimeGlobs = []string{
    	"/usr/local/share/mime/globs2",
    	"/usr/share/mime/globs2",
    }
    
    // Common locations for mime.types files on unix.
    var typeFiles = []string{
    	"/etc/mime.types",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 20:56:32 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/play/integtest/fixtures/external/PlayApp.groovy

            sourceFiles("public", "shared")
        }
    
        List<SourceFile> getAppSources() {
            return sourceFiles("app").findAll {
                it.path != "app/views"
            }
        }
    
        List<SourceFile> getViewSources() {
            return sourceFiles("app/views");
        }
    
        List<SourceFile> getConfSources() {
            return sourceFiles("conf", "shared") + sourceFiles("conf")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. build-logic-commons/settings.gradle.kts

        }
    }
    
    plugins {
        id("org.gradle.toolchains.foojay-resolver-convention") version("0.8.0")
    }
    
    includeBuild("../build-logic-settings")
    
    // Shared basics for all
    include("basics")
    
    // Platform: defines shared dependency versions
    include("build-platform")
    
    // Compute the identity/version we are building and related details (like current git commit)
    include("module-identity")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 11:54:19 UTC 2024
    - 1.3K bytes
    - Viewed (1)
  5. src/cmd/go/internal/work/gccgo.go

    		}
    
    		realOut = out
    		out = out + ".o"
    
    	case "c-shared":
    		ldflags = append(ldflags, "-shared", "-nostdlib")
    		if cfg.Goos != "windows" {
    			ldflags = append(ldflags, "-Wl,-z,nodelete")
    		}
    		ldflags = append(ldflags, goLibBegin...)
    		ldflags = append(ldflags, "-lgo", "-lgcc_s", "-lgcc", "-lc", "-lgcc")
    
    	case "shared":
    		if cfg.Goos != "aix" {
    			ldflags = append(ldflags, "-zdefs")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:18:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/build-organization/sharing-convention-plugins-with-build-logic/README.adoc

    This sample shows how _convention plugins_ can be shared and applied to both the production code and the build logic code in _buildSrc_.
    
    Let's use the following project structure:
    ====
    [.multi-language-sample]
    =====
    .Project structure
    [source, kotlin]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. src/internal/fuzz/worker.go

    	// Count is the number of values tested.
    	Count int64
    
    	// CoverageData is set if the value in shared memory expands coverage
    	// and therefore may be interesting to the coordinator.
    	CoverageData []byte
    
    	// Err is the error string caused by the value in shared memory, which is
    	// non-empty if the value in shared memory caused a crash.
    	Err string
    
    	// InternalErr is the error string caused by an internal error in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/StdioIntegrationTest.groovy

    class StdioIntegrationTest extends AbstractIntegrationSpec {
        def setup() {
            executer.requireDaemon()
            // This isn't actually required - the test is fine with shared daemons
            // In fact, it would be much better to test this feature using shared daemons
            executer.requireIsolatedDaemons()
        }
    
        def "task can read stdin when stdin has bounded length"() {
            given:
            buildFile << '''
    task echo {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 30 05:02:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/multiproject/dependencies-java/groovy/settings.gradle

    rootProject.name = 'dependencies-java'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 90 bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectState.java

         *
         * <p>When parallel execution is disabled, the lock is shared between projects within a build, and each build in the build tree has its own shared lock.
         */
        ResourceLock getAccessLock();
    
        /**
         * Returns the lock that should be acquired by non-isolated tasks from this project prior to execution.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 20 08:25:03 UTC 2022
    - 5.3K bytes
    - Viewed (0)
Back to top