Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,595 for stops (0.06 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/-UtilCommon.kt

      val result = copyOf(size + 1)
      result[result.lastIndex] = value
      return result as Array<String>
    }
    
    /** Increments [startIndex] until this string is not ASCII whitespace. Stops at [endIndex]. */
    internal fun String.indexOfFirstNonAsciiWhitespace(
      startIndex: Int = 0,
      endIndex: Int = length,
    ): Int {
      for (i in startIndex until endIndex) {
        when (this[i]) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon May 13 13:42:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. pkg/slices/slices.go

    // Equal reports whether two slices are equal: the same length and all
    // elements equal. If the lengths are different, Equal returns false.
    // Otherwise, the elements are compared in increasing index order, and the
    // comparison stops at the first unequal pair.
    // Floating point NaNs are not considered equal.
    func Equal[E comparable](s1, s2 []E) bool {
    	return slices.Equal(s1, s2)
    }
    
    // EqualUnordered reports whether two slices are equal, ignoring order
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/testing/v1beta1/kms_plugin_mock.go

    	}
    	klog.InfoS("Starting KMS Plugin", "socketPath", s.socketPath)
    
    	go s.grpcServer.Serve(s.listener)
    	return nil
    }
    
    // CleanUp stops gRPC server and the underlying listener.
    func (s *Base64Plugin) CleanUp() {
    	s.grpcServer.Stop()
    	_ = s.listener.Close()
    	_ = os.Remove(s.socketPath)
    }
    
    // EnterFailedState places the plugin into failed state.
    func (s *Base64Plugin) EnterFailedState() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 29 05:36:41 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. pkg/kubelet/pleg/evented.go

    	eventedPlegMaxStreamRetries int
    	// Indicates relisting related parameters
    	relistDuration *RelistDuration
    	// Stop the Evented PLEG by closing the channel.
    	stopCh chan struct{}
    	// Stops the periodic update of the cache global timestamp.
    	stopCacheUpdateCh chan struct{}
    	// Locks the start/stop operation of the Evented PLEG.
    	runningMu sync.Mutex
    }
    
    // NewEventedPLEG instantiates a new EventedPLEG object and return it.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. pkg/kube/portforwarder.go

    	// the port-forward connection may be lost at anytime. The ErrChan can be read to determine if/when the port-forwarding terminates.
    	// This can return nil if the port forwarding stops gracefully.
    	ErrChan() <-chan error
    
    	// WaitForStop blocks until connection closed (e.g. control-C interrupt)
    	WaitForStop()
    }
    
    var _ PortForwarder = &forwarder{}
    
    type forwarder struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 02:12:37 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/integTest/groovy/org/gradle/internal/enterprise/DevelocityPluginConfigurationCachingIntegrationTest.groovy

            then:
            plugin.appliedOnce(output)
            plugin.assertBuildScanRequest(output, REQUESTED)
    
            when:
            succeeds "t", "--configuration-cache", "--scan"
    
            // If this stops working and the auto apply does happen,
            // the above will fail as the check in point is only expecting one plugin
            // and two will check in.
    
            then:
            plugin.notApplied(output)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 10:49:16 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/pluggable_profiler/pluggable_profiler.h

    typedef struct TP_ProfilerFns {
      size_t struct_size;
    
      void* ext;  // reserved for future use.
      // Starts profiling.
      void (*start)(const TP_Profiler* profiler, TF_Status* status);
      // Stops profiling.
      void (*stop)(const TP_Profiler* profiler, TF_Status* status);
    
      // Saves collected profile data into XSpace and serializes it to the buffer.
      // - If `buffer` is null, returns the required buffer size in `size_in_bytes`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 14 20:04:34 UTC 2021
    - 7.4K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/test/groovy/org/gradle/internal/watch/registry/impl/AbstractFileWatcherUpdaterTest.groovy

            then:
            def exception = thrown(IllegalStateException)
            exception.message == "Unable to watch directory '${watchableHierarchy.absolutePath}' since it is within Gradle's caches"
        }
    
        def "stops watching hierarchies when maximum number of hierarchies to watch has been reached"() {
            int maxHierarchiesToWatch = 4
            def oldestRegisteredWatchableHierarchy = file("oldestWatchable").createDir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  9. pkg/kubelet/server/stats/volume_stat_calculator.go

    			s.calcAndStoreStats()
    		}, s.jitterPeriod, 1.0, true, s.stopChannel)
    	})
    	return s
    }
    
    // StopOnce stops background pod volume calculation.  Will not stop a currently executing calculations until
    // they complete their current iteration.
    func (s *volumeStatCalculator) StopOnce() *volumeStatCalculator {
    	s.stopO.Do(func() {
    		close(s.stopChannel)
    	})
    	return s
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 29 00:55:10 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  10. src/context/context.go

    // one does not replace another.
    //
    // Calling the returned stop function stops the association of ctx with f.
    // It returns true if the call stopped f from being run.
    // If stop returns false,
    // either the context is done and f has been started in its own goroutine;
    // or f was already stopped.
    // The stop function does not wait for f to complete before returning.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 23.7K bytes
    - Viewed (0)
Back to top