Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 540 for num1 (0.05 sec)

  1. src/main/java/org/codelibs/core/misc/Base64Util.java

            final byte[] outData = new byte[num * 3 + lastBytes];
            for (int i = 0; i < num; i++) {
                decode(inData, i * 4, outData, i * 3);
            }
            switch (lastBytes) {
            case 1:
                decode1byte(inData, num * 4, outData, num * 3);
                break;
            case 2:
                decode2byte(inData, num * 4, outData, num * 3);
                break;
            default:
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/definingUsingConfigurations-custom/groovy/src/main/webapp/hello.jsp

    <html>
    <head><title>Randomizer</title></head>
    <body>
    <%
        double num = Math.random();
        if (num > 0.5) {
    %>
    <h2>It's your lucky day!</h2><p>(<%= num %>)</p>
    <%
    } else {
    %>
    <h2>Sorry...bad day</h2><p>(<%= num %>)</p>
    <%
        }
    %>
    <a href="<%= request.getRequestURI() %>"><h3>Try Again</h3></a>
    </body>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 312 bytes
    - Viewed (0)
  3. cluster/gce/config-common.sh

    #
    # Vars assumed:
    #   NUM_NODES
    #   NUM_WINDOWS_NODES
    function get-num-nodes {
      echo "$((NUM_NODES + NUM_WINDOWS_NODES))"
    }
    
    # Vars assumed:
    #   NUM_NODES
    #   NUM_WINDOWS_NODES
    function get-master-size {
      local suggested_master_size=2
      if [[ "$(get-num-nodes)" -gt "10" ]]; then
        suggested_master_size=4
      fi
      if [[ "$(get-num-nodes)" -gt "50" ]]; then
        suggested_master_size=8
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:06:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/suggest/index/contents/document/ESSourceReaderTest.java

            }
            assertEquals(num, count);
            assertEquals(num, valueSet.size());
        }
    
        @Test
        public void test_ReadWithLimit() throws Exception {
            String indexName = "test-index";
            Client client = runner.client();
            SuggestSettings settings = suggester.settings();
            int num = 10000;
    
            addDocument(indexName, client, num);
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/memorymanager/policy_static.go

    	if err != nil {
    		return err
    	}
    
    	machineState := s.GetMachineState()
    	bestHint := &hint
    	// topology manager returned the hint with NUMA affinity nil
    	// we should use the default NUMA affinity calculated the same way as for the topology manager
    	if hint.NUMANodeAffinity == nil {
    		defaultHint, err := p.getDefaultHint(machineState, pod, requestedResources)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 12 07:34:55 UTC 2023
    - 34K bytes
    - Viewed (0)
  6. internal/grid/grid_types_msgp_test.go

    	for zb0001 > 0 {
    		zb0001--
    		field, err = dc.ReadMapKeyPtr()
    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		switch msgp.UnsafeString(field) {
    		case "Num":
    			z.Num, err = dc.ReadInt()
    			if err != nil {
    				err = msgp.WrapError(err, "Num")
    				return
    			}
    		case "String":
    			z.String, err = dc.ReadString()
    			if err != nil {
    				err = msgp.WrapError(err, "String")
    				return
    			}
    		default:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 21 01:09:35 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/memorymanager/memory_manager.go

    	// GetMemoryNUMANodes provides NUMA nodes that are used to allocate the container memory
    	GetMemoryNUMANodes(pod *v1.Pod, container *v1.Container) sets.Set[int]
    
    	// GetAllocatableMemory returns the amount of allocatable memory for each NUMA node
    	GetAllocatableMemory() []state.Block
    
    	// GetMemory returns the memory allocated by a container from NUMA nodes
    	GetMemory(podUID, containerName string) []state.Block
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 00:50:45 UTC 2023
    - 17.1K bytes
    - Viewed (1)
  8. platforms/documentation/docs/src/snippets/dependencyManagement/definingUsingConfigurations-custom/kotlin/src/main/webapp/hello.jsp

    <html>
    <head><title>Randomizer</title></head>
    <body>
    <%
        double num = Math.random();
        if (num > 0.5) {
    %>
    <h2>It's your lucky day!</h2><p>(<%= num %>)</p>
    <%
    } else {
    %>
    <h2>Sorry...bad day</h2><p>(<%= num %>)</p>
    <%
        }
    %>
    <a href="<%= request.getRequestURI() %>"><h3>Try Again</h3></a>
    </body>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 312 bytes
    - Viewed (0)
  9. pkg/kubelet/cm/topologymanager/topology_manager_test.go

    		{
    			description:    "Policy is set to restricted",
    			policyName:     "restricted",
    			expectedPolicy: "restricted",
    		},
    		{
    			description:    "Policy is set to single-numa-node",
    			policyName:     "single-numa-node",
    			expectedPolicy: "single-numa-node",
    		},
    		{
    			description:   "Policy is set to unknown",
    			policyName:    "unknown",
    			expectedError: fmt.Errorf("unknown policy: \"unknown\""),
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 11 13:04:32 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/SearchBody.java

    public class SearchBody extends ListForm {
    
        // `size` is an alias of `num`.
        // `size` is prepared to be compatible with other Admin APIs
        @ValidateTypeFailure
        public Integer size;
    
        @Override
        public void initialize() {
            if (size != null) {
                num = (num == null || num < size) ? size : num;
            }
            super.initialize();
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.2K bytes
    - Viewed (0)
Back to top