Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 25 of 25 for actualIds (0.29 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	t.Helper()
    	var actualUIDs []types.UID
    	for uid := range q.inFlightPods {
    		actualUIDs = append(actualUIDs, uid)
    	}
    	sortUIDs := cmpopts.SortSlices(func(a, b types.UID) bool { return a < b })
    	if diff := cmp.Diff(uids, actualUIDs, sortUIDs); diff != "" {
    		t.Fatalf("Unexpected content of inFlightPods (-want, +have):\n%s", diff)
    	}
    	actualUIDs = nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. cmd/sts-handlers.go

    	if err != nil {
    		err = fmt.Errorf("LDAP server error: %w", err)
    		writeSTSErrorResponse(ctx, w, ErrSTSInvalidParameterValue, err)
    		return
    	}
    	ldapUserDN := lookupResult.NormDN
    	ldapActualUserDN := lookupResult.ActualDN
    
    	// Check if this user or their groups have a policy applied.
    	ldapPolicies, err := globalIAMSys.PolicyDBGet(ldapUserDN, groupDistNames...)
    	if err != nil {
    		writeSTSErrorResponse(ctx, w, ErrSTSInternalError, err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K 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