Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 117 for small7 (0.19 sec)

  1. guava/src/com/google/common/collect/ImmutableSortedMap.java

       *         .put(1, "one")
       *         .put(2, "two")
       *         .put(3, "three")
       *         .buildOrThrow();
       * }</pre>
       *
       * <p>For <i>small</i> immutable sorted maps, the {@code ImmutableSortedMap.of()} methods are even
       * more convenient.
       *
       * <p>Builder instances can be reused - it is safe to call {@link #buildOrThrow} multiple times to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/replica_calculator_test.go

    			metricType:    podMetric,
    		},
    	}
    	tc.runTest(t)
    }
    
    // TestComputedToleranceAlgImplementation is a regression test which
    // back-calculates a minimal percentage for downscaling based on a small percentage
    // increase in pod utilization which is calibrated against the tolerance value.
    func TestReplicaCalcComputedToleranceAlgImplementation(t *testing.T) {
    
    	startPods := int32(10)
    	// 150 mCPU per pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/memorymanager/memory_manager_test.go

    			assignments: state.ContainerMemoryAssignments{},
    			activePods:  nil,
    		},
    		{
    			description: "Should fail if try to allocate container requiring amount of memory higher than capacity of one NUMA node but a small pod is already allocated",
    			policyName:  policyTypeStatic,
    			machineInfo: machineInfo,
    			firstPod:    pod,
    			reserved:    reserved,
    			machineState: state.NUMANodeMap{
    				0: &state.NUMANodeState{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 05 13:01:40 UTC 2023
    - 70.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener.go

    		// we listen on the service VIP if and only
    		// if the address is an IP address. If its a CIDR, we listen on
    		// 0.0.0.0, and setup a filter chain match for the CIDR range.
    		// As a small optimization, CIDRs with /32 prefix will be converted
    		// into listener address so that there is a dedicated listener for this
    		// ip:port. This will reduce the impact of a listener reload
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    				},
    				ValidationExtensions: schema.ValidationExtensions{
    					XValidations: apiextensions.ValidationRules{
    						{
    							Rule:    "self.minReplicas < self.maxReplicas",
    							Message: "minReplicas should be smaller than maxReplicas",
    						},
    					},
    				},
    			},
    			expectedResults: []validationMatcher{
    				noError(),
    			},
    		},
    		{
    			name: "valid for string",
    			input: schema.Structural{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DI_OVERRIDE_INFFLAGS   DI_FLAGS = 0x10000000 // Override INF flags
    	DI_PROPS_NOCHANGEUSAGE DI_FLAGS = 0x20000000 // No Enable/Disable in General Props
    
    	DI_NOSELECTICONS DI_FLAGS = 0x40000000 // No small icons in select device dialogs
    
    	DI_NOWRITE_IDS DI_FLAGS = 0x80000000 // Don't write HW & Compat IDs on install
    )
    
    // DI_FLAGSEX is SP_DEVINSTALL_PARAMS.FlagsEx values
    type DI_FLAGSEX uint32
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/lib.go

    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

               (TFL_L2NormalizationOp $x, TFL_AF_None),
               [(L2NormValidReduceIndex $sq_op, $axis)]>;
    
      // Below patterns for L2Normalize when there is an Add or Maximum
      // adding or clamping to a small constant scalar.
      def L2NormalizePattern2#FirstOp#SecondOp : Pat<
                        (FirstOp $x,
                         (SecondOp
                          (TFL_AddOp
                           (TFL_SumOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    					triggerValue, triggerSupported = value, true
    					break
    				}
    			}
    		}
    	}
    
    	// It boils down to a tradeoff between:
    	// - having it as small as possible to reduce memory usage
    	// - having it large enough to ensure that watchers that need to process
    	//   a bunch of changes have enough buffer to avoid from blocking other
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_server_test.go

    		config := testConfig.Clone()
    		config.Certificates = []Certificate{cert}
    		config.MinVersion = VersionTLS13
    		server := Server(serverConn, config)
    		err := server.Handshake()
    		expectError(t, err, "key size too small")
    		close(done)
    	}()
    	err = client.Handshake()
    	expectError(t, err, "handshake failure")
    	<-done
    }
    
    func TestMultipleCertificates(t *testing.T) {
    	clientConfig := testConfig.Clone()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top