Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 99 for alocale (0.19 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                        return language.toLowerCase(Locale.ROOT) + "-" + country.toLowerCase(Locale.ROOT);
                    }
                    return language.toLowerCase(Locale.ROOT);
                }
                return null;
            }).toArray(n -> new String[n]));
        }
    
        default Locale getQueryLocaleFromName(final String name) {
            if (name == null) {
                return Locale.ROOT;
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  2. hack/local-up-cluster.sh

    function usage {
                echo "This script starts a local kube cluster. "
                echo "Example 0: hack/local-up-cluster.sh -h  (this 'help' usage description)"
                echo "Example 1: hack/local-up-cluster.sh -o _output/dockerized/bin/linux/amd64/ (run from docker output)"
                echo "Example 2: hack/local-up-cluster.sh -O (auto-guess the bin path for your platform)"
                echo "Example 3: hack/local-up-cluster.sh (build a local copy of the source)"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

                properties.put("stderr.encoding", getDefaultCharacterEncoding());
            }
            Locale locale = getDefaultLocale();
            if (locale != null) {
                properties.put("user.language", locale.getLanguage());
                properties.put("user.country", locale.getCountry());
                properties.put("user.variant", locale.getVariant());
            }
    
            if (eagerClassLoaderCreationChecksOn) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                            final String lowerGroupDn = fessConfig.getLdapAdminGroupBaseDn().toLowerCase(Locale.ROOT);
                            final String lowerRoleDn = fessConfig.getLdapAdminRoleBaseDn().toLowerCase(Locale.ROOT);
                            processSearchRoles(result, (entryDn, name) -> {
                                final String lowerEntryDn = entryDn.toLowerCase(Locale.ROOT);
                                if (lowerEntryDn.indexOf(lowerGroupDn) != -1) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

            }
    
            @Override
            public Object getAttribute(final String name) {
                return request.getAttribute(name);
            }
    
            @Override
            public Locale getLocale() {
                return Locale.ROOT;
            }
    
            @Override
            public SearchRequestType getType() {
                return SearchRequestType.JSON;
            }
    
            @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/devicemanager/manager_test.go

    	as.Equal(1, len(testManager.endpoints))
    
    	// Stops resourceName2 endpoint. Verifies its stopTime is set, allocate and
    	// preStartContainer calls return errors.
    	e2.client.Disconnect()
    	as.False(e2.stopTime.IsZero())
    	_, err = e2.allocate([]string{"Device1"})
    	reflect.DeepEqual(err, fmt.Errorf(errEndpointStopped, e2))
    	_, err = e2.preStartContainer([]string{"Device1"})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  7. src/runtime/mgcmark.go

    			// frames.
    			state.conservative = false
    		}
    		return
    	}
    
    	locals, args, objs := frame.getStackMap(false)
    
    	// Scan local variables if stack frame has been allocated.
    	if locals.n > 0 {
    		size := uintptr(locals.n) * goarch.PtrSize
    		scanblock(frame.varp-size, size, locals.bytedata, gcw, state)
    	}
    
    	// Scan arguments.
    	if args.n > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. src/runtime/malloc.go

    // persistentChunkSize is the number of bytes we allocate when we grow
    // a persistentAlloc.
    const persistentChunkSize = 256 << 10
    
    // persistentChunks is a list of all the persistent chunks we have
    // allocated. The list is maintained through the first word in the
    // persistent chunk. This is updated atomically.
    var persistentChunks *notInHeap
    
    // Wrapper around sysAlloc that can allocate small chunks.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  9. tensorflow/c/kernels_test.cc

    }
    
    REGISTER_OP("AllocateOutputOp1").Output("output1: float");
    
    TEST_F(DeviceKernelOpTest, TestAllocateOutputSizeOne) {
      auto my_compute_func = [](void* kernel, TF_OpKernelContext* ctx) {
        // Allocate output
        TF_Status* s = TF_NewStatus();
        int64_t dim = 1;
        size_t tensor_size_bytes = TF_DataTypeSize(TF_FLOAT);
        TF_Tensor* output = TF_AllocateOutput(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  10. src/runtime/mheap.go

    	if needPhysPageAlign {
    		// Overallocate by a physical page to allow for later alignment.
    		extraPages := physPageSize / pageSize
    
    		// Find a big enough region first, but then only allocate the
    		// aligned portion. We can't just allocate and then free the
    		// edges because we need to account for scavenged memory, and
    		// that's difficult with alloc.
    		//
    		// Note that we skip updates to searchAddr here. It's OK if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top