Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 165 for shared (0.11 sec)

  1. pilot/pkg/features/pilot.go

    			"These checks are extremely expensive, so this should be used only for testing, not production.",
    	).Get()
    
    	SharedMeshConfig = env.Register("SHARED_MESH_CONFIG", "",
    		"Additional config map to load for shared MeshConfig settings. The standard mesh config will take precedence.").Get()
    
    	MultiRootMesh = env.Register("ISTIO_MULTIROOT_MESH", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/plugins.adoc

    Plugins are available in three ways:
    
    1. **Core plugins** - Gradle develops and maintains a set of <<plugin_reference#plugin_reference,Core Plugins>>.
    2. **Community plugins** - Gradle plugins shared in a remote repository such as Maven or the https://plugins.gradle.org[Gradle Plugin Portal].
    3. **Local plugins** - Gradle enables users to create *custom* plugins using link:{javadocPath}/org/gradle/api/Plugin.html[APIs].
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/obj9.go

    		// which is the address of function entry point when entering
    		// the function. We need to preserve R2 across call to morestack.
    		// Fortunately, in shared mode, 8(SP) and 16(SP) are reserved in
    		// the caller's frame, but not used (0(SP) is caller's saved LR,
    		// 24(SP) is caller's saved R2). Use 8(SP) to save this function's R2.
    		// MOVD R2, 8(SP)
    		p = obj.Appendp(p, c.newprog)
    		p.As = AMOVD
    		p.From.Type = obj.TYPE_REG
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  4. src/runtime/signal_unix.go

    //
    //go:nosplit
    //go:nowritebarrierrec
    func initsig(preinit bool) {
    	if !preinit {
    		// It's now OK for signal handlers to run.
    		signalsOK = true
    	}
    
    	// For c-archive/c-shared this is called by libpreinit with
    	// preinit == true.
    	if (isarchive || islibrary) && !preinit {
    		return
    	}
    
    	for i := uint32(0); i < _NSIG; i++ {
    		t := &sigtable[i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

            javaClassFile("com/example/Foo.class").assertDoesNotExist()
        }
    
        def "implementation dependencies should not leak into compile classpath of consumer"() {
            mavenRepo.module('org.gradle.test', 'shared', '1.0').publish()
            mavenRepo.module('org.gradle.test', 'other', '1.0').publish()
    
            given:
            settingsFile << "include 'a', 'b'"
            buildFile << """
                allprojects {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  6. src/go/types/instantiate.go

    // *Signature origin types are only considered identical if they are pointer
    // equivalent, so that instantiating distinct (but possibly identical)
    // signatures will yield different instances. The use of a shared context does
    // not guarantee that identical instances are deduplicated in all cases.
    //
    // If validate is set, Instantiate verifies that the number of type arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. src/net/net.go

    	return err
    }
    
    // LocalAddr returns the local network address.
    // The Addr returned is shared by all invocations of LocalAddr, so
    // do not modify it.
    func (c *conn) LocalAddr() Addr {
    	if !c.ok() {
    		return nil
    	}
    	return c.fd.laddr
    }
    
    // RemoteAddr returns the remote network address.
    // The Addr returned is shared by all invocations of RemoteAddr, so
    // do not modify it.
    func (c *conn) RemoteAddr() Addr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         */
        @Nonnull
        @Override
        public String[] option(Iterable<? extends Path> paths) {
            return format(null, paths);
        }
    
        /**
         * Implementation shared with {@link Modular}.
         */
        final String[] format(String moduleName, Iterable<? extends Path> paths) {
            if (option == null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. cmd/server-main.go

      distributed setup are encoded as HTTP(s) URIs.
    {{if .VisibleFlags}}
    FLAGS:
      {{range .VisibleFlags}}{{.}}
      {{end}}{{end}}
    EXAMPLES:
      1. Start MinIO server on "/home/shared" directory.
         {{.Prompt}} {{.HelpName}} /home/shared
    
      2. Start single node server with 64 local drives "/mnt/data1" to "/mnt/data64".
         {{.Prompt}} {{.HelpName}} /mnt/data{1...64}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (1)
  10. src/cmd/compile/internal/types2/instantiate.go

    // *Signature origin types are only considered identical if they are pointer
    // equivalent, so that instantiating distinct (but possibly identical)
    // signatures will yield different instances. The use of a shared context does
    // not guarantee that identical instances are deduplicated in all cases.
    //
    // If validate is set, Instantiate verifies that the number of type arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top