Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for other_api (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/authentication/authenticator/audagnostic_test.go

    			taudcfgs: []taudcfg{
    				{
    					implicitAuds: Audiences{"api", "other_api"},
    					auds:         Audiences{"api", "other_api"},
    				},
    				{
    					implicitAuds: Audiences{"api", "other_api", "other"},
    					auds:         Audiences{"api", "other_api"},
    				},
    				{
    					implicitAuds: Audiences{"api", "other_api"},
    					auds:         Audiences{"api", "other_api", "other"},
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:16 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/api/java/archives/internal/DefaultManifestMergeSpecTest.groovy

            DefaultManifest otherManifest = new DefaultManifest(fileResolver)
            def otherMap = [key1: 'value1other', key4: 'value4other', key5: 'value5other'] as LinkedHashMap
            def otherSectionMap = [keysec1: 'value1Secother', keysec4: 'value4Secother', keysec5: 'value5Secother']
            otherManifest.attributes(otherMap)
            otherManifest.attributes(otherSectionMap, 'section')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/lazy/lazy.go

    }
    
    // Equal returns true if the other object is the same pointer-wise.
    func (m *MapValue) Equal(other ref.Val) ref.Val {
    	otherMap, ok := other.(*MapValue)
    	if !ok {
    		return types.MaybeNoSuchOverloadErr(other)
    	}
    	return types.Bool(m == otherMap)
    }
    
    // Type returns its registered type.
    func (m *MapValue) Type() ref.Type {
    	return m.typeValue
    }
    
    // Value is not allowed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/update_control_dependencies.cc

    namespace mlir {
    namespace tf_executor {
    namespace {
    
    // Comparator for `OpsInReverseProgramOrder`.
    struct IsAfterInBlock {
      bool operator()(Operation* op, Operation* other_op) const {
        // This function has an average complexity of O(1).
        return other_op->isBeforeInBlock(op);
      }
    };
    
    #define GEN_PASS_DEF_EXECUTORUPDATECONTROLDEPENDENCIESPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.h.inc"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 30 07:53:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top