Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 450 for eventual (0.31 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/request/object_count_tracker.go

    		// up to a certain threshold defined by staleTolerationThreshold.
    		// in case this becomes a non transient error then the count for
    		// the given resource will will eventually be removed from
    		// the cache by the pruner.
    		return
    	}
    
    	now := t.clock.Now()
    
    	// lock for writing
    	t.lock.Lock()
    	defer t.lock.Unlock()
    
    	if item, ok := t.counts[groupResource]; ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 16 09:12:00 UTC 2022
    - 5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/utils/fake_quant_utils.h

    //                                                     |
    //                                                tfl.dequantize
    //                                                     |
    // If the input is a constant, the result pattern will eventually converted to
    //
    //            quant-emulated input
    //                   |
    //               tfl.quantize
    //                   |
    //              tfl.dequantize
    //                   |
    //
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/base/FunctionsTest.java

        Function<Float, Boolean> c1 = Functions.compose(Functions.compose(h, g), f);
        Function<Float, Boolean> c2 = Functions.compose(h, Functions.compose(g, f));
    
        // Might be nice (eventually) to have:
        //     assertEquals(c1, c2);
    
        // But for now, settle for this:
        assertEquals(c1.hashCode(), c2.hashCode());
    
        assertEquals(c1.apply(1.0f), c2.apply(1.0f));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/typeparam.go

    	id    uint64    // unique id, for debugging only
    	obj   *TypeName // corresponding type name
    	index int       // type parameter index in source order, starting at 0
    	bound Type      // any type, but underlying is eventually *Interface for correct programs (see TypeParam.iface)
    }
    
    // NewTypeParam returns a new TypeParam. Type parameters may be set on a Named
    // or Signature type by calling SetTypeParams. Setting a type parameter on more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. src/encoding/csv/writer.go

    	}
    }
    
    // Write writes a single CSV record to w along with any necessary quoting.
    // A record is a slice of strings with each string being one field.
    // Writes are buffered, so [Writer.Flush] must eventually be called to ensure
    // that the record is written to the underlying [io.Writer].
    func (w *Writer) Write(record []string) error {
    	if !validDelim(w.Comma) {
    		return errInvalidDelim
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/JvmConstants.java

     */
    
    package org.gradle.api.internal.tasks;
    
    /**
     * Common constants used across the JVM ecosystem. Many of these constants define the configuration and task
     * names added by the Java plugin. Eventually, we should deprecate many of the public constants in the Java plugin
     * and push users to using the corresponding methods on {@link org.gradle.api.tasks.SourceSet}.
     */
    public final class JvmConstants {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/next_pluggable_device/c_api.h

    #include "tensorflow/c/tf_status.h"
    #include "xla/pjrt/c/pjrt_c_api.h"
    
    // --------------------------------------------------------------------------
    // C API for device. The API is under active development and eventually
    // should allow registering a plugin device with TensorFlow.
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    // TF_Device is a C wrapper to the C++ TF Device class. This is to be passed
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 20:01:06 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingException.java

    import java.util.List;
    
    import org.apache.maven.model.Model;
    
    /**
     * Signals one ore more errors during model building. The model builder tries to collect as many problems as possible
     * before eventually failing to provide callers with rich error information. Use {@link #getProblems()} to query the
     * details of the failure.
     *
     */
    public class ModelBuildingException extends Exception {
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/lockedfile/internal/filelock/filelock_fcntl.go

    	// when using, for example, the flock implementation of this package).
    	// If the other process is *not* blocked on some other lock that we are
    	// holding, then it will eventually release the requested lock.
    
    	nextSleep := 1 * time.Millisecond
    	const maxSleep = 500 * time.Millisecond
    	for {
    		err = setlkw(f.Fd(), lt)
    		if err != syscall.EDEADLK {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 17 02:24:35 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/match/match.go

    		onMatch.OnMatch = fallback.OnMatch
    		return []*matcher.Matcher_OnMatch{onMatch} // the inner mapper is gone
    	}
    
    	// envoy will nack this eventually
    	log.Warnf("empty mapper %v with no fallback", innerMapper.Matcher)
    	return innerMapper.allOnMatches()
    }
    
    func (m Mapper) allOnMatches() []*matcher.Matcher_OnMatch {
    	var out []*matcher.Matcher_OnMatch
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top