Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 224 for discarded (0.13 sec)

  1. cmd/metacache-entries.go

    // The output channel will be closed when all inputs are emptied.
    // If file names are equal, compareMeta is called to select which one to choose.
    // The entry not chosen will be discarded.
    // If the context is canceled the function will return the error,
    // otherwise the function will return nil.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder.go

    	// resolve cluster name conflicts. there can be duplicate cluster names if there are conflicting service definitions.
    	// for any clusters that share the same name the first cluster is kept and the others are discarded.
    	have := sets.String{}
    	out := make([]*discovery.Resource, 0, len(clusters))
    	for _, c := range clusters {
    		if !have.InsertContains(c.Name) {
    			out = append(out, c)
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_server.go

    	"crypto/rsa"
    	"crypto/subtle"
    	"crypto/x509"
    	"errors"
    	"fmt"
    	"hash"
    	"internal/byteorder"
    	"io"
    	"time"
    )
    
    // serverHandshakeState contains details of a server handshake in progress.
    // It's discarded once the handshake has completed.
    type serverHandshakeState struct {
    	c            *Conn
    	ctx          context.Context
    	clientHello  *clientHelloMsg
    	hello        *serverHelloMsg
    	suite        *cipherSuite
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_plugin.go

    // for a healthy APIServer
    func waitForAPIServerForever(client clientset.Interface, nodeName types.NodeName) error {
    	var lastErr error
    	// Served object is discarded so no risk to have stale object with benefit to
    	// reduce the load on APIServer and etcd.
    	opts := meta.GetOptions{}
    	util.FromApiserverCache(&opts)
    	err := wait.PollImmediateInfinite(time.Second, func() (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

                // Only runs once, as the transform execution in-memory cache is not discarded prior to execution time
                output.count(lib1Message) == 1
                output.count(lib2Message) == 1
            } else {
                // Transform is also executed at execution time, as the artifact has changed and the execution cache is discarded on load from cache
                output.count(lib1Message) == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  6. tensorflow/BUILD

    # correspond to a particular, finalized design; rather, it relates to
    # developing one.
    #
    # The current aim of the 'v2' implementation is to allow 'unused' ops and
    # kernels to be discarded by the linker (to the benefit of binary size).
    bool_flag(
        name = "enable_registration_v2",
        build_setting_default = False,
        visibility = ["//visibility:public"],
    )
    
    config_setting(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/cache/DiskLruCacheTest.kt

        val editor = cache.edit("k1")!!
        cache.evictAll()
        assertThat(editor.newSource(0)).isNull()
      }
    
      @ParameterizedTest
      @ArgumentsSource(FileSystemParamProvider::class)
      fun `edit discarded after editor detached`(parameters: Pair<FileSystem, Boolean>) {
        setUp(parameters.first, parameters.second)
        set("k1", "a", "a")
    
        // Create an editor, then detach it.
        val editor = cache.edit("k1")!!
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/autoscaling/v2/types.go

    	// policies is a list of potential scaling polices which can be used during scaling.
    	// At least one policy must be specified, otherwise the HPAScalingRules will be discarded as invalid
    	// +listType=atomic
    	// +optional
    	Policies []HPAScalingPolicy `json:"policies,omitempty" listType:"atomic" protobuf:"bytes,2,rep,name=policies"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  9. src/cmd/asm/internal/asm/asm.go

    			//   BC x,$5
    			// into
    			//   BC x,CR0LT,...
    			//   BC x,CR0EQ,...
    			//   BC x,CR1LT,...
    			//   BC x,CR1GT,...
    			// The first and second cases demonstrate a symbol name which is
    			// effectively discarded. In these cases, the offset determines
    			// the CR bit.
    			prog.Reg = a[1].Reg
    			if a[1].Type != obj.TYPE_REG {
    				// The CR bit is represented as a constant 0-31. Convert it to a Reg.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/Task.java

         * </p>
         *
         * <p>
         * The presence of incompatible tasks in the task graph will cause the configuration state to be discarded
         * at the end of the build unless the global {@code configuration-cache-problems} option is set to {@code warn},
         * in which case the configuration state would still be cached in a best-effort manner as usual for the option.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top