Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,080 for checkIn (0.11 sec)

  1. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    A property is defined by having a getter.
    
    This causes Gradle to ignore the annotations, so they are typically not used in up-to-date checking or caching.
    
    To fix this problem, you must remove the annotation, create a getter for the property you want to use and annotate the getter instead.
    
    [[mutable_type_with_setter]]
    == Mutable type with setter
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Equivalence.java

    import com.google.errorprone.annotations.ForOverride;
    import java.io.Serializable;
    import java.util.function.BiPredicate;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.NonNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * A strategy for determining whether two instances are considered equivalent, and for computing
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/preflight/checks_test.go

    		{[]Checker{preflightCheckTest{"error"}}, false, ""},
    		{[]Checker{preflightCheckTest{"test"}}, false, ""},
    		{[]Checker{DirAvailableCheck{Path: "/does/not/exist"}}, true, ""},
    		{[]Checker{DirAvailableCheck{Path: "/"}}, false, ""},
    		{[]Checker{FileAvailableCheck{Path: "/does/not/exist"}}, true, ""},
    		{[]Checker{FileContentCheck{Path: "/does/not/exist"}}, false, ""},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  4. src/cmd/vet/testdata/print/print.go

    type someStruct struct{}
    
    // Log is non-variadic user-define Println-like function.
    // Calls to this func must be skipped when checking
    // for Println-like arguments.
    func (ss *someStruct) Log(f func(), s string) {}
    
    // Error is variadic user-define Println-like function.
    // Calls to this func mustn't be checked for Println-like arguments,
    // since variadic arguments type isn't interface{}.
    func (ss *someStruct) Error(args ...func()) {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  5. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshots.yaml

              type: string
            - description: Name of the VolumeSnapshotContent object to which the VolumeSnapshot
                object intends to bind to. Please note that verification of binding actually
                requires checking both VolumeSnapshot and VolumeSnapshotContent to ensure
                both are pointing at each other. Binding MUST be verified prior to usage of
                this object.
              jsonPath: .status.boundVolumeSnapshotContentName
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 20.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/InterruptibleTask.java

      private static final int MAX_BUSY_WAIT_SPINS = 1000;
    
      @SuppressWarnings("ThreadPriorityCheck") // The cow told me to
      @Override
      public final void run() {
        /*
         * Set runner thread before checking isDone(). If we were to check isDone() first, the task
         * might be cancelled before we set the runner thread. That would make it impossible to
         * interrupt, yet it will still run, since interruptTask will leave the runner value null,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 29 21:34:48 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/AbstractMapBasedMultiset.java

    import java.util.Iterator;
    import java.util.Map;
    import java.util.Set;
    import java.util.function.ObjIntConsumer;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Basic implementation of {@code Multiset<E>} backed by an instance of {@code Map<E, Count>}.
     *
     * <p>For serialization to work, the subclass must specify explicit {@code readObject} and {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/InterruptibleTask.java

      private static final int MAX_BUSY_WAIT_SPINS = 1000;
    
      @SuppressWarnings("ThreadPriorityCheck") // The cow told me to
      @Override
      public final void run() {
        /*
         * Set runner thread before checking isDone(). If we were to check isDone() first, the task
         * might be cancelled before we set the runner thread. That would make it impossible to
         * interrupt, yet it will still run, since interruptTask will leave the runner value null,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 29 21:34:48 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/assignments.go

    	// Only report a mismatch error if there are no other errors on the rhs.
    	if rhs[0].mode != invalid {
    		check.assignError(orig_rhs, l, r)
    	}
    	check.useLHS(lhs...)
    	// orig_rhs[0] was already evaluated
    }
    
    func (check *Checker) shortVarDecl(pos poser, lhs, rhs []syntax.Expr) {
    	top := len(check.delayed)
    	scope := check.scope
    
    	// collect lhs variables
    	seen := make(map[string]bool, len(lhs))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:21:43 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz_test.go

    	testCases := []struct {
    		desc string
    		have []HealthChecker
    		want []string
    	}{
    		{"no checker", []HealthChecker{}, []string{}},
    		{"one checker", []HealthChecker{c1}, []string{n1}},
    		{"other checker", []HealthChecker{c2}, []string{n2}},
    		{"checker order", []HealthChecker{c1, c2}, []string{n1, n2}},
    		{"different checker order", []HealthChecker{c2, c1}, []string{n2, n1}},
    	}
    
    	for _, tc := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 20:43:16 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top