Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 486 for LookUp (0.16 sec)

  1. src/cmd/compile/internal/types2/subst.go

    	proj := make(substMap, len(from))
    	for i, tpar := range from {
    		proj[tpar] = to[i]
    	}
    	return proj
    }
    
    func (m substMap) empty() bool {
    	return len(m) == 0
    }
    
    func (m substMap) lookup(tpar *TypeParam) Type {
    	if t := m[tpar]; t != nil {
    		return t
    	}
    	return tpar
    }
    
    // subst returns the type typ with its type parameters tpars replaced by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/prepare_composite_functions_tf.cc

      return success();
    }
    
    // Abstracts the conversion of the embedded lookup composite function.
    class ConvertEmbeddedLookupFunc {
     public:
      explicit ConvertEmbeddedLookupFunc(func::FuncOp func) : func_(func) {}
    
      void RewriteFunc() {
        func_->setAttr(kTFImplements,
                       StringAttr::get(func_.getContext(), "embedding_lookup"));
        Value lookup = func_.getArgument(1);
        Value value = func_.getArgument(0);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. src/go/types/subst.go

    	proj := make(substMap, len(from))
    	for i, tpar := range from {
    		proj[tpar] = to[i]
    	}
    	return proj
    }
    
    func (m substMap) empty() bool {
    	return len(m) == 0
    }
    
    func (m substMap) lookup(tpar *TypeParam) Type {
    	if t := m[tpar]; t != nil {
    		return t
    	}
    	return tpar
    }
    
    // subst returns the type typ with its type parameters tpars replaced by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. pkg/serviceaccount/jwt_test.go

    		},
    		"invalid secret lookup": {
    			Token:       rsaToken,
    			Client:      fake.NewSimpleClientset(serviceAccount),
    			Keys:        []interface{}{getPublicKey(rsaPublicKey)},
    			ExpectedErr: true,
    			ExpectedOK:  false,
    		},
    		"invalid serviceaccount lookup": {
    			Token:       rsaToken,
    			Client:      fake.NewSimpleClientset(rsaSecret, ecdsaSecret),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/query.go

    	}
    
    	if qm.preferLower {
    		if len(releases) > 0 {
    			return lookup(releases[0])
    		}
    		if len(prereleases) > 0 {
    			return lookup(prereleases[0])
    		}
    	} else {
    		if len(releases) > 0 {
    			return lookup(releases[len(releases)-1])
    		}
    		if len(prereleases) > 0 {
    			return lookup(prereleases[len(prereleases)-1])
    		}
    	}
    
    	if qm.mayUseLatest {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/jos/JavaObjectSerializationCodec.kt

     * - validations registered via [ObjectInputStream.registerValidation] are simply ignored;
     * - the `readObjectNoData` method, if present, is never invoked;
     */
    class JavaObjectSerializationCodec(
        private val lookup: JavaSerializationEncodingLookup
    ) : EncodingProducer, Decoding {
    
        private
        val readResolveMethod = MethodCache { isReadResolve() }
    
        private
        val readObjectHierarchy = HashMap<Class<*>, List<Method>>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/token/cache/cached_token_authenticator_test.go

    	chokepoint := make(chan struct{}, maxInFlight)
    	// lookup count
    	var lookups uint64
    
    	a := newWithClock(
    		authenticator.TokenFunc(func(ctx context.Context, token string) (*authenticator.Response, bool, error) {
    			atomic.AddUint64(&lookups, 1)
    
    			chokepoint <- struct{}{}
    			defer func() { <-chokepoint }()
    
    			time.Sleep(1 * time.Millisecond)
    
    			return s.lookup(ctx, token)
    		}),
    		true,
    		4*time.Second,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/passes/raise_to_tf.cc

          if (attr_keys.size() == 2) {
            // The first one is N, and the second one is T
            int list_size =
                mlir::cast<IntegerAttr>(attrs.lookup(attr_keys[0].getValue()))
                    .getInt();
            Type list_type =
                mlir::cast<TypeAttr>(attrs.lookup(attr_keys[1].getValue()))
                    .getValue();
            for (int i = 0; i < list_size; ++i) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    		// This is triggered by NSS, which allows various things to use arbitrary code to lookup configuration that typically comes from files.
    		// In our case, the culprit is the `xt_owner` (`-m owner`) module in iptables calls the `passwd` service to lookup the user.
    		// To disallow this, bindmount /dev/null over nsswitch.conf so this never happens.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/DefaultCallSiteDecorator.java

                interceptedCallSiteNames.add(scope.getCallSiteName());
            }
        }
    
        @Override
        public java.lang.invoke.CallSite maybeDecorateIndyCallSite(java.lang.invoke.CallSite originalCallSite, MethodHandles.Lookup caller, String callType, String name, int flags) {
            CacheableCallSite ccs = toGroovyCacheableCallSite(originalCallSite);
            switch (callType) {
                case "invoke":
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:46:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top