Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 112 for releasem (0.21 sec)

  1. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        /* MNG-1995 */
        @Test
        void testBooleanInterpolation() throws Exception {
            PomTestWrapper pom = buildPom("boolean-interpolation");
            assertEquals(true, pom.getValue("repositories[1]/releases/enabled"));
            assertEquals(true, pom.getValue("build/resources[1]/filtering"));
        }
    
        /* MNG-3899 */
        @Test
        void testBuildExtensionInheritance() throws Exception {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  2. src/cmd/cgo/out.go

    // which is not the same as the Go race detector.
    // __tsan_acquire tells TSAN that we are acquiring a lock on a variable,
    // in this case _cgo_sync. __tsan_release releases the lock.
    // (There is no actual lock, we are just telling TSAN that there is.)
    //
    // When we call from Go to C we call _cgo_tsan_acquire.
    // When the C function returns we call _cgo_tsan_release.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/crypto/x509/x509.go

    //
    // To temporarily restore support for SHA-1 signatures, include the value
    // "x509sha1=1" in the GODEBUG environment variable. Note that this option will
    // be removed in a future release.
    type InsecureAlgorithmError SignatureAlgorithm
    
    func (e InsecureAlgorithmError) Error() string {
    	var override string
    	if SignatureAlgorithm(e) == SHA1WithRSA || SignatureAlgorithm(e) == ECDSAWithSHA1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        String GRADLE_PROPERTIES = "gradle.properties";
    
        String SYSTEM_PROP_PREFIX = "systemProp";
    
        String DEFAULT_VERSION = "unspecified";
    
        String DEFAULT_STATUS = "release";
    
        /**
         * <p>Returns the root project for the hierarchy that this project belongs to.  In the case of a single-project
         * build, this method returns this project.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. cmd/erasure-object.go

    	if !opts.NoLock {
    		lock := er.NewNSLock(bucket, object)
    		lkctx, err := lock.GetRLock(ctx, globalOperationTimeout)
    		if err != nil {
    			return nil, err
    		}
    		ctx = lkctx.Context()
    
    		// Release lock when the metadata is verified, and reader
    		// is ready to be read.
    		//
    		// This is possible to be lock free because
    		// - xl.meta for inlined objects has already read the data
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    type TableOptions struct {
    	TypeMeta `json:",inline"`
    
    	// NoHeaders is only exposed for internal callers. It is not included in our OpenAPI definitions
    	// and may be removed as a field in a future release.
    	NoHeaders bool `json:"-"`
    
    	// includeObject decides whether to include each object along with its columnar information.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (1)
  7. pkg/kubelet/pod_workers.go

    // 3. Terminating, ensuring all running containers in the pod are stopped
    // 4. Terminated, cleaning up any resources that must be released before the pod can be deleted
    //
    // The podWorkerLoop is driven by updates delivered to UpdatePod and by SyncKnownPods. If a particular
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (AtomicLoad(8|32|Acq32|64|Ptr) ptr mem) => (MOV(BZ|WZ|WZ|D|D)atomicload ptr mem)
    (AtomicStore(8|32|64|PtrNoWB) ptr val mem) => (SYNC (MOV(B|W|D|D)atomicstore ptr val mem))
    
    // Store-release doesn't require store-load ordering.
    (AtomicStoreRel32 ptr val mem) => (MOVWatomicstore ptr val mem)
    
    // Atomic adds.
    (AtomicAdd32 ptr val mem) => (AddTupleFirst32 val (LAA ptr val mem))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/load.go

    			}
    		}
    
    		if stdErr := (*ImportMissingError)(nil); errors.As(pkg.err, &stdErr) && stdErr.isStd {
    			// Add importer go version information to import errors of standard
    			// library packages arising from newer releases.
    			if importer := pkg.stack; importer != nil {
    				if v, ok := rawGoVersion.Load(importer.mod); ok && gover.Compare(gover.Local(), v.(string)) < 0 {
    					stdErr.importerGoVersion = v.(string)
    				}
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/lib.go

    			argv = append(argv, "-Wl,-nopie")
    		}
    		if linkerFlagSupported(ctxt.Arch, argv[0], "", "-Wl,-z,nobtcfi") {
    			// -Wl,-z,nobtcfi is only supported on OpenBSD 7.4+, remove guard
    			// when OpenBSD 7.5 is released and 7.3 is no longer supported.
    			argv = append(argv, "-Wl,-z,nobtcfi")
    		}
    		if ctxt.Arch.InFamily(sys.ARM64) {
    			// Disable execute-only on openbsd/arm64 - the Go arm64 assembler
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
Back to top