Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 972 for darkred (0.17 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeleteTaskIntegrationTest.groovy

         */
        def "clean is still marked as up to date after build script changes"() {
            given: "A simple Gradle Kotlin Script"
            buildKotlinFile << """
                plugins {
                    `base`
                }
                assert(file("build.gradle.kts").exists())
            """
            when: "clean is executed"
            succeeds "clean"
            then: "clean is marked as UP-TO-DATE"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. src/runtime/export_test.go

    	s.scavenger.wake()
    }
    
    // Stop cleans up the scavenger's resources. The scavenger
    // must be parked for this to work.
    func (s *Scavenger) Stop() {
    	lock(&s.scavenger.lock)
    	parked := s.scavenger.parked
    	unlock(&s.scavenger.lock)
    	if !parked {
    		panic("tried to clean up scavenger that is not parked")
    	}
    	close(s.stop)
    	s.Wake()
    	<-s.done
    }
    
    type ScavengeIndex struct {
    	i scavengeIndex
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/SmbConstants.java

        // file attribute encoding
        /**
         * File is marked read-only
         */
        static final int ATTR_READONLY = 0x01;
        /**
         * File is marked hidden
         */
        static final int ATTR_HIDDEN = 0x02;
        /**
         * File is marked a system file
         */
        static final int ATTR_SYSTEM = 0x04;
        /**
         * File is marked a volume
         */
        static final int ATTR_VOLUME = 0x08;
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 8.9K bytes
    - Viewed (0)
  4. plugin/pkg/admission/priority/admission.go

    	pod, ok := a.GetObject().(*core.Pod)
    	if !ok {
    		return errors.NewBadRequest("resource was marked with kind Pod but was unable to be converted")
    	}
    
    	if operation == admission.Update {
    		oldPod, ok := a.GetOldObject().(*core.Pod)
    		if !ok {
    			return errors.NewBadRequest("resource was marked with kind Pod but was unable to be converted")
    		}
    
    		// This admission plugin set pod.Spec.Priority on create.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 08 10:11:23 UTC 2022
    - 9K bytes
    - Viewed (0)
  5. src/runtime/mcheckmark.go

    // sure that everything that should be marked is marked.
    
    package runtime
    
    import (
    	"internal/goarch"
    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // A checkmarksMap stores the GC marks in "checkmarks" mode. It is a
    // per-arena bitmap with a bit for every word in the arena. The mark
    // is stored on the bit corresponding to the first word of the marked
    // allocation.
    type checkmarksMap struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. plugin/pkg/admission/alwayspullimages/admission.go

    		return false
    	}
    
    	pod, ok := attributes.GetObject().(*api.Pod)
    	if !ok {
    		klog.Warningf("Resource was marked with kind Pod but pod was unable to be converted.")
    		return false
    	}
    
    	oldPod, ok := attributes.GetOldObject().(*api.Pod)
    	if !ok {
    		klog.Warningf("Resource was marked with kind Pod but old pod was unable to be converted.")
    		return false
    	}
    
    	oldImages := sets.NewString()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 30 22:59:57 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  7. src/runtime/HACKING.md

    nosplit functions
    -----------------
    
    Most functions start with a prologue that inspects the stack pointer
    and the current G's stack bound and calls `morestack` if the stack
    needs to grow.
    
    Functions can be marked `//go:nosplit` (or `NOSPLIT` in assembly) to
    indicate that they should not get this prologue. This has several
    uses:
    
    - Functions that must run on the user stack, but must not call into
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/artifacts/Configuration.java

         *
         * @implSpec Usage: This method should only be called on resolvable configurations and will emit a deprecation warning if
         * called on a configuration that does not permit this usage, or has allowed this usage but marked it as deprecated.
         *
         * @return The files of this configuration.
         */
        Set<File> resolve();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 18:18:46 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  9. test/fixedbugs/issue16095.go

    	sink = y
    
    	panic(nil)
    
    	// After the recover we reach the deferreturn, which
    	// copies the heap version of x back to the stack.
    	// It gets the pointer to x from a stack slot that was
    	// not marked as live during the call to runtime.GC().
    }
    
    var sinkint int
    
    func g(p *int) (x [20]byte) {
    	// Initialize x.
    	for i := range x {
    		x[i] = byte(i)
    	}
    
    	// Force x to be allocated on the heap.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 27 16:48:48 UTC 2016
    - 1.9K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/vendor.go

    					// replacements for modules that did not have any packages to vendor.
    				} else {
    					vendErrorf(r.Old, "is replaced in %s, but not marked as replaced in vendor/modules.txt", base.ShortPath(replacementSource))
    				}
    			} else if vr != rNewCanonical {
    				vendErrorf(r.Old, "is replaced by %s in %s, but marked as replaced by %s in vendor/modules.txt", describe(rNew), base.ShortPath(replacementSource), describe(vr))
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top