Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for actualIds (0.16 sec)

  1. pkg/controller/disruption/disruption_test.go

    	}
    	ps.VerifyPdbStatus(t, pdbName, 0, 0, 3, 0, map[string]metav1.Time{})
    
    	actualPDB := ps.Get(pdbName)
    	condition := apimeta.FindStatusCondition(actualPDB.Status.Conditions, "ExistingTestCondition")
    	if len(actualPDB.Status.Conditions) != 2 {
    		t.Fatalf("Expected 2 conditions, but got %d", len(actualPDB.Status.Conditions))
    	}
    	if condition == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. pkg/controller/replicaset/replica_set_test.go

    		},
    	}
    	for _, c := range testCases {
    		for _, r := range c.rss {
    			informers.Apps().V1().ReplicaSets().Informer().GetIndexer().Add(r)
    		}
    		actualRSs := manager.getReplicaSetsWithSameController(logger, c.rs)
    		var actualRSNames, expectedRSNames []string
    		for _, r := range actualRSs {
    			actualRSNames = append(actualRSNames, r.Name)
    		}
    		for _, r := range c.expectedRSs {
    			expectedRSNames = append(expectedRSNames, r.Name)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

                  << expected;
    
      ::std::stringstream actual_ss;
      actual_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)
                << actual;
    
      return EqFailure(expected_expression,
                       actual_expression,
                       StringStreamToString(&expected_ss),
                       StringStreamToString(&actual_ss),
                       false);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

                  << expected;
    
      ::std::stringstream actual_ss;
      actual_ss << std::setprecision(std::numeric_limits<RawType>::digits10 + 2)
                << actual;
    
      return EqFailure(expected_expression,
                       actual_expression,
                       StringStreamToString(&expected_ss),
                       StringStreamToString(&actual_ss),
                       false);
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  5. cmd/admin-handlers-users.go

    			writeErrorResponseJSON(ctx, w, toAdminAPIErr(ctx, err), r.URL)
    			return
    		}
    		targetUser = lookupResult.NormDN
    		opts.claims[ldapUser] = targetUser // username DN
    		opts.claims[ldapActualUser] = lookupResult.ActualDN
    
    		// Add LDAP attributes that were looked up into the claims.
    		for attribKey, attribValue := range lookupResult.Attributes {
    			opts.claims[ldapAttribPrefix+attribKey] = attribValue
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top