Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for alocale (0.28 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. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

         ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  3. 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)
  4. src/regexp/testdata/testregex.c

    					test |= TEST_BRE;
    					continue;
    				case 'C':
    					if (!(test & TEST_QUERY) && !(skip & level))
    						bad("locale must be nested\n", NiL, NiL, 0, 0);
    					test &= ~TEST_QUERY;
    					if (locale)
    						bad("locale nesting not supported\n", NiL, NiL, 0, 0);
    					if (i != 2)
    						bad("locale field expected\n", NiL, NiL, 0, 0);
    					if (!(skip & level))
    					{
    #if defined(LC_COLLATE) && defined(LC_CTYPE)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top