Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,114 for EQUAL (0.03 sec)

  1. internal/config/storageclass/storage-class.go

    	// SS parity drives should be greater than or equal to minParityDrives.
    	// Parity below minParityDrives is not supported.
    	if ssParity > 0 && ssParity < minParityDrives {
    		return fmt.Errorf("parity %d should be greater than or equal to %d",
    			ssParity, minParityDrives)
    	}
    
    	if ssParity > setDriveCount/2 {
    		return fmt.Errorf("parity %d should be less than or equal to %d", ssParity, setDriveCount/2)
    	}
    
    	return nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. pilot/pkg/trustbundle/trustbundle_test.go

    			expSame: false,
    		},
    		{
    			certs1:  []string{"a", "b"},
    			certs2:  []string{"a", "b"},
    			expSame: true,
    		},
    	}
    	for _, tc := range testCases {
    		certSame := slices.Equal(tc.certs1, tc.certs2)
    		if (certSame && !tc.expSame) || (!certSame && tc.expSame) {
    			t.Errorf("cert compare testcase failed. tc: %v", tc)
    		}
    	}
    }
    
    func TestVerifyTrustAnchor(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/CacheBuilderSpec.java

        return Objects.equal(initialCapacity, that.initialCapacity)
            && Objects.equal(maximumSize, that.maximumSize)
            && Objects.equal(maximumWeight, that.maximumWeight)
            && Objects.equal(concurrencyLevel, that.concurrencyLevel)
            && Objects.equal(keyStrength, that.keyStrength)
            && Objects.equal(valueStrength, that.valueStrength)
            && Objects.equal(recordStats, that.recordStats)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 22 14:27:44 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheBuilderSpec.java

        return Objects.equal(initialCapacity, that.initialCapacity)
            && Objects.equal(maximumSize, that.maximumSize)
            && Objects.equal(maximumWeight, that.maximumWeight)
            && Objects.equal(concurrencyLevel, that.concurrencyLevel)
            && Objects.equal(keyStrength, that.keyStrength)
            && Objects.equal(valueStrength, that.valueStrength)
            && Objects.equal(recordStats, that.recordStats)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 22 14:27:44 UTC 2022
    - 18.1K bytes
    - Viewed (0)
  5. pkg/apis/autoscaling/v2beta2/defaults_test.go

    				})
    			}
    			up := GenerateHPAScaleUpRules(scaleUpRules)
    			assert.Equal(t, tc.expectedPolicies, up.Policies)
    			if tc.expectedStabilization != nil {
    				assert.Equal(t, *tc.expectedStabilization, *up.StabilizationWindowSeconds)
    			} else {
    				assert.Equal(t, tc.expectedStabilization, up.StabilizationWindowSeconds)
    			}
    
    			assert.Equal(t, autoscalingv2.ScalingPolicySelect(tc.expectedSelectPolicy), *up.SelectPolicy)
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/memorymanager/state/state_checkpoint_test.go

    	restoredMachineState := restoredState.GetMachineState()
    	assert.Equal(t, expectedMachineState, restoredMachineState, "expected MachineState does not equal to restored one")
    
    	expectedMemoryAssignments := expectedState.GetMemoryAssignments()
    	restoredMemoryAssignments := restoredState.GetMemoryAssignments()
    	assert.Equal(t, expectedMemoryAssignments, restoredMemoryAssignments, "state memory assignments mismatch")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 03:35:26 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/Collectors.java

                if (o == null || getClass() != o.getClass()) {
                    return false;
                }
                TypedCollector<?> that = (TypedCollector<?>) o;
                return Objects.equal(type, that.type) &&
                    Objects.equal(delegate, that.delegate);
            }
    
            @Override
            public int hashCode() {
                return Objects.hashCode(type, delegate);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:15:09 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  8. pkg/kubelet/util/node_startup_latency_tracker_test.go

    		assert.Equal(t, frozenTime.Add(800*time.Millisecond), tracker.firstRegistrationAttemptTime)
    
    		fakeClock.Step(400 * time.Millisecond)
    		tracker.RecordRegisteredNewNode()
    
    		assert.Equal(t, frozenTime.Add(1200*time.Millisecond), tracker.firstRegisteredNewNodeTime)
    
    		fakeClock.Step(1100 * time.Millisecond)
    		tracker.RecordNodeReady()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 05:54:25 UTC 2023
    - 18K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/managedfieldsupdater_test.go

    	}
    
    	// Rip off managed fields of live, and check that it is deeply
    	// equal to newObject
    	liveWithoutManaged := obj.DeepCopyObject()
    	internal.RemoveObjectManagedFields(liveWithoutManaged)
    
    	if !reflect.DeepEqual(liveWithoutManaged, newObject) {
    		t.Fatalf("returned newObject must be deeply equal to the input live object, without managed fields")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/graph/ValueGraph.java

       * the same structural relationships as those in this graph.
       *
       * <p>Thus, two value graphs A and B are equal if <b>all</b> of the following are true:
       *
       * <ul>
       *   <li>A and B have equal {@link #isDirected() directedness}.
       *   <li>A and B have equal {@link #nodes() node sets}.
       *   <li>A and B have equal {@link #edges() edge sets}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top