Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 279 for setnle (0.1 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/CrawlingInfoDbm.java

                    "expiredTime");
            setupEpg(_epgMap, et -> ((CrawlingInfo) et).getName(), (et, vl) -> ((CrawlingInfo) et).setName(DfTypeUtil.toString(vl)), "name");
            setupEpg(_epgMap, et -> ((CrawlingInfo) et).getSessionId(), (et, vl) -> ((CrawlingInfo) et).setSessionId(DfTypeUtil.toString(vl)),
                    "sessionId");
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/file/FileCopyDetails.java

         * Excludes this file from the copy.
         */
        void exclude();
    
        /**
         * Sets the destination name of this file.
         *
         * @param name The destination name of this file.
         */
        void setName(String name);
    
        /**
         * Sets the destination path of this file.
         *
         * @param path The path of this file.
         */
        void setPath(String path);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/ZipFileTree.java

            File expandedDir = getExpandedDir();
            decompressionCoordinator.exclusiveAccessTo(expandedDir, () -> {
                AtomicBoolean stopFlag = new AtomicBoolean();
                try (ZipFile zip = ZipFile.builder().setFile(zipFile).get()) {
                    // The iteration order of zip.getEntries() is based on the hash of the zip entry. This isn't much use
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	{112, "EHOSTDOWN", "host is down"},
    	{113, "EHOSTUNREACH", "no route to host"},
    	{114, "EALREADY", "operation already in progress"},
    	{115, "EINPROGRESS", "operation now in progress"},
    	{116, "ESTALE", "stale file handle"},
    	{117, "EUCLEAN", "structure needs cleaning"},
    	{118, "ENOTNAM", "not a XENIX named type file"},
    	{119, "ENAVAIL", "no XENIX semaphores available"},
    	{120, "EISNAM", "is a named type file"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go

    	{112, "EHOSTDOWN", "host is down"},
    	{113, "EHOSTUNREACH", "no route to host"},
    	{114, "EALREADY", "operation already in progress"},
    	{115, "EINPROGRESS", "operation now in progress"},
    	{116, "ESTALE", "stale file handle"},
    	{117, "EUCLEAN", "structure needs cleaning"},
    	{118, "ENOTNAM", "not a XENIX named type file"},
    	{119, "ENAVAIL", "no XENIX semaphores available"},
    	{120, "EISNAM", "is a named type file"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go

    	{112, "EHOSTDOWN", "host is down"},
    	{113, "EHOSTUNREACH", "no route to host"},
    	{114, "EALREADY", "operation already in progress"},
    	{115, "EINPROGRESS", "operation now in progress"},
    	{116, "ESTALE", "stale file handle"},
    	{117, "EUCLEAN", "structure needs cleaning"},
    	{118, "ENOTNAM", "not a XENIX named type file"},
    	{119, "ENAVAIL", "no XENIX semaphores available"},
    	{120, "EISNAM", "is a named type file"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/CredentialsProviderFactory.java

                String value = getRequiredProperty("AuthHeaderValue");
                assertRequiredValuesPresent();
    
                HttpHeaderCredentials credentials = new DefaultHttpHeaderCredentials();
                credentials.setName(name);
                credentials.setValue(value);
                return credentials;
            }
        }
    
        private static void validateIdentity(@Nullable String identity) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  8. src/runtime/mgcpacer_test.go

    			length:        100,
    			checker: func(t *testing.T, c []gcCycleResult) {
    				n := len(c)
    				if (n >= 25 && n < 50) || n >= 75 {
    					// Make sure the pacer settles into a non-degenerate state in at least 25 GC cycles
    					// and then is able to settle again after a significant jump in allocation rate.
    					assertInEpsilon(t, "GC utilization", c[n-1].gcUtilization, c[n-2].gcUtilization, 0.005)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 13:53:21 UTC 2023
    - 39.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/file/copy/DefaultFileCopyDetails.java

        }
    
        @Override
        public void setRelativePath(RelativePath path) {
            this.relativePath = path;
        }
    
        @Override
        public void setName(String name) {
            relativePath = getRelativePath().replaceLastName(name);
        }
    
        @Override
        public void setPath(String path) {
            relativePath = RelativePath.parse(getRelativePath().isFile(), path);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/api/meta/interfaces.go

    	SetKind(obj runtime.Object, kind string) error
    
    	Namespace(obj runtime.Object) (string, error)
    	SetNamespace(obj runtime.Object, namespace string) error
    
    	Name(obj runtime.Object) (string, error)
    	SetName(obj runtime.Object, name string) error
    
    	GenerateName(obj runtime.Object) (string, error)
    	SetGenerateName(obj runtime.Object, name string) error
    
    	UID(obj runtime.Object) (types.UID, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 5.5K bytes
    - Viewed (0)
Back to top