Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 284 for numbuf (0.11 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			name:             "index of array of array of numnbers",
    			schemaGenerator:  genArrayOfArraysWithRule("number", "self[0][0] == -1.0"),
    			expectedCalcCost: 3,
    			setMaxElements:   51,
    			expectedSetCost:  3,
    		},
    		{
    			name:             "array of number maps with all",
    			schemaGenerator:  getMapArrayWithRule("number", `self.all(x, x.y == 25.2)`),
    			expectedCalcCost: 6291452,
    			setMaxElements:   12,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  2. pilot/pkg/model/virtualservice_test.go

    		Host: "productpage.org",
    		Port: &networking.PortSelector{
    			Number: 80,
    		},
    		Subset: "v1",
    	}
    	dstV2 := &networking.Destination{
    		Host: "productpage.org",
    		Port: &networking.PortSelector{
    			Number: 80,
    		},
    		Subset: "v2",
    	}
    	dstV3 := &networking.Destination{
    		Host: "productpage.org",
    		Port: &networking.PortSelector{
    			Number: 80,
    		},
    		Subset: "v3",
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/extensions/v1beta1/types.go

    	// that the total number of pods available at all times during the update is at
    	// least 70% of desired pods.
    	// +optional
    	MaxUnavailable *intstr.IntOrString `json:"maxUnavailable,omitempty" protobuf:"bytes,1,opt,name=maxUnavailable"`
    
    	// The maximum number of pods that can be scheduled above the desired number of
    	// pods.
    	// Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  4. pilot/pkg/model/sidecar_test.go

    			Egress: []*networking.IstioEgressListener{
    				{
    					Port: &networking.SidecarPort{
    						Number:   8000,
    						Protocol: "HTTP",
    						Name:     "uds",
    					},
    					Hosts: []string{"foo/*"},
    				},
    				{
    					Port: &networking.SidecarPort{
    						Number:   7000,
    						Protocol: "HTTP",
    						Name:     "uds",
    					},
    					Hosts: []string{"foo/*"},
    				},
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/MapsTest.java

        Map<Object, Number> map2 = ImmutableMap.<Object, Number>of(1, 2);
        Map<Object, Integer> map3 = ImmutableMap.<Object, Integer>of(1, 2);
        Map<Number, Object> map4 = ImmutableMap.<Number, Object>of(1, 2);
        Map<Number, Number> map5 = ImmutableMap.<Number, Number>of(1, 2);
        Map<Number, Integer> map6 = ImmutableMap.<Number, Integer>of(1, 2);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    		}
    		st.subs.add(ret)
    	}
    	return ret
    }
    
    // number parses:
    //
    //	number ::= [n] <(non-negative decimal integer)>
    func (st *state) number() int {
    	neg := false
    	if len(st.str) > 0 && st.str[0] == 'n' {
    		neg = true
    		st.advance(1)
    	}
    	if len(st.str) == 0 || !isDigit(st.str[0]) {
    		st.fail("missing number")
    	}
    	val := 0
    	for len(st.str) > 0 && isDigit(st.str[0]) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/httproute_test.go

    					Port: &networking.SidecarPort{
    						// A port that is not in any of the services
    						Number:   9000,
    						Protocol: "HTTP",
    						Name:     "something",
    					},
    					Bind:  "1.1.1.1",
    					Hosts: []string{"*/bookinfo.com"},
    				},
    				{
    					Port: &networking.SidecarPort{
    						// Unix domain socket listener
    						Number:   0,
    						Protocol: "HTTP",
    						Name:     "something",
    					},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  8. docs/bucket/notifications/README.md

    queue_dir            (path)               staging dir for undelivered messages e.g. '/home/events'
    queue_limit          (number)             maximum limit for undelivered messages, defaults to '100000'
    max_open_connections (number)             maximum number of open connections to the database, defaults to '2'
    comment              (sentence)           optionally add a comment to this setting
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

            public String doSomething() {
                Number thing = getThing();
                return String.valueOf(thing);
            }
        }
    
        public static abstract class AbstractClassWithParameterizedTypeParameter implements InterfaceWithTypeParameter<List<Number>> {
            public String doSomething() {
                List<Number> thing = getThing();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.h

    // modification of the graph can increase the number of inputs of
    // an operation.
    TF_CAPI_EXPORT extern void TF_OperationAllInputs(TF_Operation* oper,
                                                     TF_Output* inputs,
                                                     int max_inputs);
    
    // Get the number of current consumers of a specific output of an
    // operation.  Note that this number can change when new operations
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
Back to top