Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 72 for leastOf (0.18 sec)

  1. pkg/printers/internalversion/printers.go

    				}
    			} else if container.Ready && container.State.Running != nil {
    				hasRunning = true
    				readyContainers++
    			}
    		}
    
    		// change pod status back to "Running" if there is at least one container still reporting as "Running" status
    		if reason == "Completed" && hasRunning {
    			if hasPodReadyCondition(pod.Status.Conditions) {
    				reason = "Running"
    			} else {
    				reason = "NotReady"
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

    bool IsSpatialPoolingWithoutDilation(
        mhlo::ReduceWindowOp rw, llvm::SmallVectorImpl<int64_t>* window_strides,
        std::string* padding_mode, std::string* data_format) {
      // tf.max_pool or tf.avg_pool need at least 3 dimensions (batch, spatial,
      // channel).
      const uint64_t rank = rw.getWindowDimensions().size();
      if (rank <= 3 || rank > 5) return false;
    
      if (rw.getWindowStrides().has_value()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	// systems with GCC version 4.2.1; that is the last GPLv2 version of GCC,
    	// so some systems have frozen on it. Now we pass an empty file on stdin,
    	// which should work at least for GCC and clang.
    	//
    	// If the argument is "-Wl,", then it is testing the linker. In that case,
    	// skip "-c". If it's not "-Wl,", then we are testing the compiler and can
    	// omit the linking step with "-c".
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. cluster/gce/gci/configure-helper.sh

      echo "/core.%e.%p.%t" > /proc/sys/kernel/core_pattern
    }
    
    # secure_random generates a secure random string of bytes. This function accepts
    # a number of secure bytes desired and returns a base64 encoded string with at
    # least the requested entropy. Rather than directly reading from /dev/urandom,
    # we use uuidgen which calls getrandom(2). getrandom(2) verifies that the
    # entropy pool has been initialized sufficiently for the desired operation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

                    ),
                )
            ],
        )
    
        with self.assertRaisesRegex(
            ValueError, 'UnitWiseQuantizationSpec must contain at least one unit.'
        ):
          quantize_model.quantize(
              self._input_saved_model_path,
              self._output_saved_model_path,
              quantization_options,
          )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.listMap.filter(m, has(m.v2) && m.v2 == 'z').map(m, m.v2).size() == 1",
    				// - without has checks:
    
    				// all() and exists() macros ignore errors from predicates so long as the condition holds for at least one element
    				"self.listMap.exists(m, m.v2 == 'z')",
    				"!self.listMap.all(m, m.v2 != 'z')",
    			},
    			errors: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  7. samples/addons/grafana.yaml

    $datasource"},"expr":"sum(pilot_xds{})","legendFormat":"Connections (server reported)"}],"title":"Connections","type":"timeseries"},{"datasource":{"type":"datasource","uid":"-- Mixed --"},"description":"Number of push errors. Many of these are at least potentional fatal and should be explored in-depth via Istiod logs.\nNote: metrics here do not use rate() to avoid missing transition from \"No series\"; series are not reported if there are no errors at all.\n","fieldConfig":{"defaults":{"custom":...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  8. pkg/printers/internalversion/printers_test.go

    		t.Run(test.name, func(t *testing.T) {
    			rows, err := test.printer()
    			if err != nil {
    				t.Fatalf("expected no error, but got: %#v", err)
    			}
    			if len(rows) <= 0 {
    				t.Fatalf("expected to have at least one TableRow, but got: %d", len(rows))
    			}
    
    			func() {
    				defer func() {
    					if err := recover(); err != nil {
    						// Same as stdlib http server code. Manually allocate stack
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/asm9.go

    	bp := c.cursym.P
    	var i int32
    	for p := c.cursym.Func().Text.Link; p != nil; p = p.Link {
    		c.pc = p.Pc
    		o = c.oplook(p)
    		if int(o.size) > 4*len(out) {
    			log.Fatalf("out array in span9 is too small, need at least %d for %v", o.size/4, p)
    		}
    		// asmout is not set up to add large amounts of padding
    		if o.type_ == 0 && p.As == obj.APCALIGN {
    			aln := c.vregoff(&p.From)
    			v := addpad(p.Pc, aln, c.ctxt, c.cursym)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/asm6.go

    	return fj || isJump(p)
    }
    
    type nopPad struct {
    	p *obj.Prog // Instruction before the pad
    	n int32     // Size of the pad
    }
    
    // requireAlignment ensures that the function alignment is at
    // least as high as a, which should be a power of two
    // and between 8 and 2048, inclusive.
    //
    // the boolean result indicates whether the alignment meets those constraints
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top