Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 247 for lifo (0.03 sec)

  1. pkg/test/echo/proto/echo.proto

      google.protobuf.StringValue expectedResponse = 21;
      // If set, a new connection will be made to the server for each individual request. If false, an attempt
      // will be made to re-use the connection for the life of the forward request. This is automatically
      // set for DNS, TCP, TLS, and WebSocket protocols.
      bool newConnectionPerRequest = 22;
      // If set, each request will force a DNS lookup. Only applies if newConnectionPerRequest is set.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 31 17:42:23 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_lift_variables.mlir

    // RUN: tf-opt -verify-diagnostics -tf-saved-model-lift-variables-test -split-input-file %s | FileCheck %s --dump-input=fail
    
    module attributes {tf_saved_model.semantics, tf_saved_model.under_construction} {
    
      // Test case: Freezing VarHandleOp ops.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 6.2K bytes
    - Viewed (0)
  3. pkg/test/util/yml/cache.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package yml
    
    import (
    	"fmt"
    	"os"
    	"path"
    	"strings"
    	"sync"
    )
    
    // Cache tracks the life-cycle of Yaml based resources. It stores single-part Yaml files on disk and updates the
    // files as needed, as the resources change.
    type Cache struct {
    	mu sync.Mutex
    
    	discriminator int64
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 03 18:09:59 UTC 2021
    - 4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/compatibility/ArtifactAndClassifierCompatibilityIntegrationTest.groovy

                            artifact(classifier: 'classy')
                        }
                    }
                }
            }
        }
    
        /**
         * Test to demonstrate a real life use case.
         */
        def "existing oss library use case"() {
            given:
            repository {
                'org:mylib:1.0' {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/AbstractScheduledService.java

     *
     * <p>Subclasses are guaranteed that the life cycle methods ({@link #runOneIteration}, {@link
     * #startUp} and {@link #shutDown}) will never run concurrently. Notably, if any execution of {@link
     * #runOneIteration} takes longer than its schedule defines, then subsequent executions may start
     * late. Also, all life cycle methods are executed with a lock held, so subclasses can safely modify
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

     *
     * The specified type must have a public constructor which takes the name as a [String] parameter.
     *
     * All objects **MUST** expose their name as a bean property named `name`.
     * The name must be constant for the life of the object.
     *
     * @param T The type of objects for the container to contain.
     * @return The container.
     *
     * @see [Project.container]
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/EvictingQueue.java

    import java.util.Queue;
    
    /**
     * A non-blocking queue which automatically evicts elements from the head of the queue when
     * attempting to add new elements onto the queue and it is full. This queue orders elements FIFO
     * (first-in-first-out). This data structure is logically equivalent to a circular buffer (i.e.,
     * cyclic buffer or ring buffer).
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:52:55 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationIntegTest.groovy

                                        artifactId = "new-artifact-id"
                                        version = "42"
                                        message = "the answer to life, the universe and everything"
                                    }
                                }
                                mailingLists {
                                    mailingList {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions.cc

        initializeForTest();
      }
    
      StringRef getArgument() const final {
        // This is the argument used to refer to the pass in
        // the textual format (on the commandline for example).
        return "quant-lift-quantizable-spots-as-functions";
      }
    
      StringRef getDescription() const final {
        // This is a brief description of the pass.
        return "Replace quantization candidates with composite functions into the "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. security/pkg/credentialfetcher/plugin/gce.go

    var gcecredLog = log.RegisterScope("gcecred", "GCE credential fetcher for istio agent")
    
    // Token refresh frequency is default to 5 minutes.
    var rotationInterval = 5 * time.Minute
    
    // GCE VM credential needs refresh if remaining life time is below 25 minutes.
    var gracePeriod = 25 * time.Minute
    
    // rotateToken determines whether to start periodic token rotation job.
    // This is enabled by default.
    var rotateToken = true
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top