Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 648 for Unshare (0.14 sec)

  1. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180709153244-fd906ed3b100.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: Thu Jul 12 20:46:50 UTC 2018
    - 2K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/mod/rsc.io_quote_v2_v2.0.1.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: Thu Jul 12 20:46:50 UTC 2018
    - 2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/mod/rsc.io_quote_v1.4.0.txt

    func Glass() string {
    	// 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 Go() string {
    	return "Don't communicate by sharing memory, share memory by communicating."
    }
    
    // Opt returns an optimization truth.
    func Opt() 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: Thu Jul 12 20:46:50 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  4. cluster/gce/manifests/cluster-autoscaler.manifest

                        },
                        {
                            "name": "usrsharecacerts",
                            "readOnly": true,
                            "mountPath": "/usr/share/ca-certificates"
                        },
                        {
                            "name": "srvkube",
                            "readOnly": true,
                            "mountPath": "/etc/srv/kubernetes/cluster-autoscaler"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 25 00:04:35 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/scopeids/id/BuildInvocationScopeId.java

     * For example, buildSrc shares the same build scope ID as the overall build.
     * All composite participants also share the same build scope ID.
     * That is, all “nested” build trees (in terms of GradleLauncher, GradleBuild etc.) share the same build invocation ID.
     *
     * This ID is, by definition, not persistent.
     */
    @ServiceScope(Scope.BuildTree.class)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. src/runtime/os_linux.go

    	// flags to be set when creating a thread; attempts to share the other
    	// five but leave SYSVSEM unshared will fail with -EINVAL.
    	//
    	// In non-QEMU environments CLONE_SYSVSEM is inconsequential as we do not
    	// use System V semaphores.
    
    	cloneFlags = _CLONE_VM | /* share memory */
    		_CLONE_FS | /* share cwd, etc */
    		_CLONE_FILES | /* share fd table */
    		_CLONE_SIGHAND | /* share sig handler table */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  7. cluster/gce/manifests/kube-proxy.manifest

        securityContext:
          privileged: true
        volumeMounts:
        - mountPath: /etc/ssl/certs
          name: etc-ssl-certs
          readOnly: true
        - mountPath: /usr/share/ca-certificates
          name: usr-ca-certs
          readOnly: true
        - mountPath: /var/log
          name: varlog
          readOnly: false
        - mountPath: /var/lib/kube-proxy/kubeconfig
          name: kubeconfig
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/mod/rsc.io_quote_v0.0.0-20180628003336-dd9747d19b04.txt

    func Glass() string {
    	// 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 Go() string {
    	return "Don't communicate by sharing memory, share memory by communicating."
    }
    
    // Opt returns an optimization truth.
    func Opt() 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: Thu Jul 12 20:46:50 UTC 2018
    - 2.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/web/url_windows_test.go

    		filePath:     `c:\path\to\file`,
    		canonicalURL: `file:///c:/path/to/file`,
    	},
    
    	// We encode the UNC share name as the authority following section E.3.1,
    	// because that is what the Microsoft blog post explicitly recommends.
    	{
    		url:      `file://host.example.com/Share/path/to/file.txt`,
    		filePath: `\\host.example.com\Share\path\to\file.txt`,
    	},
    
    	// We decline the four- and five-slash variations from section E.3.2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:43:51 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  10. ReadMe.md

     * [Kotlin Multiplatform Benefits](https://kotlinlang.org/docs/reference/multiplatform.html)
     * [Share code on all platforms](https://kotlinlang.org/docs/reference/mpp-share-on-platforms.html#share-code-on-all-platforms)
     * [Share code on similar platforms](https://kotlinlang.org/docs/reference/mpp-share-on-platforms.html#share-code-on-similar-platforms)
    
    ## Editing Kotlin
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top