Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for numbuf (0.17 sec)

  1. cmd/metrics-v2.go

    		Name:      "errors_timeout",
    		Help:      "Total number of drive timeout errors since server uptime",
    		Type:      counterMetric,
    	}
    }
    
    func getNodeDriveIOErrorsMD() MetricDescription {
    	return MetricDescription{
    		Namespace: nodeMetricNamespace,
    		Subsystem: driveSubsystem,
    		Name:      "errors_ioerror",
    		Help:      "Total number of drive I/O errors since server uptime",
    		Type:      counterMetric,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			},
    			metricsName: "scheduler_pending_pods",
    			wants: `
    # HELP scheduler_pending_pods [STABLE] Number of pending pods, by the queue type. 'active' means number of pods in activeQ; 'backoff' means number of pods in backoffQ; 'unschedulable' means number of pods in unschedulablePods that the scheduler attempted to schedule and failed; 'gated' is the number of unschedulable pods that the scheduler never attempted to schedule because they are gated.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/cluster_test.go

    				Ingress: []*networking.IstioIngressListener{
    					{
    						Port: &networking.SidecarPort{
    							Number:   10001,
    							Protocol: string(protocol.HTTP),
    						},
    						ConnectionPool: overrideSettings,
    					},
    					{
    						Port: &networking.SidecarPort{
    							Number:   10002,
    							Protocol: string(protocol.Unsupported),
    						},
    					},
    				},
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  4. cmd/storage-datatypes_gen.go

    		default:
    			bts, err = msgp.Skip(bts)
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z BaseOptions) Msgsize() (s int) {
    	s = 1
    	return
    }
    
    // DecodeMsg implements msgp.Decodable
    func (z *CheckPartsHandlerParams) DecodeMsg(dc *msgp.Reader) (err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods_test.go

    				# TYPE kubelet_desired_pods gauge
    				kubelet_desired_pods{static=""} 0
    				kubelet_desired_pods{static="true"} 0
    				`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    }
    
    func datblk(ctxt *Link, out *OutBuf, addr, size int64) {
    	writeDatblkToOutBuf(ctxt, out, addr, size)
    }
    
    // Used only on Wasm for now.
    func DatblkBytes(ctxt *Link, addr int64, size int64) []byte {
    	buf := make([]byte, size)
    	out := &OutBuf{heap: buf}
    	writeDatblkToOutBuf(ctxt, out, addr, size)
    	return buf
    }
    
    func writeDatblkToOutBuf(ctxt *Link, out *OutBuf, addr int64, size int64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. pkg/config/validation/validation.go

    }
    
    func validatePortSelector(selector *networking.PortSelector) (errs error) {
    	if selector == nil {
    		return nil
    	}
    
    	// port must be a number
    	number := int(selector.GetNumber())
    	errs = appendErrors(errs, agent.ValidatePort(number))
    	return
    }
    
    func validateHTTPRetry(retries *networking.HTTPRetry) (errs error) {
    	if retries == nil {
    		return
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  8. pkg/controller/job/job_controller_test.go

    				t.Errorf("Unexpected number of active pods.  Expected %d, saw %d\n", tc.expectedActive, actual.Status.Active)
    			}
    			if diff := cmp.Diff(tc.expectedReady, actual.Status.Ready); diff != "" {
    				t.Errorf("Unexpected number of ready pods (-want,+got): %s", diff)
    			}
    			if actual.Status.Succeeded != tc.expectedSucceeded {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  9. cmd/bucket-replication.go

    }
    
    const (
    	// WorkerMaxLimit max number of workers per node for "fast" mode
    	WorkerMaxLimit = 500
    
    	// WorkerMinLimit min number of workers per node for "slow" mode
    	WorkerMinLimit = 50
    
    	// WorkerAutoDefault is default number of workers for "auto" mode
    	WorkerAutoDefault = 100
    
    	// MRFWorkerMaxLimit max number of mrf workers per node for "fast" mode
    	MRFWorkerMaxLimit = 8
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // described as follows: The reduce function will in general have (X + Y + Z)
      // arguments, where X is the number of tensor components that represent the
      // state, Y is the number of tensor components that represent the input
      // elements, and Z is the number of tensor components that represent any
      // captured arguments. Y is determined by the output_shapes of an op that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top