Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 263 for finishedAt (0.26 sec)

  1. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/DefaultBuildOperationRunner.java

                            }
                        }
    
                        private void assertNotFinished() {
                            if (finished) {
                                throw new IllegalStateException(String.format("Operation (%s) has already finished.", descriptor));
                            }
                        }
                    };
                }
            });
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:33:49 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbResource.java

         * @throws CIFSException
         * 
         */
        SmbRandomAccess openRandomAccess ( String mode, int sharing ) throws CIFSException;
    
    
        /**
         * Opens the file for random access
         * 
         * @param mode
         *            access mode (r|rw)
         * @return random access file, needs to be closed when finished
         * @throws CIFSException
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 26K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/hash/Crc32cHashFunction.java

        protected void processRemaining(ByteBuffer bb) {
          if (finished) {
            return;
          }
          crc0 = combine(0, crc0);
          crc0 = combine(crc0, crc1);
          crc0 = combine(crc0, crc2);
          crc0 = combine(crc0, crc3);
          while (bb.hasRemaining()) {
            crc0 = (crc0 >>> 8) ^ BYTE_TABLE[(bb.get() ^ crc0) & 0xFF];
          }
          finished = true;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 21.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DefaultDaemonConnectionTest.groovy

                waiting.countDown()
                result = daemonConnection.receive(20, TimeUnit.SECONDS)
            }
            waiting.await()
            Thread.sleep(500)
            daemonConnection.stop()
            finished()
    
            then:
            result == null
        }
    
        def "receive blocks until connection disconnected"() {
            def waiting = new CountDownLatch(1)
            def result = null
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/DaemonMessageSerializer.java

            }
        }
    
        private static class FinishedSerializer implements Serializer<Finished> {
            @Override
            public Finished read(Decoder decoder) {
                return new Finished();
            }
    
            @Override
            public void write(Encoder encoder, Finished value) {
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  6. guava/src/com/google/common/hash/Crc32cHashFunction.java

        protected void processRemaining(ByteBuffer bb) {
          if (finished) {
            return;
          }
          crc0 = combine(0, crc0);
          crc0 = combine(crc0, crc1);
          crc0 = combine(crc0, crc2);
          crc0 = combine(crc0, crc3);
          while (bb.hasRemaining()) {
            crc0 = (crc0 >>> 8) ^ BYTE_TABLE[(bb.get() ^ crc0) & 0xFF];
          }
          finished = true;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 21.3K bytes
    - Viewed (0)
  7. pkg/kubelet/util/pod_startup_latency_tracker_test.go

    		fakeClock.SetTime(frozenTime.Add(time.Second * 14))
    		tracker.RecordImageStartedPulling(podInitializing.UID)
    		// first image finished pulling at 18s
    		fakeClock.SetTime(frozenTime.Add(time.Second * 18))
    		tracker.RecordImageFinishedPulling(podInitializing.UID)
    		// second and third finished pulling at 20s
    		fakeClock.SetTime(frozenTime.Add(time.Second * 20))
    		tracker.RecordImageFinishedPulling(podInitializing.UID)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 06:09:49 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

            private final DataConfig dataConfig;
    
            private final IndexUpdateCallback indexUpdateCallback;
    
            private final DataStoreParams initParamMap;
    
            protected boolean finished = false;
    
            protected boolean running = false;
    
            private DataStore dataStore;
    
            protected DataCrawlingThread(final DataConfig dataConfig, final IndexUpdateCallback indexUpdateCallback,
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/batch/v1/types.go

    	// The number of successful finished jobs to retain. Value must be non-negative integer.
    	// Defaults to 3.
    	// +optional
    	SuccessfulJobsHistoryLimit *int32 `json:"successfulJobsHistoryLimit,omitempty" protobuf:"varint,6,opt,name=successfulJobsHistoryLimit"`
    
    	// The number of failed finished jobs to retain. Value must be non-negative integer.
    	// Defaults to 1.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  10. src/net/http/httptest/server.go

    // The caller should call Close when finished, to shut it down.
    func NewServer(handler http.Handler) *Server {
    	ts := NewUnstartedServer(handler)
    	ts.Start()
    	return ts
    }
    
    // NewUnstartedServer returns a new [Server] but doesn't start it.
    //
    // After changing its configuration, the caller should call Start or
    // StartTLS.
    //
    // The caller should call Close when finished, to shut it down.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:26:10 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top