Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 972 for darkred (0.3 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/FilteredTrackingMerkleDirectorySnapshotBuilder.java

     *
     * You can mark a directory as filtered by {@link #markCurrentLevelAsFiltered()}.
     * When you do that, all the parent levels are marked as filtered as well.
     * On {@link #leaveDirectory()}, the {@code unfilteredSnapshotConsumer} will receive the direct child snapshots
     * of the left directory if it was marked as filtered, or nothing if it wasn't.
     * This builder delegates to {@link MerkleDirectorySnapshotBuilder} for the actual building of the snapshot.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:32 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. pkg/apis/scheduling/types.go

    	"k8s.io/kubernetes/pkg/apis/core"
    )
    
    const (
    	// DefaultPriorityWhenNoDefaultClassExists is used to set priority of pods
    	// that do not specify any priority class and there is no priority class
    	// marked as default.
    	DefaultPriorityWhenNoDefaultClassExists = 0
    	// HighestUserDefinablePriority is the highest priority for user defined priority classes. Priority values larger than 1 billion are reserved for Kubernetes system use.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 23:13:00 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. test/fixedbugs/issue32560.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Values smaller than 64-bits were mistakenly always proven to be
    // non-negative.
    //
    // The tests here are marked go:noinline to ensure they're
    // independently optimized by SSA.
    
    package main
    
    var x int32 = -1
    
    //go:noinline
    func a() {
    	if x != -1 {
    		panic(1)
    	}
    	if x > 0 || x != -1 {
    		panic(2)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 18:03:46 UTC 2019
    - 690 bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/serialization/codecs/JavaObjectSerializationCodecTest.kt

                objectOutputStream.writeInt(42)
            }
    
            private
            fun readObject(objectInputStream: ObjectInputStream) {
                markRead("superclass")
                intValue = objectInputStream.readInt()
            }
    
            protected
            fun markRead(from: String) {
                if (readOrder == null) {
                    readOrder = arrayListOf()
                }
                readOrder!!.add(from)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  5. src/runtime/cgo/openbsd.go

    // Supply __guard_local because we don't link against the standard
    // OpenBSD crt0.o and the libc dynamic library needs it.
    
    //go:linkname _guard_local __guard_local
    
    var _guard_local uintptr
    
    // This is normally marked as hidden and placed in the
    // .openbsd.randomdata section.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 566 bytes
    - Viewed (0)
  6. .github/workflows/stale.yml

        steps:
        - name: Close Stale Issues
          uses: actions/stale@v8
          with:
            repo-token: ${{ secrets.GITHUB_TOKEN }}
            stale-issue-message: "This issue has been automatically marked as stale because it has been open 360 days with no activity. Remove stale label or comment or this will be closed in 180 days"
            days-before-stale: 360
            days-before-close: 180
            stale-issue-label: "status:stale"
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Apr 11 02:27:05 UTC 2023
    - 972 bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileAccess.java

        /**
         * Runs the given action under an exclusive lock on the target file. If the given action fails, the lock is marked as uncleanly unlocked.
         *
         * @throws LockTimeoutException On timeout acquiring lock, if required.
         * @throws IllegalStateException When this lock has been closed.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. test/fixedbugs/issue24651b.go

    	return x * (x + 1) * (x + 2)
    }
    
    var x = 5
    
    //go:noinline Provide a clean, constant reason for not inlining main
    func main() { // ERROR "cannot inline main: marked go:noinline$"
    	println("Foo(", x, ")=", Foo(x)) // ERROR "inlining call to Foo"
    	println("Bar(", x, ")=", Bar(x)) // ERROR "inlining call to Bar"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 27 23:40:56 UTC 2021
    - 800 bytes
    - Viewed (0)
  9. src/runtime/unsafepoint_test.go

    		instructionCount++
    		if unsafe {
    			unsafeCount++
    		}
    
    		// All the instructions inside the write barrier must be unpreemptible.
    		if startedWB && !doneWB && !unsafe {
    			t.Errorf("instruction %s must be marked unsafe, but isn't", parts[1])
    		}
    
    		// Detect whether we're in the write barrier.
    		switch runtime.GOARCH {
    		case "arm64":
    			if parts[3] == "MOVWU" {
    				// The unpreemptible region starts after the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 20:24:56 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/extract_outside_compilation_pass.h

    // 4. Mark all nodes except key placeholder with attr `xla_cluster_attr_name`
    //    and `outside_compilation_attr_name`;
    // 5. For nodes marked with attr kXlaConnectedToXlaComputationAttrName, add a
    //    control edge from the node to XlaSendFromHost; for nodes marked with attr
    //    kXlaConnectedFromXlaComputationAttrName, add a control edge from
    //    XlaRecvAtHost node to the node;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top