Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 136 for emptypb (0.18 sec)

  1. tensorflow/compiler/jit/deadness_analysis.cc

                          });
        }
        if (common_inner_operands.empty()) break;
        common_inner_operands_set.clear();
        common_inner_operands_set.insert(common_inner_operands.begin(),
                                         common_inner_operands.end());
      }
    
      if (common_inner_operands.empty()) {
        return MakeInternedAndOr(std::move(simplified_ops), pred_kind);
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional bool namespaced = 2;
    
      // group is the preferred group of the resource.  Empty implies the group of the containing resource list.
      // For subresources, this may have a different value, for example: Scale".
      optional string group = 8;
    
      // version is the preferred version of the resource.  Empty implies the version of the containing resource list
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional bool namespaced = 2;
    
      // group is the preferred group of the resource.  Empty implies the group of the containing resource list.
      // For subresources, this may have a different value, for example: Scale".
      optional string group = 8;
    
      // version is the preferred version of the resource.  Empty implies the version of the containing resource list
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. pkg/apis/storage/validation/validation_test.go

    		}
    	}
    	migrationEnabledErrorCases := []storage.VolumeAttachment{{
    		// Empty attacher name
    		ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    		Spec: storage.VolumeAttachmentSpec{
    			Attacher: "",
    			NodeName: "mynode",
    			Source: storage.VolumeAttachmentSource{
    				PersistentVolumeName: &volumeName,
    			},
    		},
    	}, {
    		// Empty node name
    		ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // `paramKind` in the policy and leaving this field empty.
      //
      // - If `paramKind` is cluster-scoped, this field MUST be unset. Setting this
      // field results in a configuration error.
      //
      // - If `paramKind` is namespace-scoped, the namespace of the object being
      // evaluated for admission will be used when this field is left unset. Take
      // care that if this is left empty the binding must not match any cluster-scoped
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/index/suffixarray/sais2.go

    		// If k-1 is S-type (text[k-1] < text[k]), queue -k to save for the caller.
    		// If k is zero, k-1 doesn't exist, so we only need to leave it
    		// for the caller. The caller can't tell the difference between
    		// an empty slot and a non-empty zero, but there's no need
    		// to distinguish them anyway: the final suffix array will end up
    		// with one zero somewhere, and that will be a real zero.
    		k := j - 1
    		c1 := text[k]
    		if k > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

        following rule: if the scalar is a numerical value, non-zero means
        True and zero means False; if the scalar is a string, non-empty
        means True and empty means False. If the tensor is not a scalar,
        being empty means False and being non-empty means True.
    input: A list of input tensors.
    then_branch: A function that takes 'inputs' and returns a list of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string
    	// that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and
    	// the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  9. src/encoding/xml/marshal_test.go

    	// Test escaping.
    	{
    		ExpectXML: `<a><nested><value>dquote: &#34;; squote: &#39;; ampersand: &amp;; less: &lt;; greater: &gt;;</value></nested><empty></empty></a>`,
    		Value: &AnyTest{
    			Nested:   `dquote: "; squote: '; ampersand: &; less: <; greater: >;`,
    			AnyField: AnyHolder{XMLName: Name{Local: "empty"}},
    		},
    	},
    	{
    		ExpectXML: `<a><nested><value>newline: &#xA;; cr: &#xD;; tab: &#x9;;</value></nested><AnyField></AnyField></a>`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  10. src/net/http/request.go

    	// For client requests, an empty string means GET.
    	Method string
    
    	// URL specifies either the URI being requested (for server
    	// requests) or the URL to access (for client requests).
    	//
    	// For server requests, the URL is parsed from the URI
    	// supplied on the Request-Line as stored in RequestURI.  For
    	// most requests, fields other than Path and RawQuery will be
    	// empty. (See RFC 7230, Section 5.3)
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top