Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 351 for nothings (0.31 sec)

  1. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/nio/ModificationTimeFileAccessTimeJournal.java

            }
        }
    
        @Override
        public long getLastAccessTime(File file) {
            return file.lastModified();
        }
    
        @Override
        public void deleteLastAccessTime(File file) {
            // nothing to do
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/concurrent/CommonPoolUtil.java

    import org.codelibs.core.log.Logger;
    
    public class CommonPoolUtil {
        private static final Logger logger = Logger.getLogger(CommonPoolUtil.class);
    
        private CommonPoolUtil() {
            // nothing
        }
    
        public static void execute(final Runnable task) {
            ForkJoinPool.commonPool().execute(() -> {
                final Thread currentThread = Thread.currentThread();
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/OutgoingConnector.java

    public interface OutgoingConnector {
        /**
         * Creates a connection to the given address. Blocks until the connection with the peer has been established.
         *
         * @throws ConnectException when there is nothing listening on the remote address.
         */
        ConnectCompletion connect(Address destinationAddress) throws ConnectException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/files/src/main/java/org/gradle/internal/file/RandomAccessFileOutputStream.java

    /**
     * Writes to a {@link RandomAccessFile}. Each operation writes to and advances the current position of the file.
     *
     * <p>Closing this stream does not close the underlying file. Flushing this stream does nothing.
     */
    // TODO Replace with Channels.newOutputStream(SeekableByteChannel)
    public class RandomAccessFileOutputStream extends OutputStream {
        private final RandomAccessFile file;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. testing/soak/src/integTest/groovy/org/gradle/vfs/FileSystemWatchingSoakTest.groovy

            int numberOfRuns = 50
    
            int numberOfOverflows = 0
    
            when:
            succeeds("assemble")
            // Assemble twice, so everything is up-to-date and nothing is invalidated
            succeeds("assemble")
            def daemon = daemons.daemon
            def retainedFilesInLastBuild = vfsLogs.retainedFilesInCurrentBuild
            then:
            daemon.assertIdle()
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/composableFunctionMultiModules2.ir.txt

          VALUE_PARAMETER name:str index:0 type:kotlin.String
          BLOCK_BODY
        FUN name:test visibility:public modality:FINAL <> () returnType:kotlin.Int
          BLOCK_BODY
            RETURN type=kotlin.Nothing from='public final fun test (): kotlin.Int declared in <root>'
              CALL 'public final fun setContent (content: @[MyComposable] kotlin.Function0<kotlin.Unit>): kotlin.Int declared in p3' type=kotlin.Int origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Feb 26 21:57:23 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. src/os/stat_aix.go

    		fs.mode |= ModeDevice | ModeCharDevice
    	case syscall.S_IFDIR:
    		fs.mode |= ModeDir
    	case syscall.S_IFIFO:
    		fs.mode |= ModeNamedPipe
    	case syscall.S_IFLNK:
    		fs.mode |= ModeSymlink
    	case syscall.S_IFREG:
    		// nothing to do
    	case syscall.S_IFSOCK:
    		fs.mode |= ModeSocket
    	}
    	if fs.sys.Mode&syscall.S_ISGID != 0 {
    		fs.mode |= ModeSetgid
    	}
    	if fs.sys.Mode&syscall.S_ISUID != 0 {
    		fs.mode |= ModeSetuid
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:44:48 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/configmap_cafile_content.go

    	}
    	caBundle := configMap.Data[c.configmapKey]
    	if len(caBundle) == 0 {
    		return fmt.Errorf("missing content for CA bundle %q", c.Name())
    	}
    
    	// check to see if we have a change. If the values are the same, do nothing.
    	if !c.hasCAChanged([]byte(caBundle)) {
    		return nil
    	}
    
    	caBundleAndVerifier, err := newCABundleAndVerifier(c.Name(), []byte(caBundle))
    	if err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ResolutionHost.java

        }
    
        default DisplayName displayName(String type) {
            return Describables.of(displayName(), type);
        }
    
        /**
         * Rethrows the provided failures. Does nothing if the list of failures is empty.
         */
        default void rethrowFailure(String type, Collection<Throwable> failures) {
            mapFailure(type, failures).ifPresent(e -> {
                throw e;
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/sysvshm_unix.go

    	var info SysvShmDesc
    
    	_, err := SysvShmCtl(id, IPC_STAT, &info)
    	if err != nil {
    		// release the shared memory if we can't find the size
    
    		// ignoring error from shmdt as there's nothing sensible to return here
    		shmdt(addr)
    		return nil, err
    	}
    
    	// Use unsafe to convert addr into a []byte.
    	b := unsafe.Slice((*byte)(unsafe.Pointer(addr)), int(info.Segsz))
    	return b, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top