Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 284 for numbuf (0.2 sec)

  1. tests/test_application.py

                        "parameters": [
                            {
                                "required": True,
                                "schema": {"title": "Item Id", "type": "number"},
                                "name": "item_id",
                                "in": "path",
                            }
                        ],
                    }
                },
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 52.2K bytes
    - Viewed (0)
  2. src/internal/trace/order.go

    		return
    	}
    
    	// Create new buf and copy data over.
    	newBuf := make([]T, len(q.buf)*2)
    	pivot := q.start % len(q.buf)
    	first, last := q.buf[pivot:], q.buf[:pivot]
    	copy(newBuf[:len(first)], first)
    	copy(newBuf[len(first):], last)
    
    	// Update the queue state.
    	q.start = 0
    	q.end = len(q.buf)
    	q.buf = newBuf
    }
    
    // pop removes an event from the front of the queue. If the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string provider = 22;
    
      // The number of pods that can be unavailable during a rolling update of the CNI DaemonSet (see
      // `updateStrategy.rollingUpdate.maxUnavailable` here:
      // https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/daemon-set-v1/#DaemonSetSpec).
      // May be specified as a number of pods or as a percent of the total number
      // of pods at the start of the update.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. src/reflect/type.go

    	// method signature, without a receiver, and the Func field is nil.
    	MethodByName(string) (Method, bool)
    
    	// NumMethod returns the number of methods accessible using Method.
    	//
    	// For a non-interface type, it returns the number of exported methods.
    	//
    	// For an interface type, it returns the number of exported and unexported methods.
    	NumMethod() int
    
    	// Name returns the type's name within its package for a defined type.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/sidecar_simulation_test.go

    	ports := `
      ports:
      - name: http
        number: 80
        protocol: HTTP
      - name: auto
        number: 81
      - name: tcp
        number: 82
        protocol: TCP
      - name: tls
        number: 83
        protocol: TLS
      - name: https
        number: 84
        protocol: HTTPS
      - name: grpc
        number: 85
        protocol: GRPC
      - name: h2
        number: 86
        protocol: HTTP2`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  6. src/runtime/mprof.go

    type MemProfileRecord struct {
    	AllocBytes, FreeBytes     int64       // number of bytes allocated, freed
    	AllocObjects, FreeObjects int64       // number of objects allocated, freed
    	Stack0                    [32]uintptr // stack trace for this record; ends at first 0 entry
    }
    
    // InUseBytes returns the number of bytes in use (AllocBytes - FreeBytes).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Gets the number of successful tests.
      int successful_test_count() const;
    
      // Gets the number of failed tests.
      int failed_test_count() const;
    
      // Gets the number of disabled tests that will be reported in the XML report.
      int reportable_disabled_test_count() const;
    
      // Gets the number of disabled tests.
      int disabled_test_count() const;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Gets the number of successful tests.
      int successful_test_count() const;
    
      // Gets the number of failed tests.
      int failed_test_count() const;
    
      // Gets the number of disabled tests that will be reported in the XML report.
      int reportable_disabled_test_count() const;
    
      // Gets the number of disabled tests.
      int disabled_test_count() const;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  9. tests/test_generate_unique_id_function.py

                        "type": "object",
                        "properties": {
                            "name": {"title": "Name", "type": "string"},
                            "price": {"title": "Price", "type": "number"},
                        },
                    },
                    "Message": {
                        "title": "Message",
                        "required": ["title", "description"],
                        "type": "object",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 15:10:26 UTC 2024
    - 66.7K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/serviceregistry_test.go

    func TestWorkloadInstances(t *testing.T) {
    	istiotest.SetForTest(t, &features.WorkloadEntryHealthChecks, true)
    	port := &networking.ServicePort{
    		Name:     "http",
    		Number:   80,
    		Protocol: "http",
    	}
    	labels := map[string]string{
    		"app": "foo",
    	}
    	namespace := "namespace"
    	serviceEntry := config.Config{
    		Meta: config.Meta{
    			Name:             "service-entry",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
Back to top