Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Listen (0.2 sec)

  1. istioctl/pkg/describe/describe.go

    	ingress *ingressInfo,
    ) {
    	if ingress == nil || ingress.service == nil || len(ingress.pods) == 0 {
    		return
    	}
    	// The ingressgateway service offers a lot of ports but the pod doesn't listen to all
    	// of them.  For example, it doesn't listen on 443 without additional setup.  This prints
    	// the most basic output.
    	portsToShow := map[string]bool{
    		"http2": true,
    		"http":  true,
    	}
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 50.4K bytes
    - Viewed (0)
  2. cmd/peer-rest-server.go

    		}
    		mask.MergeMaskable(eventName)
    		eventNames = append(eventNames, eventName)
    	}
    
    	rulesMap := event.NewRulesMap(eventNames, pattern, event.TargetID{ID: mustGetUUID()})
    
    	// Listen Publisher uses nonblocking publish and hence does not wait for slow subscribers.
    	// Use buffered channel to take care of burst sends or slow w.Write()
    	ch := make(chan event.Event, globalAPIConfig.getRequestsPoolCapacity())
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 51.8K bytes
    - Viewed (0)
  3. docs/bucket/notifications/README.md

    | `s3:BucketCreated`                                                           |
    | `s3:BucketRemoved`                                                           |
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 84K bytes
    - Viewed (2)
  4. cmd/test-utils_test.go

    	queryValue := url.Values{}
    	queryValue.Set("uploadId", uploadID)
    	return makeTestTargetURL(endPoint, bucketName, objectName, queryValue)
    }
    
    // return URL for listen bucket notification.
    func getListenNotificationURL(endPoint, bucketName string, prefixes, suffixes, events []string) string {
    	queryValue := url.Values{}
    
    	queryValue["prefix"] = prefixes
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:06:57 GMT 2024
    - 75.7K bytes
    - Viewed (0)
  5. common/scripts/metallb-native.yaml

    ---
    apiVersion: rbac.authorization.k8s.io/v1
    kind: RoleBinding
    metadata:
      labels:
        app: metallb
      name: pod-lister
      namespace: metallb-system
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: Role
      name: pod-lister
    subjects:
    - kind: ServiceAccount
      name: speaker
      namespace: metallb-system
    ---
    apiVersion: rbac.authorization.k8s.io/v1
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Feb 23 23:56:31 GMT 2024
    - 63.9K bytes
    - Viewed (0)
  6. cmd/object-api-multipart_test.go

    			},
    		},
    		// listMultipartResults - 32.
    		// checking listing with marker set to no of objects in the list.
    		// `NextUploadIDMarker` is expected to be empty since all results are listed.
    		// `NextKeyMarker` is expected to be empty since all results are listed.
    		{
    			MaxUploads:  6,
    			IsTruncated: false,
    			Uploads: []MultipartInfo{
    				{
    					Object:   objectNames[0],
    					UploadID: uploadIDs[4],
    				},
    				{
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 77.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/reflect/TypeToken.java

      }
    
      /**
       * Returns the set of interfaces and classes that this type is or is a subtype of. The returned
       * types are parameterized with proper type arguments.
       *
       * <p>Subtypes are always listed before supertypes. But the reverse is not true. A type isn't
       * necessarily a subtype of all the types following. Order between types without subtype
       * relationship is arbitrary and not guaranteed.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 53.6K bytes
    - Viewed (0)
  8. tensorflow/c/c_api.h

    //  description - optional human-readable description of this function.
    //  status - Set to OK on success and an appropriate error on failure.
    //
    // Note that when the same TF_Output is listed as both an input and an output,
    // the corresponding function's output will equal to this input,
    // instead of the original node's output.
    //
    // Callers must also satisfy the following constraints:
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  9. cmd/object-api-listobjects_test.go

    	bucket := "ls-benchmark-bucket"
    	// Create a bucket.
    	err := obj.MakeBucket(context.Background(), bucket, MakeBucketOptions{})
    	if err != nil {
    		b.Fatal(err)
    	}
    
    	// Insert objects to be listed and benchmarked later.
    	for i := 0; i < 20000; i++ {
    		key := "obj" + strconv.Itoa(i)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Jan 30 20:43:25 GMT 2024
    - 73.1K bytes
    - Viewed (0)
  10. cmd/xl-storage.go

    			done = globalScannerMetrics.time(scannerMetricTierObjSweep)
    			globalExpiryState.enqueueFreeVersion(oi)
    			done()
    		}
    
    		// These are rather expensive. Skip if nobody listens.
    		if globalTrace.NumSubscribers(madmin.TraceScanner) > 0 {
    			if len(fivs.FreeVersions) > 0 {
    				res["free-versions"] = strconv.Itoa(len(fivs.FreeVersions))
    			}
    
    			if sizeS.versions > 0 {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 84.7K bytes
    - Viewed (0)
Back to top