Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 136 for emptypb (0.09 sec)

  1. pkg/apis/flowcontrol/validation/validation_test.go

    					}},
    				}},
    			},
    		},
    		expectedErrors: field.ErrorList{
    			field.Required(field.NewPath("spec").Child("rules").Index(0), "at least one of resourceRules and nonResourceRules has to be non-empty"),
    		},
    	}, {
    		name: "normal flow-schema w/ * verbs/apiGroups/resources should work",
    		flowSchema: &flowcontrol.FlowSchema{
    			ObjectMeta: metav1.ObjectMeta{
    				Name: "system-foo",
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            assert type.isInstance(a)
            assert otherType.isInstance(d)
        }
    
        def "can get all domain objects for empty collection"() {
            expect:
            container.isEmpty()
            container.size() == 0
        }
    
        def "can iterate over empty collection"() {
            expect:
            def iterator = container.iterator()
            !iterator.hasNext()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            return strictVersionConstraints == null ? StrictVersionConstraints.EMPTY : strictVersionConstraints;
        }
    
        private StrictVersionConstraints getEndorsedStrictVersions(EdgeState incomingEdge) {
            if (incomingEdge.getFrom().endorsesStrictVersionsFrom == null) {
                return StrictVersionConstraints.EMPTY;
            }
    
            boolean filterOwn = false;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    							this.set_focus(); // This used to be setTimeout(set_focus,0) - why?
    						}, this))
    					.bind("dblclick.jstree", function (event) {
    						var sel;
    						if(document.selection && document.selection.empty) { document.selection.empty(); }
    						else {
    							if(window.getSelection) {
    								sel = window.getSelection();
    								try {
    									sel.removeAllRanges();
    									sel.collapse();
    								} catch (err) { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admissionregistration/v1/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 May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass.cc

            cluster->has_functional_control_flow() ||
            cluster->is_xla_compile_attr_true()) {
          string& name = cluster_names[cluster->cycles_graph_node_id()];
    
          if (name.empty()) {
            if (!cluster_name_prefix_.empty()) {
              name = absl::StrCat(cluster_name_prefix_, "_");
            } else {
              name = "cluster_";
            }
            if (debug_options_.deterministic_cluster_names) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    		matchPolicy string
    		want        string
    	}{
    		{
    			name: "audiences is empty",
    			in:   []string{},
    			want: "issuer.audiences: Required value: at least one issuer.audiences is required",
    		},
    		{
    			name: "audience is empty",
    			in:   []string{""},
    			want: "issuer.audiences[0]: Required value: audience can't be empty",
    		},
    		{
    			name:        "invalid match policy with single audience",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  8. src/cmd/dist/test.go

    	runTests string        // Regexp of tests to run
    	cpu      string        // If non-empty, -cpu flag
    
    	gcflags   string // If non-empty, build with -gcflags=all=X
    	ldflags   string // If non-empty, build with -ldflags=X
    	buildmode string // If non-empty, -buildmode flag
    
    	env []string // Environment variables to add, as KEY=VAL. KEY= unsets a variable
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/filesystem/modular_filesystem_test.cc

        GTEST_SKIP() << "No filesystem registered: " << s;
    
      // First, test some interesting corner cases concerning empty URIs
      if (GetParam().empty()) {
        EXPECT_EQ(fs->TranslateName(""), "");
        EXPECT_EQ(fs->TranslateName("/"), "/");
        EXPECT_EQ(fs->TranslateName("//"), "/");
        // Empty scheme also allows relative paths
        EXPECT_EQ(fs->TranslateName("a_file"), "a_file");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:25:58 UTC 2022
    - 71K bytes
    - Viewed (0)
  10. cmd/iam-store.go

    					return nil, time.Time{}, err
    				}
    				mp, _ = c.iamSTSPolicyMap.Load(name)
    			}
    		}
    	}
    
    	// returned policy could be empty
    	policies := mp.toSlice()
    
    	for _, group := range c.iamUserGroupMemberships[name].ToSlice() {
    		if store.getUsersSysType() == MinIOUsersSysType {
    			g, ok := c.iamGroupsMap[group]
    			if !ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top