Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,300 for localIP (0.36 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultClassLoaderScope.java

                        effectiveExportClassLoader = parent.getExportClassLoader();
                        effectiveLocalClassLoader = localLoader(id.localId(), effectiveExportClassLoader, local);
                    } else if (hasExports) {
                        classLoaderCache.remove(id.localId());
                        effectiveExportClassLoader = loader(id.exportId(), parent.getExportClassLoader(), export, exportLoaders);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

       __hidden_nolink3 (local, internal, #name "@" #version)
     #  define __hidden_nolink3(local, internal, vername) \
       __asm__ (".symver " #internal ", " vername);
    diff --git a/locale/weightwc.h b/locale/weightwc.h
    index e966c03..22ab790 100644
    --- a/locale/weightwc.h
    +++ b/locale/weightwc.h
    @@ -79,19 +79,19 @@ findidx (const wint_t **cpp, size_t len)
     	    if (cp[cnt] != usrc[cnt])
     	      break;
     
    -	  if (cnt < nhere - 1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. 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)
  4. src/test/java/jcifs/tests/DfsTest.java

            assertEquals(getTestDfsTargetServer().toLowerCase(Locale.ROOT), ref.getServer().toLowerCase(Locale.ROOT));
            assertEquals(dfsTestSharePath.length() - 1, ref.getPathConsumed());
    
            DfsReferralData ref2 = doResolve(dfsTestSharePath, "", true, true);
    
            assertNotNull(ref2);
            assertEquals(getTestDfsTargetServer().toLowerCase(Locale.ROOT), ref2.getServer().toLowerCase(Locale.ROOT));
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Mar 01 09:46:04 UTC 2020
    - 13.5K bytes
    - Viewed (0)
  5. platforms/software/resources/src/main/java/org/gradle/internal/resource/local/LocallyAvailableResourceFinder.java

     */
    
    package org.gradle.internal.resource.local;
    
    /**
     * Can find a locally available candidates for an external resource, through some means.
     *
     * This is different to our caching in that we know very little about locally available resources, other than their
     * binary content. If we can determine the sha1 value of an external resource, we can search the local system to see
     * if a copy can be found (e.g. the local Maven cache).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    // "rg" in the "u" extension.
    func (t Tag) RegionalTag() Tag {
    	rt := Tag{language: t.locale, locale: t.locale}
    	if t.full == nil {
    		return rt
    	}
    	b := language.Builder{}
    	tag := t.Tag()
    	// tag, _ = tag.SetTypeForKey("rg", "")
    	b.SetTag(t.locale.Tag())
    	if v := tag.Variants(); v != "" {
    		for _, v := range strings.Split(v, "-") {
    			b.AddVariant(v)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  7. src/sync/pool.go

    	s := p.localSize
    	l := p.local
    	if uintptr(pid) < s {
    		return indexLocal(l, pid), pid
    	}
    	if p.local == nil {
    		allPools = append(allPools, p)
    	}
    	// If GOMAXPROCS changes between GCs, we re-allocate the array and lose the old one.
    	size := runtime.GOMAXPROCS(0)
    	local := make([]poolLocal, size)
    	atomic.StorePointer(&p.local, unsafe.Pointer(&local[0])) // store-release
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (1)
  8. src/main/java/org/codelibs/fess/taglib/FessFunctions.java

            df.applyPattern(pattern);
            return df.format(value);
        }
    
        private static Locale getUserLocale() {
            final Locale locale = ComponentUtil.getRequestManager().getUserLocale();
            if (locale == null) {
                return Locale.ROOT;
            }
            return locale;
        }
    
        public static String formatFileSize(final long value) {
            double target = value;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/experimental/tac/py_wrapper/tac_wrapper.h

    #include <functional>
    #include <memory>
    #include <string>
    #include <vector>
    
    // Place `<locale>` before <Python.h> to avoid build failures in macOS.
    #include <locale>
    
    // The empty line above is on purpose as otherwise clang-format will
    // automatically move <Python.h> before <locale>.
    #include <Python.h>
    
    namespace tflite {
    
    // Run target-aware-conversion for the given tflite model with the given device
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 21 01:22:53 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  10. test/fixedbugs/bug424.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests that method calls through an interface always
    // call the locally defined method localT.m independent
    // at which embedding level it is and in which order
    // embedding is done.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 375 bytes
    - Viewed (0)
Back to top