Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 78 for applyTo (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // there are too many exceptions, it might not be cost effective to apply the
      // concat hoisting optimization here.
      // Setting the threshold to be 50% as a simple cost model heuristic. e.g. If 1
      // out of 2 concat inputs is an exception, we don't apply the hoist. If it's 1
      // out of 3, we do.
      const float exception_pct_threshold = 0.5;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/LocalCache.java

        @Override
        public ImmutableMap<K, V> getAll(Iterable<? extends K> keys) throws ExecutionException {
          return autoDelegate.getAll(keys);
        }
    
        @Override
        public V apply(K key) {
          return autoDelegate.apply(key);
        }
    
        @Override
        public void refresh(K key) {
          autoDelegate.refresh(key);
        }
    
        private Object readResolve() {
          return autoDelegate;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_node_status_test.go

    		return nil, fmt.Errorf("failed to marshal original node %#v: %v", originalNode, err)
    	}
    	updated, err := strategicpatch.StrategicMergePatch(original, patch, v1.Node{})
    	if err != nil {
    		return nil, fmt.Errorf("failed to apply strategic merge patch %q on node %#v: %v",
    			patch, originalNode, err)
    	}
    	updatedNode := &v1.Node{}
    	if err := json.Unmarshal(updated, updatedNode); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/CacheTest.kt

          MockResponse.Builder()
            .addHeader("X-Response-ID: 2")
            .build(),
        )
        val url = server.url("/")
        val request =
          Request.Builder()
            .url(url)
            .apply {
              if (withOverride) {
                cacheUrlOverride(url)
              }
            }
            .method(requestMethod, requestBodyOrNull(requestMethod))
            .build()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    // newly created section. "sect" is the section into which to place
    // the symbols, "syms" holds the list of symbols to assign,
    // "forceType" (if non-zero) contains a new sym type to apply to each
    // sym during the assignment, and "aligner" is a hook to call to
    // handle alignment during the assignment process.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  6. pkg/controller/podautoscaler/horizontal_test.go

    			key:  "",
    			recommendations: []timestampedRecommendation{
    				{1, now.Add(-2 * time.Minute)},
    				{2, now.Add(-1 * time.Minute)}},
    			currentReplicas:              100, // to apply scaleDown delay we should have current > desired
    			prenormalizedDesiredReplicas: 3,
    			expectedStabilizedReplicas:   3,
    			expectedRecommendations: []timestampedRecommendation{
    				{1, now},
    				{2, now},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    	klet.admitHandlers.AddPodAdmitHandler(lifecycle.NewPredicateAdmitHandler(klet.getNodeAnyWay, criticalPodAdmissionHandler, klet.containerManager.UpdatePluginResources))
    	// apply functional Option's
    	for _, opt := range kubeDeps.Options {
    		opt(klet)
    	}
    
    	if sysruntime.GOOS == "linux" {
    		// AppArmor is a Linux kernel security module and it does not support other operating systems.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/smb1/SmbFile.java

    /**
     * Set the create time of the file. The time is specified as milliseconds
     * from Jan 1, 1970 which is the same as that which is returned by the
     * <tt>createTime()</tt> method.
     * <p/>
     * This method does not apply to workgroups, servers, or shares.
     *
     * @param time the create time as milliseconds since Jan 1, 1970
     */
        public void setCreateTime( long time ) throws SmbException {
            if( getUncPath0().length() == 1 ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/load/pkg.go

    	StaleReason string `json:",omitempty"` // why is Stale true?
    
    	// Source files
    	// If you add to this list you MUST add to p.AllFiles (below) too.
    	// Otherwise file name security lists will not apply to any new additions.
    	GoFiles           []string `json:",omitempty"` // .go source files (excluding CgoFiles, TestGoFiles, XTestGoFiles)
    	CgoFiles          []string `json:",omitempty"` // .go source files that import "C"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    			}
    		}
    		oldStatus, found := oldStatuses[container.Name]
    		if found {
    			if oldStatus.State.Terminated != nil {
    				status = &oldStatus
    			} else {
    				// Apply some values from the old statuses as the default values.
    				status.RestartCount = oldStatus.RestartCount
    				status.LastTerminationState = oldStatus.LastTerminationState
    			}
    		}
    		statuses[container.Name] = status
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top