Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,314 for Storep (0.16 sec)

  1. src/runtime/mcache.go

    // of gclinkptr values. Code should store references to gclinks
    // as gclinkptr, not as *gclink.
    type gclink struct {
    	next gclinkptr
    }
    
    // A gclinkptr is a pointer to a gclink, but it is opaque
    // to the garbage collector.
    type gclinkptr uintptr
    
    // ptr returns the *gclink form of p.
    // The result should be used for accessing fields, not stored
    // in other data structures.
    func (p gclinkptr) ptr() *gclink {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/discovery/aggregated/handler.go

    		GroupPriorityMinimum: groupPriorityMinimum,
    		VersionPriority:      versionPriority,
    	}
    	rdm.cache.Store(nil)
    }
    
    func (rdm *resourceDiscoveryManager) SetGroups(source Source, groups []apidiscoveryv2.APIGroupDiscovery) {
    	rdm.lock.Lock()
    	defer rdm.lock.Unlock()
    
    	rdm.apiGroups = nil
    	rdm.cache.Store(nil)
    
    	for _, group := range groups {
    		for _, version := range group.Versions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 00:29:39 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/build_environment.adoc

    |`gradle.properties` file
    |`GRADLE_USER_HOME`
    |Stored in a `gradle.properties` file in the `<<directory_layout.adoc#dir:gradle_user_home,GRADLE_USER_HOME>>`.
    
    |3
    |`gradle.properties` file
    |Project Root Dir
    |Stored in a `gradle.properties` file in a project directory, then its parent project’s directory up to the project’s root directory.
    
    |4
    |`gradle.properties` file
    |`GRADLE_HOME`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  4. src/runtime/mwbbuf.go

    	// pointer type because it points past the end of buf and must
    	// be updated without write barriers.
    	end uintptr
    
    	// buf stores a series of pointers to execute write barriers on.
    	buf [wbBufEntries]uintptr
    }
    
    const (
    	// wbBufEntries is the maximum number of pointers that can be
    	// stored in the write barrier buffer.
    	//
    	// This trades latency for throughput amortization. Higher
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "FMOVDstore", argLength: 3, reg: fpstore, aux: "SymOff", asm: "FMOVD", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"}, // store 8 bytes of arg1 to arg0 + auxInt + aux.  arg2=mem.
    
    		// register indexed store
    		{name: "MOVBstoreidx", argLength: 4, reg: gpstore2, asm: "MOVB", typ: "Mem"},   // store 1 byte of arg2 to arg0 + arg1, arg3 = mem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/archive/ZipEntry.java

         */
        enum ZipCompressionMethod {
            /**
             * The entry is compressed with DEFLATE algorithm.
             */
            DEFLATED,
    
            /**
             * The entry is stored uncompressed.
             */
            STORED,
            /**
             * The entry is compressed with some other method (Zip spec declares about a dozen of these).
             */
            OTHER,
        }
    
        boolean isDirectory();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 12:11:00 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/etcd3/metrics/metrics.go

    		},
    		[]string{"operation", "type"},
    	)
    	objectCounts = compbasemetrics.NewGaugeVec(
    		&compbasemetrics.GaugeOpts{
    			Name:           "apiserver_storage_objects",
    			Help:           "Number of stored objects at the time of last check split by kind. In case of a fetching error, the value will be -1.",
    			StabilityLevel: compbasemetrics.STABLE,
    		},
    		[]string{"resource"},
    	)
    	dbTotalSize = compbasemetrics.NewGaugeVec(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 21:15:32 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/config.go

    		c.hasGReg = true
    		c.unalignedOK = true
    		// Note: ppc64 has register bswap ops only when GOPPC64>=10.
    		// But it has bswap+load and bswap+store ops for all ppc64 variants.
    		// That is the sense we're using them here - they are only used
    		// in contexts where they can be merged with a load or store.
    		c.haveBswap64 = true
    		c.haveBswap32 = true
    		c.haveBswap16 = true
    	case "mips64":
    		c.BigEndian = true
    		fallthrough
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. src/net/http/main_test.go

    	// report the goroutines from a test that is still running as a leak from a
    	// completely separate test that has just finished. So we use non-atomic loads
    	// and stores for the leakReported variable, and store every time we start a
    	// leak check so that the race detector will flag concurrent leak checks as a
    	// race even if we don't detect any leaks.
    	leakReported = true
    
    	var bad string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:49:46 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcProblemReportingIntegrationTest.groovy

                    doLast { }
                }
            """
    
            when:
            configurationCacheRun("ok")
    
            then:
            result.assertHasPostBuildOutput("Configuration cache entry stored.")
    
            when:
            configurationCacheRun("ok")
    
            then:
            result.assertHasPostBuildOutput("Configuration cache entry reused.")
    
            when:
            configurationCacheFails("broken")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top