Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 951 for markUsed (0.17 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/changes/DefaultTaskExecutionMode.java

        }
    
        /**
         * The execution mode when the task is marked explicitly untracked.
         * The message will be `Task state is not tracked.`.
         */
        public static TaskExecutionMode untracked() {
            return UNTRACKED_NO_REASON;
        }
    
        /**
         * The execution mode when the task is marked explicitly untracked.
         * The message will be `"Task is untracked because: " + reason`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 04 07:36:55 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testshared/testdata/issue44031/main/main.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import "testshared/issue44031/b"
    
    type t int
    
    func (t) m() {}
    
    type i interface{ m() } // test that unexported method is correctly marked
    
    var v interface{} = t(0)
    
    func main() {
    	b.F()
    	v.(i).m()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 373 bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/alg.go

    type AlgKind int8
    
    //go:generate stringer -type AlgKind -trimprefix A alg.go
    
    const (
    	AUNK   AlgKind = iota
    	ANOEQ          // Types cannot be compared
    	ANOALG         // implies ANOEQ, and in addition has a part that is marked Noalg
    	AMEM           // Type can be compared/hashed as regular memory.
    	AMEM0          // Specific subvariants of AMEM (TODO: move to ../reflectdata?)
    	AMEM8
    	AMEM16
    	AMEM32
    	AMEM64
    	AMEM128
    	ASTRING
    	AINTER
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 15:30:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. test/fixedbugs/issue51101.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 51101: on RISCV64, difference of two pointers
    // was marked as pointer and crashes GC.
    
    package main
    
    var a, b int
    
    func main() {
    	F(&b, &a)
    }
    
    //go:noinline
    func F(a, b *int) bool {
    	x := a == b
    	G(x)
    	y := a != b
    	return y
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 14 23:08:44 UTC 2022
    - 523 bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/internal/MultilineMessageHelperTest.java

            msgs.add("* Your build is requesting parallel execution, but project      *");
            msgs.add("* contains the following plugin(s) that have goals not marked   *");
            msgs.add("* as @threadSafe to support parallel building.                  *");
            msgs.add("* While this /may/ work fine, please look for plugin updates    *");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. .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)
Back to top