Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 2,588 for Storep (0.48 sec)

  1. pkg/kubelet/certificate/bootstrap/bootstrap.go

    	if err != nil {
    		return fmt.Errorf("unable to create certificates signing request client: %v", err)
    	}
    
    	store, err := certificate.NewFileStore("kubelet-client", certDir, certDir, "", "")
    	if err != nil {
    		return fmt.Errorf("unable to build bootstrap cert store")
    	}
    
    	var keyData []byte
    	if cert, err := store.Current(); err == nil {
    		if cert.PrivateKey != nil {
    			keyData, err = keyutil.MarshalPrivateKeyToPEM(cert.PrivateKey)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  2. src/cmd/internal/buildid/buildid.go

    	}
    )
    
    var readSize = 32 * 1024 // changed for testing
    
    // readBinary reads the build ID from a binary.
    //
    // ELF binaries store the build ID in a proper PT_NOTE section.
    //
    // Other binary formats are not so flexible. For those, the linker
    // stores the build ID as non-instruction bytes at the very beginning
    // of the text segment, which should appear near the beginning
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 28 21:52:53 UTC 2020
    - 9K bytes
    - Viewed (0)
  3. src/runtime/cgocheck.go

    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"unsafe"
    )
    
    const cgoWriteBarrierFail = "unpinned Go pointer stored into non-Go memory"
    
    // cgoCheckPtrWrite is called whenever a pointer is stored into memory.
    // It throws if the program is storing an unpinned Go pointer into non-Go
    // memory.
    //
    // This is called from generated code when GOEXPERIMENT=cgocheck2 is enabled.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    If outputs are found in the remote cache, they are also stored in the local cache, so next time they will be found locally.
    Gradle stores ("pushes") build outputs in any build cache that is enabled and has link:{javadocPath}/org/gradle/caching/configuration/BuildCache.html#isPush--[BuildCache.isPush()] set to `true`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/writebarrier.go

    				if last == nil {
    					continue
    				}
    				break FindSeq
    			}
    		}
    		stores = append(stores[:0], b.Values[start:end]...) // copy to avoid aliasing
    		after = append(after[:0], b.Values[end:]...)
    		b.Values = b.Values[:start]
    
    		// find the memory before the WB stores
    		mem := stores[0].MemoryArg()
    		pos := stores[0].Pos
    
    		// If the source of a MoveWB is volatile (will be clobbered by a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:09:14 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  6. build-logic/build-update-utils/src/test/groovy/gradlebuild/buildutils/tasks/UpdateReleasedVersionsTest.groovy

            ******@****.***ReleasedVersions(version, versions) == releasedVersions(snapshot, rc, expectedVersions)
        }
    
        def "newer snapshots are stored"() {
            def referenceBuildTime = System.currentTimeMillis() - DAYS.toMillis(10)
            def oldSnapshot = snapshot('4.3', referenceBuildTime)
            def rc = releasedVersion('4.2-rc-1')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 5.4K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/HttpBuildCache.java

        }
    
        /**
         * Specifies whether HTTP expect-continue should be used for store requests.
         *
         * @since 7.2
         */
        public void setUseExpectContinue(boolean useExpectContinue) {
            this.useExpectContinue = useExpectContinue;
        }
    
        /**
         * Specifies whether HTTP expect-continue should be used for store requests.
         *
         * This value defaults to {@code false}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. src/runtime/sys_linux_loong64.s

    nosaveg:
    	JAL	(R20)
    
    finish:
    	MOVV	0(R3), R7	// sec
    	MOVV	8(R3), R5	// nsec
    
    	MOVV	R23, R3	// restore SP
    	// Restore vdsoPC, vdsoSP
    	// We don't worry about being signaled between the two stores.
    	// If we are not in a signal handler, we'll restore vdsoSP to 0,
    	// and no one will care about vdsoPC. If we are in a signal handler,
    	// we cannot receive another signal.
    	MOVV	16(R3), R25
    	MOVV	R25, m_vdsoSP(R24)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 20:58:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  9. src/runtime/syscall_windows.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package runtime
    
    import (
    	"internal/abi"
    	"internal/goarch"
    	"unsafe"
    )
    
    // cbs stores all registered Go callbacks.
    var cbs struct {
    	lock  mutex // use cbsLock / cbsUnlock for race instrumentation.
    	ctxt  [cb_max]winCallback
    	index map[winCallbackKey]int
    	n     int
    }
    
    func cbsLock() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/schema/schema.fbs

      //     example, a 2-D matrix with 2-D blocks, both stored in row-major order
      //     would have traversal_order = (d0, d1, d2, d3).
      traversal_order:[int];
      // For an n-dimensional tensor with a k-dimensional block (0 <= k <= n),
      // stores how a block dimension in (dn, ..., dn+k-1) maps to the original
      // tensor dimension in (d0, ..., dn).
      // It's stored in the order of (dn, ..., dn+k-1).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
Back to top