Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 60 for _Equal (0.12 sec)

  1. pkg/kubelet/kubelet.go

    	for _, c := range pod.Spec.Containers {
    		if cs, ok := podutil.GetContainerStatus(podStatus.ContainerStatuses, c.Name); ok {
    			if cs.Resources == nil {
    				continue
    			}
    			if !cmp.Equal(c.Resources.Limits, cs.Resources.Limits) || !cmp.Equal(cs.AllocatedResources, cs.Resources.Requests) {
    				return true
    			}
    		}
    	}
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        new_outputs = converted_model.signatures[signature_key](**model_inputs)
    
        # The difference between TF and XLA path is expected to be small (smaller
        # or equal to 1 in the quantized domain).
        self.assertAllClose(new_outputs, expected_outputs, atol=1e-1)
    
      @parameterized.parameters(
          testing.parameter_combinations([{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    	hostname, hostDomainName, err := kl.GeneratePodHostNameAndDomain(pod)
    	if err != nil {
    		return nil, nil, err
    	}
    	// nodename will be equal to hostname if SetHostnameAsFQDN is nil or false. If SetHostnameFQDN
    	// is true and hostDomainName is defined, nodename will be the FQDN (hostname.hostDomainName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	return precPrimary
    }
    
    // printBase is common print code for types that are printed with a
    // simple suffix.
    func printBase(ps *printState, qual, base AST) {
    	ps.inner = append(ps.inner, qual)
    	ps.print(base)
    	if len(ps.inner) > 0 {
    		qual.(innerPrinter).printInner(ps)
    		ps.inner = ps.inner[:len(ps.inner)-1]
    	}
    }
    
    // PointerType is a pointer type.
    type PointerType struct {
    	Base AST
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    			rd.Replicate = true
    			return
    		}
    		// For existing object reset - this condition is needed
    		rd.Replicate = tgtStatus == ""
    		return
    	}
    	if resetID == "" || resetBeforeDate.Equal(timeSentinel) { // no reset in progress
    		return
    	}
    
    	// if already replicated, return true if a new reset was requested.
    	splits := strings.SplitN(rs, ";", 2)
    	if len(splits) != 2 {
    		return
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/ppc64/asm9.go

    	/* Vector compare */
    	{as: AVCMPEQ, a1: C_VREG, a2: C_VREG, a6: C_VREG, type_: 82, size: 4},   /* vector compare equal, vc-form */
    	{as: AVCMPGT, a1: C_VREG, a2: C_VREG, a6: C_VREG, type_: 82, size: 4},   /* vector compare greater than, vc-form */
    	{as: AVCMPNEZB, a1: C_VREG, a2: C_VREG, a6: C_VREG, type_: 82, size: 4}, /* vector compare not equal, vx-form */
    
    	/* Vector merge */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        const auto [dilation_h_factor, dilation_w_factor] = GetDilationFactors(op);
        if (is_depthwise) {
          // The total number of depthwise convolution output channels will be
          // equal to input channel * `depth_multiplier`.
          const int64_t multiplier = dimension_numbers.getOutputFeatureDimension() /
                                     dimension_numbers.getInputFeatureDimension();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/load/pkg.go

    		return len(s) < len(t)
    	}
    	// If they are the same length, settle ties using string ordering.
    	for i := range s {
    		if s[i] != t[i] {
    			return s[i] < t[i]
    		}
    	}
    	return false // they are equal
    }
    
    // packageCache is a lookup cache for LoadImport,
    // so that if we look up a package multiple times
    // we return the same pointer each time.
    var packageCache = map[string]*Package{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/prepare-composite-functions-tf.mlir

      %4 = "tf.Const"() {value = dense<0> : tensor<i32>} : () -> tensor<i32>
      %5 = "tf.Range"(%4, %3, %2) : (tensor<i32>, tensor<i32>, tensor<i32>) -> tensor<4096xi32>
      %6 = "tf.Equal"(%1, %5) : (tensor<*xi32>, tensor<4096xi32>) -> tensor<*xi1>
      %7 = "tf.Cast"(%6) : (tensor<*xi1>) -> tensor<*xf32>
      %8 = "tf.BatchMatMulV2"(%7, %arg0) {adj_x = false, adj_y = false} : (tensor<*xf32>, tensor<*xf32>) -> tensor<*xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 122.1K bytes
    - Viewed (0)
  10. pkg/config/validation/validation.go

    		)
    		return errs.Unwrap()
    	})
    
    func validateConcurrency(concurrency int32) (v Validation) {
    	if concurrency < 0 {
    		v = appendErrorf(v, "concurrency must be greater than or equal to 0")
    	}
    	return
    }
    
    // ValidateTelemetry validates a Telemetry.
    var ValidateTelemetry = RegisterValidateFunc("ValidateTelemetry",
    	func(cfg config.Config) (Warning, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
Back to top