Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 136 for emptypb (0.17 sec)

  1. docs/bucket/notifications/README.md

    > port         (port)               MySQL server port (used only if `dsn_string` is empty)
    > username     (string)             database username (used only if `dsn_string` is empty)
    > password     (string)             database password (used only if `dsn_string` is empty)
    > database     (string)             database name (used only if `dsn_string` is empty)
    > ```
    >
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  2. cmd/bucket-handlers.go

    		}
    
    		if replicateDeletes || object.VersionID != "" && hasLockEnabled || !globalTierConfigMgr.Empty() {
    			if !globalTierConfigMgr.Empty() && object.VersionID == "" && opts.VersionSuspended {
    				opts.VersionID = nullVersionID
    			}
    			goi, gerr = getObjectInfoFn(ctx, bucket, object.ObjectName, opts)
    		}
    
    		if !globalTierConfigMgr.Empty() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/conversion.go

    	// In the Istio API, empty hostname is not allowed. In the Kubernetes API hosts means "any"
    	if len(h) == 0 {
    		return []string{"*"}
    	}
    	return slices.Map(h, func(e k8s.Hostname) string {
    		return string(e)
    	})
    }
    
    func toInternalParentReference(p k8s.ParentReference, localNamespace string) (parentKey, error) {
    	empty := parentKey{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  4. src/fmt/fmt_test.go

    	renamedComplex64  complex64
    	renamedComplex128 complex128
    )
    
    func TestFmtInterface(t *testing.T) {
    	var i1 any
    	i1 = "abc"
    	s := Sprintf("%s", i1)
    	if s != "abc" {
    		t.Errorf(`Sprintf("%%s", empty("abc")) = %q want %q`, s, "abc")
    	}
    }
    
    var (
    	NaN    = math.NaN()
    	posInf = math.Inf(1)
    	negInf = math.Inf(-1)
    
    	intVar = 0
    
    	array  = [5]int{1, 2, 3, 4, 5}
    	iarray = [4]any{1, "hello", 2.5, nil}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    ```mlir
    func @main(%arg0: tensor<8x4xf32>) {
      // EmptyTensorList lowering
      %emptyi = "tf.Const"() {value = dense<0> : tensor<i32>} : () -> tensor<i32>
      %emptyf = "tf.Cast"(%emptyi) : (tensor<i32>) -> tensor<f32>
      %size_shape = "tf.Const"() {value = dense<[10, 8, 4]> : tensor<3xi32>} : () -> tensor<3xi32>
      %tl = "tf.BroadcastTo"(%emptyf, %size_shape) : (tensor<f32>, tensor<3xi32>) -> tensor<10x8x4xf32>
      // TensorListPushBack lowering
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  6. src/go/printer/nodes.go

    // Extra line breaks between statements in the source are respected but at most one
    // empty line is printed between statements.
    func (p *printer) stmtList(list []ast.Stmt, nindent int, nextIsRBrace bool) {
    	if nindent > 0 {
    		p.print(indent)
    	}
    	var line int
    	i := 0
    	for _, s := range list {
    		// ignore empty statements (was issue 3466)
    		if _, isEmpty := s.(*ast.EmptyStmt); !isEmpty {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener.go

    	bindToPort bool
    }
    
    // Primary returns the primary bind, or empty if there is none
    func (l listenerBinding) Primary() string {
    	if len(l.binds) == 0 {
    		return ""
    	}
    	return l.binds[0]
    }
    
    // Extra returns any additional bindings. This is always empty if dual stack is disabled
    func (l listenerBinding) Extra() []string {
    	if !features.EnableDualStack || len(l.binds) == 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. pkg/registry/core/pod/strategy_test.go

    				},
    			},
    			want: api.PodCondition{
    				Type:    api.PodScheduled,
    				Status:  api.ConditionFalse,
    				Reason:  apiv1.PodReasonSchedulingGated,
    				Message: "Scheduling is blocked due to non-empty scheduling gates",
    			},
    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			Strategy.PrepareForCreate(genericapirequest.NewContext(), tt.pod)
    			var got api.PodCondition
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	var msg Msghdr
    	msg.Name = (*byte)(ptr)
    	msg.Namelen = uint32(salen)
    	var dummy byte
    	var empty bool
    	if len(oob) > 0 {
    		empty = emptyIovecs(iov)
    		if empty {
    			var sockType int
    			sockType, err = GetsockoptInt(fd, SOL_SOCKET, SO_TYPE)
    			if err != nil {
    				return 0, err
    			}
    			// send at least one normal byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/CharMatcher.java

       * character, until this returns {@code false} or the end is reached.
       *
       * @param sequence the character sequence to examine, possibly empty
       * @return {@code true} if this matcher matches every character in the sequence, including when
       *     the sequence is empty
       */
      public boolean matchesAllOf(CharSequence sequence) {
        for (int i = sequence.length() - 1; i >= 0; i--) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top