Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 80 for leastOf (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    	return nil, nil
    }
    
    // TestSomeUnimplementedRESTStorage ensures that if a rest.Storage does
    // not implement a given method, that it is literally not registered
    // with the server. We need to have at least one verb supported inorder
    // to get a MethodNotAllowed rather than NotFound error.
    func TestSomeUnimplementedRESTStorage(t *testing.T) {
    	type T struct {
    		Method  string
    		Path    string
    		ErrCode int
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/net/http/serve_test.go

    		// Some HTTP clients may fail on this undefined behavior (server replying and
    		// closing the connection while the request is still being written), but
    		// we do support it (at least currently), so we expect a response below.
    		if err != nil {
    			t.Fatalf("Do: %v", err)
    		}
    		if res.StatusCode != 431 {
    			t.Fatalf("expected 431 response status; got: %d %s", res.StatusCode, res.Status)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/asm7.go

    	for p := c.cursym.Func().Text.Link; p != nil; p = p.Link {
    		c.pc = p.Pc
    		o = c.oplook(p)
    		sz := o.size(c.ctxt, p)
    		if sz > 4*len(out) {
    			log.Fatalf("out array in span7 is too small, need at least %d for %v", sz/4, p)
    		}
    		if p.As == obj.APCALIGN || p.As == obj.APCALIGNMAX {
    			v := obj.AlignmentPaddingLength(int32(p.Pc), p, c.ctxt)
    			for i = 0; i < int(v/4); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top