Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 203 for flive (0.05 sec)

  1. src/runtime/map.go

    	buckets     unsafe.Pointer // bucket ptr at hash_iter initialization time
    	bptr        *bmap          // current bucket
    	overflow    *[]*bmap       // keeps overflow buckets of hmap.buckets alive
    	oldoverflow *[]*bmap       // keeps overflow buckets of hmap.oldbuckets alive
    	startBucket uintptr        // bucket iteration started at
    	offset      uint8          // intra-bucket offset to start from during iteration (should be big enough to hold bucketCnt-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. src/runtime/gc_test.go

    	if got&want != want {
    		// This is a serious bug - an object is live (due to the KeepAlive
    		// call below), but isn't reported as such.
    		t.Fatalf("live object not in reachable set; want %b, got %b", want, got)
    	}
    	if bits.OnesCount64(got&^want) > 1 {
    		// Note: we can occasionally have a value that is retained even though
    		// it isn't live, due to conservative scanning of stack frames.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. src/cmd/test2json/main.go

    // It writes a corresponding stream of JSON events to standard output.
    // There is no unnecessary input or output buffering, so that
    // the JSON stream can be read for “live updates” of test status.
    //
    // The -p flag sets the package reported in each test event.
    //
    // The -t flag requests that time stamps be added to each test event.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. manifests/charts/base/crds/crd-all.gen.yaml

                                      properties:
                                        interval:
                                          description: The time duration between keep-alive
                                            probes.
                                          type: string
                                          x-kubernetes-validations:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/UnsupportedTypesCodecs.kt

    import java.io.RandomAccessFile
    import java.net.ServerSocket
    import java.net.Socket
    import java.util.concurrent.Executor
    import java.util.concurrent.ThreadFactory
    
    
    fun BindingsBuilder.unsupportedTypes() {
    
        // Live JVM state
        bind(unsupported<ClassLoader>())
        bind(unsupported<Thread>())
        bind(unsupported<ThreadFactory>())
        bind(unsupported<Executor>())
        bind(unsupported<FileDescriptor>())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. internal/config/identity/openid/openid.go

    		if kvsrc.Src == config.ValueSourceDef {
    			if kvsrc.Key != madmin.EnableKey {
    				continue
    			}
    			// for EnableKey we set an explicit on/off from live configuration
    			// if it is present.
    			if _, ok := r.ProviderCfgs[cfgName]; !ok {
    				// No live config is present
    				continue
    			}
    			if r.Enabled {
    				kvsrc.Value = "on"
    			} else {
    				kvsrc.Value = "off"
    			}
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  7. src/runtime/mheap.go

    type specialfinalizer struct {
    	_       sys.NotInHeap
    	special special
    	fn      *funcval // May be a heap pointer.
    	nret    uintptr
    	fint    *_type   // May be a heap pointer, but always live.
    	ot      *ptrtype // May be a heap pointer, but always live.
    }
    
    // Adds a finalizer to the object p. Returns true if it succeeded.
    func addfinalizer(p unsafe.Pointer, f *funcval, nret uintptr, fint *_type, ot *ptrtype) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheUnsupportedTypesIntegrationTest.groovy

            outputContains("beanWithSameType.reference = null")
    
            where:
            concreteType                          | baseType                       | reference
            // Live JVM state
            ScriptClassLoader                     | ClassLoader                    | "getClass().classLoader"
            Thread                                | Thread                         | "Thread.currentThread()"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  9. pkg/bootstrap/instance_test.go

    				"ISTIO_METAJSON_LABELS":        `{"version": "v1alpha1", "app": "test", "istio-locality":"regionA.zoneB.sub_zoneC"}`,
    			},
    			annotations: map[string]string{
    				"istio.io/insecurepath": "{\"paths\":[\"/metrics\",\"/live\"]}",
    			},
    			checkLocality: true,
    		},
    		{
    			base: "runningsds",
    			envVars: map[string]string{
    				"ISTIO_META_ISTIO_PROXY_SHA":   "istio-proxy:sha",
    				"ISTIO_META_INTERCEPTION_MODE": "REDIRECT",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. src/reflect/value.go

    				fl := flagIndir | flag(tv.Kind())
    				ret[i] = Value{tv, add(stackArgs, st.stkOff, "tv.Size() != 0"), fl}
    				// Note: this does introduce false sharing between results -
    				// if any result is live, they are all live.
    				// (And the space for the args is live as well, but as we've
    				// cleared that space it isn't as big a deal.)
    				continue
    			}
    
    			// Handle pointers passed in registers.
    			if !tv.IfaceIndir() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top