Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 125 for Unshare (0.11 sec)

  1. src/go/types/subst.go

    		sig := method.Signature()
    		if sig.recv != nil && sig.recv.Type() == old {
    			if !copied {
    				// Allocate a new methods slice before mutating for the first time.
    				// This is defensive, as we may share methods across instantiations of
    				// a given interface type if they do not get substituted.
    				out = make([]*Func, len(in))
    				copy(out, in)
    				copied = true
    			}
    			newsig := *sig
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. src/go/types/unify.go

    	// Initially, each type parameter has its own, separate handle,
    	// with a nil (i.e., not yet inferred) type.
    	// After a type parameter P is unified with a type parameter Q,
    	// P and Q share the same handle (and thus type). This ensures
    	// that inferring the type for a given type parameter P will
    	// automatically infer the same type for all other parameters
    	// unified (joined) with P.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1/types.go

    	// a volume might contain data that gets created specifically for that pod,
    	// like secrets.
    	// But how the volume actually gets created and managed is entirely up to
    	// the driver. It might also use reference counting to share the same volume
    	// instance among different pods if the CSIVolumeSource of those pods is
    	// identical.
    	VolumeLifecycleEphemeral VolumeLifecycleMode = "Ephemeral"
    )
    
    // +genclient
    // +genclient:nonNamespaced
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  4. src/unsafe/unsafe.go

    // but silence from "go vet" is not a guarantee that the code is valid.
    //
    // (1) Conversion of a *T1 to Pointer to *T2.
    //
    // Provided that T2 is no larger than T1 and that the two share an equivalent
    // memory layout, this conversion allows reinterpreting data of one type as
    // data of another type. An example is the implementation of
    // math.Float64bits:
    //
    //	func Float64bits(f float64) uint64 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 19:45:20 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_server_test.go

    				return errors.New("expected HelloRetryRequest")
    			}
    			return nil
    		},
    	}
    	runServerTestTLS13(t, test)
    }
    
    // TestHandshakeServerKeySharePreference checks that we prefer a key share even
    // if it's later in the CurvePreferences order.
    func TestHandshakeServerKeySharePreference(t *testing.T) {
    	config := testConfig.Clone()
    	config.CurvePreferences = []CurveID{X25519, CurveP256}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/security/oauth2-jwt.md

    ```
    
    </div>
    
    !!! tip
        With `passlib`, you could even configure it to be able to read passwords created by **Django**, a **Flask** security plug-in or many others.
    
        So, you would be able to, for example, share the same data from a Django application in a database with a FastAPI application. Or gradually migrate a Django application using the same database.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. src/internal/trace/oldtrace.go

    	}
    
    	it.evt.strings.compactify()
    
    	// Convert stacks.
    	for id, stk := range pr.Stacks {
    		evt.stacks.insert(stackID(id), stack{pcs: stk})
    	}
    
    	// OPT(dh): if we could share the frame type between this package and
    	// oldtrace we wouldn't have to copy the map.
    	for pc, f := range pr.PCs {
    		evt.pcs[pc] = frame{
    			pc:     pc,
    			funcID: stringID(f.Fn),
    			fileID: stringID(f.File),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/unify.go

    	// Initially, each type parameter has its own, separate handle,
    	// with a nil (i.e., not yet inferred) type.
    	// After a type parameter P is unified with a type parameter Q,
    	// P and Q share the same handle (and thus type). This ensures
    	// that inferring the type for a given type parameter P will
    	// automatically infer the same type for all other parameters
    	// unified (joined) with P.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitorSpec.groovy

    usr\\bin\\mintty.exe -o AppID=GitForWindows.Bash -o RelaunchCommand="C:\\Program Files\\Git\\git-bash.exe" -o RelaunchDisplayName="Git Bash" -i /mingw64/share/git/git-for-windows.ico /usr/bin/bash --login -i      7788
    \\??\\C:\\Windows\\system32\\conhost.exe "472490228-68470907838922115481214932-363220106-1296027029-1014590852-1678361664 7824
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  10. src/text/template/exec.go

    // execution stops, but partial results may already have been written to
    // the output writer.
    // A template may be executed safely in parallel, although if parallel
    // executions share a Writer the output may be interleaved.
    func (t *Template) ExecuteTemplate(wr io.Writer, name string, data any) error {
    	tmpl := t.Lookup(name)
    	if tmpl == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:22:24 UTC 2024
    - 32K bytes
    - Viewed (0)
Back to top