Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 648 for Unshare (0.23 sec)

  1. src/syscall/exec_windows_test.go

    		{`C:\Windows\temp`, `C:\Windows\temp`},
    		{`c:\temp\newfile`, `c:\temp\newfile`},
    		{`\\?\C:\Windows`, `\\?\C:\Windows`},
    		{`\\?\`, `\\?\`},
    		{`\\.\C:\Windows\`, `\\.\C:\Windows\`},
    		{`\\server\share\file`, `\\server\share\file`},
    		{`\\newserver\tempshare\really.txt`, `\\newserver\tempshare\really.txt`},
    	}
    	for _, test := range tests {
    		if got := syscall.EscapeArg(test.input); got != test.output {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. src/syscall/tables_js.go

    	"ENOMEDIUM":       ENOMEDIUM,
    	"ECANCELED":       ECANCELED,
    	"ELBIN":           ELBIN,
    	"EFTYPE":          EFTYPE,
    	"ENMFILE":         ENMFILE,
    	"EPROCLIM":        EPROCLIM,
    	"ENOSHARE":        ENOSHARE,
    	"ECASECLASH":      ECASECLASH,
    	"EWOULDBLOCK":     EWOULDBLOCK,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 19.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/swift/testReport/groovy/buildSrc/src/main/groovy/myproject.xctest-conventions.gradle

    }
    
    xctest {
        binaries.configureEach {
            runTask.get().configure {
                // Disable the test report for the individual test task
                reports.html.required = false
            }
        }
    }
    
    // Share the test report data to be aggregated for the whole project
    configurations {
        binaryTestResultsElements {
            canBeResolved = false
            attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 772 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/modelingFeatures-crossProjectPublications-simple/groovy/producer/build.gradle

    plugins {
        id 'java-library'
    }
    
    // tag::declare-outgoing-configuration[]
    configurations {
        instrumentedJars {
            canBeConsumed = true
            canBeResolved = false
            // If you want this configuration to share the same dependencies, otherwise omit this line
            extendsFrom implementation, runtimeOnly
        }
    }
    // end::declare-outgoing-configuration[]
    
    def instrumentedJar = tasks.register("instrumentedJar", Jar) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 785 bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/SmbSession.java

            connectionState = 0;
        }
    
        synchronized SmbTree getSmbTree( String share, String service ) {
            SmbTree t;
    
            if( share == null ) {
                share = "IPC$";
            }
            for( Enumeration e = trees.elements(); e.hasMoreElements(); ) {
                t = (SmbTree)e.nextElement();
                if( t.matches( share, service )) {
                    return t;
                }
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 18.6K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/mod/rsc.io_quote_v2.0.0.txt

    	// See http://www.oocities.org/nodotus/hbglass.html.
    	return "I can eat glass and it doesn't hurt me."
    }
    
    // Go returns a Go proverb.
    func GoV2() string {
    	return "Don't communicate by sharing memory, share memory by communicating."
    }
    
    // Opt returns an optimization truth.
    func OptV2() string {
    	// Wisdom from ken.
    	return "If a program is too slow, it must have a loop."
    }
    -- quote_test.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 20 15:30:21 UTC 2018
    - 2K bytes
    - Viewed (0)
  7. src/embed/internal/embedtest/embedx_test.go

    	glass[0]++
    	if glass2[0] != glass[0] {
    		t.Fatalf("glass and glass2 do not share storage")
    	}
    	glass[0] = old
    
    	// Could check &bbig[0] == &bbig2[0] but also want to make sure write does not fault
    	// (data must not be in read-only memory).
    	old = bbig[0]
    	bbig[0]++
    	if bbig2[0] != bbig[0] {
    		t.Fatalf("bbig and bbig2 do not share storage")
    	}
    	bbig[0] = old
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 15 20:37:17 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ScriptClassloadingIntegrationTest.groovy

                file('project1/version.txt') << '3.4'
                file('project2/version.txt') << '3.3'
    
                switch (sharedScriptFileType) {
                    case SHARED_SCRIPTPLUGIN:
                        // share the same script file by applying it as a script plugin in the subproject's build file
                        subprojectNames.each { subprojectName ->
                            file("${subprojectName}/build.gradle") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/cross-project-output-sharing/README.adoc

    You want to share a file made by a task in one project with a task in another project.
    For example, one task makes a file, and the other task reads the file and uses some information inside it.
    This is one way you can share information across project boundaries. (Another way is to use extension objects.)
    
    [NOTE]
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/mock/discovery_mock.go

    			"spiffe://cluster.local/ns/default/sa/foo-share",
    		},
    		ClusterID: "",
    	})
    	ReplicatedFooServiceV2 = MakeService(ServiceArgs{
    		Hostname: ReplicatedFooServiceName,
    		Address:  "10.3.0.1",
    		ServiceAccounts: []string{
    			"spiffe://cluster.local/ns/default/sa/foo2",
    			"spiffe://cluster.local/ns/default/sa/foo-share",
    		},
    		ClusterID: "",
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 23 02:37:56 UTC 2022
    - 2.7K bytes
    - Viewed (0)
Back to top