Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 26 for consistency (0.3 sec)

  1. src/cmd/link/internal/ld/data.go

    			}
    			return fmt.Errorf("dynamic relocation to unreachable symbol %s",
    				ctxt.loader.SymName(targ))
    		}
    		tgot := ctxt.loader.SymGot(targ)
    		if tgot == loadpe.RedirectToDynImportGotToken {
    
    			// Consistency check: name should be __imp_X
    			sname := ctxt.loader.SymName(targ)
    			if !strings.HasPrefix(sname, "__imp_") {
    				return fmt.Errorf("internal error in windynrelocsym: redirect GOT token applied to non-import symbol %s", sname)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

      // validated by the TensorFlow OpDef type checker. In addition to these
      // checks, the shape inference function for ParseExampleV2 validates the
      // consistency of the argument and result types.
    
      // Validate dense variadic input and output lengths.
      // NOTE(mrry): The Tdense attr is derived from dense_defaults, so we
      // do not need to validate dense_defaults.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    	}
    }
    
    // Commit commits the transaction.
    func (tx *Tx) Commit() error {
    	// Check context first to avoid transaction leak.
    	// If put it behind tx.done CompareAndSwap statement, we can't ensure
    	// the consistency between tx.done and the real COMMIT operation.
    	select {
    	default:
    	case <-tx.ctx.Done():
    		if tx.done.Load() {
    			return ErrTxDone
    		}
    		return tx.ctx.Err()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	//   https://github.com/kubernetes/kubernetes/issues/107894 although may not be worth optimizing.
    	kl.probeManager.RemovePod(pod)
    
    	// Guard against consistency issues in KillPod implementations by checking that there are no
    	// running containers. This method is invoked infrequently so this is effectively free and can
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

      local mode
      mode=$(gcloud compute networks list --filter="name=('${NETWORK}')" --project "${NETWORK_PROJECT}" --format='value(x_gcloud_subnet_mode)' || true)
      # The deprecated field uses lower case. Convert to upper case for consistency.
      echo "$mode" | tr '[:lower:]' '[:upper:]'
    }
    
    function create-network() {
      if ! gcloud compute networks --project "${NETWORK_PROJECT}" describe "${NETWORK}" &>/dev/null; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    				t.Errorf("Content-Type mismatch\n\tgot:  %q\n\twant: %q", g, w)
    			}
    		})
    	}
    }
    
    // Issue 30803: ensure that TimeoutHandler logs spurious
    // WriteHeader calls, for consistency with other Handlers.
    func TestTimeoutHandlerSuperfluousLogs(t *testing.T) {
    	run(t, testTimeoutHandlerSuperfluousLogs, []testMode{http1Mode})
    }
    func testTimeoutHandlerSuperfluousLogs(t *testing.T, mode testMode) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_test.go

    }
    
    func TestApplyRingHashLoadBalancer(t *testing.T) {
    	cases := []struct {
    		name     string
    		lb       *networking.LoadBalancerSettings
    		validate func(c *cluster.Cluster) error
    	}{
    		{
    			"default consistent hash settings",
    			&networking.LoadBalancerSettings{
    				LbPolicy: &networking.LoadBalancerSettings_ConsistentHash{
    					ConsistentHash: &networking.LoadBalancerSettings_ConsistentHashLB{},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Maps.java

        if (expectedSize < 3) {
          checkNonnegative(expectedSize, "expectedSize");
          return expectedSize + 1;
        }
        if (expectedSize < Ints.MAX_POWER_OF_TWO) {
          // This seems to be consistent across JDKs. The capacity argument to HashMap and LinkedHashMap
          // ends up being used to compute a "threshold" size, beyond which the internal table
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Maps.java

        if (expectedSize < 3) {
          checkNonnegative(expectedSize, "expectedSize");
          return expectedSize + 1;
        }
        if (expectedSize < Ints.MAX_POWER_OF_TWO) {
          // This seems to be consistent across JDKs. The capacity argument to HashMap and LinkedHashMap
          // ends up being used to compute a "threshold" size, beyond which the internal table
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  10. tests/integration/pilot/common/routing.go

    			Check:   check.OK(),
    		},
    	})
    }
    
    // consistentHashCases tests destination rule's consistent hashing mechanism
    func consistentHashCases(t TrafficContext) {
    	if len(t.Clusters().ByNetwork()) != 1 {
    		// Consistent hashing does not work for multinetwork. The first request will consistently go to a
    		// gateway, but that gateway will tcp_proxy it to a random pod.
    		t.Skipf("multi-network is not supported")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
Back to top