Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 140 for numbuf (1.2 sec)

  1. pkg/config/validation/validation_test.go

    			"",
    			"port number",
    		},
    		{
    			"name, no number",
    			&networking.Port{
    				Protocol: "http",
    				Number:   0,
    				Name:     "Henry",
    			},
    			"",
    			"port number",
    		},
    		{
    			"name, no number, uds",
    			&networking.Port{
    				Protocol: "http",
    				Number:   0,
    				Name:     "Henry",
    			},
    			"uds:///tmp",
    			"port number",
    		},
    	}
    	for _, tt := range tests {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  2. 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)
  3. pilot/pkg/networking/core/gateway_test.go

    							{
    								Port: &networking.Port{Name: "http", Number: 80, Protocol: "HTTP"},
    							},
    							{
    								Port:  &networking.Port{Name: "http", Number: 8080, Protocol: "HTTP"},
    								Hosts: []string{"externalgatewayclient.com"},
    							},
    							{
    								Port:  &networking.Port{Name: "http", Number: 8080, Protocol: "HTTP"},
    								Bind:  "127.0.0.1",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "$ref": "#/definitions/io.k8s.apimachinery.pkg.util.intstr.IntOrString",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  5. src/crypto/x509/x509_test.go

    			}
    
    			if tc.template.Number != nil && parsedCRL.Number == nil {
    				t.Fatalf("Generated CRL missing Number: got nil, want %s",
    					tc.template.Number.String())
    			}
    			if tc.template.Number != nil && tc.template.Number.Cmp(parsedCRL.Number) != 0 {
    				t.Fatalf("Generated CRL has wrong Number: got %s, want %s",
    					parsedCRL.Number.String(), tc.template.Number.String())
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    associated with the external service. items: properties: name: description: Label assigned to the port. type: string number: description: A valid non-negative integer port number. type: integer protocol: description: The protocol exposed on the port. type: string targetPort: description: The port number on the endpoint where the traffic will be received. type: integer required: - number - name type: object type: array resolution: description: Service resolution mode for the hosts. enum: - NONE - STATIC...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. cmd/data-usage-cache_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 *allTierStats) Msgsize() (s int) {
    	s = 1 + 3 + msgp.MapHeaderSize
    	if z.Tiers != nil {
    		for za0001, za0002 := range z.Tiers {
    			_ = za0002
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 100.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

          return error_handler(
              llvm::formatv("requires 'tensor' number of elements be a multiple of "
                            "{0}, but got {1}",
                            shape_ty_size, tensor_ty_size));
    
        // Set the unknown dimension such that total number of elements remain
        // constant.
        output_ty_shape[unknown_index] = missing_dim;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top