Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 136 for leastOf (0.36 sec)

  1. pilot/pkg/networking/core/listener.go

    			// If HTTP 1.0 is enabled, we will match it
    			return []string{"http/1.0", "http/1.1", "h2c"}
    		}
    		// Otherwise, matching would just lead to immediate rejection. By not matching, we can let it pass
    		// through as raw TCP at least.
    		// NOTE: mtlsHTTPALPNs can always include 1.0, for simplicity, as it will only be sent if a client
    		return []string{"http/1.1", "h2c"}
    	}()
    	mtlsHTTPALPNs = []string{"istio-http/1.0", "istio-http/1.1", "istio-h2"}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

            if (type instanceof ConstructedNestedClass) {
                return false;
            }
    
            // a class consisting of a vanilla name can never be
            // a static inner class, because at least one dot is
            // required for this. Example: foo.bar -> foo$bar
            if (type instanceof LowerCaseClass) {
                return false;
            }
    
            // try to resolve a public static inner class' name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	// Add CRD to the establishing controller queue.
    	// For HA clusters, we want to prevent race conditions when changing status to Established,
    	// so we want to be sure that CRD is Installing at least for 5 seconds before Establishing it.
    	// TODO: find a real HA safe checkpointing mechanism instead of an arbitrary wait.
    	if !apiextensionshelpers.IsCRDConditionTrue(newCRD, apiextensionsv1.Established) &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/riscv/obj.go

    	wantNoneReg(ctxt, ins, "rs3", ins.rs3)
    }
    
    func validateB(ctxt *obj.Link, ins *instruction) {
    	// Offsets are multiples of two, so accept 13 bit immediates for the
    	// 12 bit slot. We implicitly drop the least significant bit in encodeB.
    	wantEvenOffset(ctxt, ins, ins.imm)
    	wantImmI(ctxt, ins, ins.imm, 13)
    	wantNoneReg(ctxt, ins, "rd", ins.rd)
    	wantIntReg(ctxt, ins, "rs1", ins.rs1)
    	wantIntReg(ctxt, ins, "rs2", ins.rs2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/lib.go

    	}
    
    	// If there are no dynamic libraries needed, gcc disables dynamic linking.
    	// Because of this, glibc's dynamic ELF loader occasionally (like in version 2.13)
    	// assumes that a dynamic binary always refers to at least one dynamic library.
    	// Rather than be a source of test cases for glibc, disable dynamic linking
    	// the same way that gcc would.
    	//
    	// Exception: on OS X, programs such as Shark only work with dynamic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  6. cmd/kubelet/app/server.go

    	kubeDeps *kubelet.Dependencies,
    	hostname string,
    	hostnameOverridden bool,
    	nodeName types.NodeName,
    	nodeIPs []net.IP) (k kubelet.Bootstrap, err error) {
    	// TODO: block until all sources have delivered at least one update to the channel, or break the sync loop
    	// up into "per source" synchronizations
    
    	k, err = kubelet.NewMainKubelet(&kubeServer.KubeletConfiguration,
    		kubeDeps,
    		&kubeServer.ContainerRuntimeOptions,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    // Replace
    //   Equal(X, indices)
    // With
    //   OneHot(Reshape(X), N, true, false, -1)
    // where
    //  - last dimension of the LHS of the equal is 1, and the rank is at least 2.
    //  - indices is a incrementing series from 0 to N-1. (N elements total.)
    def ReshapeEqualOpToOneHotOp : Pat<
      (TFL_EqualOp $x, (Arith_ConstantOp $series)),
      (TFL_OneHotOp (ReshapeValueDroppingLastDim $x),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      if (in_shape.empty() || in_shape[0] < 0) {
        return context_op->emitOpError()
               << "A map_outside_compilation op's input and output shapes must "
                  "have rank at least one and the first dimension must be known.";
      }
      int64_t split_size = in_shape[0] / num_cores_per_replica;
      if (in_shape[0] % num_cores_per_replica != 0) {
        return context_op->emitOpError()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  9. src/go/types/expr.go

    			check.representable(y, Typ[Uint])
    			if y.mode == invalid {
    				x.mode = invalid
    				return
    			}
    		}
    	} else {
    		// Check that RHS is otherwise at least of integer type.
    		switch {
    		case allInteger(y.typ):
    			if !allUnsigned(y.typ) && !check.verifyVersionf(y, go1_13, invalidOp+"signed shift count %s", y) {
    				x.mode = invalid
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

    // (kLanczosGamma and kLanczosCoefficients.size() + 1). The coefficients below
    // correspond to [7, 9]. [5, 7], [7, 9], [9, 10], and [607/128.0, 15] were
    // evaluated and [7, 9] seemed to be the least sensitive to the quality of the
    // log function. In particular, [5, 7] is the only choice where -1.5e-5 <=
    // lgamma(2) <= 1.5e-5 for a particularly inaccurate log function.
    static constexpr double kLanczosGamma = 7;  // aka g
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
Back to top