Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 344 for differs (0.34 sec)

  1. cluster/images/etcd/migrate/data_dir.go

    }
    
    // Write creates or overwrites the contents of the version.txt file with the given EtcdVersionPair.
    func (v *VersionFile) Write(vp *EtcdVersionPair) error {
    	// We do write only if file content differs from given EtcdVersionPair.
    	isUpToDate, err := v.equals(vp)
    	if err != nil {
    		return fmt.Errorf("failed to to check if version file %s should be changed: %v", v.path, err)
    	}
    	if isUpToDate {
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 09 19:13:17 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/AtomicDouble.java

     *
     * <p><a id="bitEquals"></a>This class compares primitive {@code double} values in methods such as
     * {@link #compareAndSet} by comparing their bitwise representation using {@link
     * Double#doubleToRawLongBits}, which differs from both the primitive double {@code ==} operator and
     * from {@link Double#equals}, as if implemented by:
     *
     * <pre>{@code
     * static boolean bitEquals(double x, double y) {
     *   long xBits = Double.doubleToRawLongBits(x);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 28 21:00:54 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  3. pkg/registry/admissionregistration/validatingadmissionpolicy/strategy.go

    	return validation.ValidateValidatingAdmissionPolicyStatusUpdate(obj.(*admissionregistration.ValidatingAdmissionPolicy), old.(*admissionregistration.ValidatingAdmissionPolicy))
    }
    
    // PrepareForUpdate differs from the main strategy where setting the spec is not
    // allowed, but setting status is OK.
    func (s *validatingAdmissionPolicyStatusStrategy) PrepareForUpdate(ctx context.Context, obj, old runtime.Object) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. cmd/healthcheck-handler.go

    				writeErrorResponse(r.Context(), w, toAPIError(r.Context(), err), r.URL)
    			}
    			return
    		}
    	}
    	writeResponse(w, http.StatusOK, nil, mimeNone)
    }
    
    // LivenessCheckHandler checks whether MinIO is up. It differs from the
    // readiness handler since a failing liveness check causes pod restarts
    // in K8S environments. Therefore, it does not contact external systems.
    func LivenessCheckHandler(w http.ResponseWriter, r *http.Request) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. src/html/template/css.go

    func skipCSSSpace(c []byte) []byte {
    	if len(c) == 0 {
    		return c
    	}
    	// wc ::= #x9 | #xA | #xC | #xD | #x20
    	switch c[0] {
    	case '\t', '\n', '\f', ' ':
    		return c[1:]
    	case '\r':
    		// This differs from CSS3's wc production because it contains a
    		// probable spec error whereby wc contains all the single byte
    		// sequences in nl (newline) but not CRLF.
    		if len(c) >= 2 && c[1] == '\n' {
    			return c[2:]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:38:18 UTC 2023
    - 7K bytes
    - Viewed (0)
  6. pkg/scheduler/util/assumecache/assume_cache_test.go

    		yKey, err := cache.MetaNamespaceKeyFunc(y)
    		if err != nil {
    			tCtx.Fatalf("unexpected error determining key for %v: %v", y, err)
    		}
    		return xKey < yKey
    	}))
    	if diff != "" {
    		tCtx.Fatalf("List() result differs (- expected, + actual):\n%s", diff)
    	}
    }
    
    func TestAssume(t *testing.T) {
    	scenarios := map[string]struct {
    		oldObj    metav1.Object
    		newObj    interface{}
    		expectErr error
    	}{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/cpumanager/state/state_checkpoint.go

    		return fmt.Errorf("error migrating v1 checkpoint state to v2 checkpoint state: %s", err)
    	}
    
    	if sc.policyName != checkpointV2.PolicyName {
    		return fmt.Errorf("configured policy %q differs from state checkpoint policy %q", sc.policyName, checkpointV2.PolicyName)
    	}
    
    	var tmpDefaultCPUSet cpuset.CPUSet
    	if tmpDefaultCPUSet, err = cpuset.Parse(checkpointV2.DefaultCPUSet); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 13 00:59:30 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java

     *
     * <p><a id="bitEquals"></a>This class compares primitive {@code double} values in methods such as
     * {@link #compareAndSet} by comparing their bitwise representation using {@link
     * Double#doubleToRawLongBits}, which differs from both the primitive double {@code ==} operator and
     * from {@link Double#equals}, as if implemented by:
     *
     * <pre>{@code
     * static boolean bitEquals(double x, double y) {
     *   long xBits = Double.doubleToRawLongBits(x);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/doc.go

    // and there is an implementation outline in the Wikipedia article at
    // https://en.wikipedia.org/wiki/Fair_queuing .
    //
    // Fair queuing for server requests differs from traditional fair
    // queuing in three ways: (1) we are dispatching application layer
    // requests to a server rather than transmitting packets on a network
    // link, (2) multiple requests can be executing at once, and (3) the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. futures/listenablefuture1/src/com/google/common/util/concurrent/ListenableFuture.java

     * com.google.guava:listenablefuture:1.0 artifact. (For more on that artifact, see
     * https://github.com/google/guava/releases/tag/v27.0) This means that the copy of ListenableFuture
     * in com.google.guava:guava differs from the "frozen" copy in the listenablefuture artifact. This
     * could in principle cause problems for some users. Still, we expect that the benefits of the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:13:41 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top