Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for CacheKey (0.24 sec)

  1. maven-core/src/main/java/org/apache/maven/project/artifact/ProjectArtifactsCache.java

         * @param record The cache record being used for the project, must not be {@code null}.
         */
        void register(MavenProject project, Key cacheKey, CacheRecord record);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:34:19 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/integration/node_expansion_pass.cc

      // Get the FunctionDef and insert that into the context
      const NodeDef& ndef = orig_op->MutableAttrs()->BuildNodeDef();
      auto& ctx = orig_op->EagerContext();
      Fprint128 cache_key =
          orig_op->MutableAttrs()->CacheKey(orig_op->DeviceName());
      // Include soft placement policy in cache key since the placement strategy
      // can change and thus affect which kernel is picked.
      auto x = FingerprintCat64(cache_key.high64, cache_key.low64);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Feb 25 16:22:36 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. pkg/kubelet/token/token_manager.go

    			return nil, fmt.Errorf("failed to fetch token: %v", err)
    		case m.expired(ctr):
    			return nil, fmt.Errorf("token %s expired and refresh failed: %v", key, err)
    		default:
    			klog.ErrorS(err, "Couldn't update token", "cacheKey", key)
    			return ctr, nil
    		}
    	}
    
    	m.set(key, tr)
    	return tr, nil
    }
    
    // DeleteServiceAccountToken should be invoked when pod got deleted. It simply
    // clean token manager cache.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 10 10:20:09 UTC 2021
    - 6.1K bytes
    - Viewed (0)
Back to top