Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for cherries (0.18 sec)

  1. pkg/config/protocol/instance.go

    	UDP Instance = "UDP"
    	// Mongo declares that the port carries MongoDB traffic.
    	Mongo Instance = "Mongo"
    	// Redis declares that the port carries Redis traffic.
    	Redis Instance = "Redis"
    	// MySQL declares that the port carries MySQL traffic.
    	MySQL Instance = "MySQL"
    	// HBONE declares that the port carries HBONE traffic.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 01 02:46:15 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/internal/http2/FlowControlListener.kt

       * [WindowCounter] generally carries the client view of total and acked bytes.
       */
      fun receivingStreamWindowChanged(
        streamId: Int,
        windowCounter: WindowCounter,
        bufferSize: Long,
      )
    
      /**
       * Notification that the receiving connection flow control window has changed.
       * [WindowCounter] generally carries the client view of total and acked bytes.
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. src/runtime/proflabel.go

    	// most-recent labels write separately.)
    	//
    	// racereleasemerge is like a full read-modify-write on
    	// labelSync, rather than just a store-release, so it carries
    	// a dependency on the previous racereleasemerge, which
    	// ultimately carries forward to the acquire in profBuf.read.
    	if raceenabled {
    		racereleasemerge(unsafe.Pointer(&labelSync))
    	}
    	getg().labels = labels
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/UserResponse.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.protocol;
    
    /**
     * Carries the user's response to a {@link org.gradle.internal.logging.events.PromptOutputEvent}.
     */
    public class UserResponse extends InputMessage {
        private final String response;
    
        public UserResponse(String response) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1005 bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/ForwardInput.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.launcher.daemon.protocol;
    
    /**
     * Carries some text that should be made available via the daemon's System.in
     */
    public class ForwardInput extends InputMessage {
        private final byte[] bytes;
    
        public ForwardInput(byte[] bytes) {
            this.bytes = bytes;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 966 bytes
    - Viewed (0)
  6. docs/bucket/versioning/DESIGN.md

    This file is the source of truth for each `version` at rest. `xl.meta` is a msgpack file serialized from a
    well defined data structure. To understand `xl.meta` here are the few things to start with
    
    `xl.meta` carries first 8 bytes an XL header which describes the current format and the format version,
    allowing the unmarshaller's to automatically use the right data structures to parse the subsequent content in the stream.
    
    ### v1.0
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jul 17 15:43:14 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/feature/feature.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package feature
    
    // Features carries feature gate values used by various plugins.
    // This struct allows us to break the dependency of the plugins on
    // the internal k8s features pkg.
    type Features struct {
    	EnableDynamicResourceAllocation              bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. pkg/ctrlz/topics/collection.go

    			case 2:
    				c.handleItem(w, req, parts[0], parts[1])
    
    			default:
    				c.handleError(w, req, fmt.Sprintf("InvalidUrl %s", req.URL.Path))
    			}
    		})
    }
    
    // mainContext is passed to the template processor and carries information that is used by the main template.
    type mainContext struct {
    	Title       string
    	Collections []string
    	Error       string
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/MergeProviderIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    /**
     * Tests {@link org.gradle.api.internal.provider.MergeProvider}.
     */
    class MergeProviderIntegrationTest extends AbstractIntegrationSpec {
    
        def "carries task dependencies"() {
            buildFile << """
                tasks.register('myTask1', StringTask) {
                    string.set('Hello')
                }
                tasks.register('myTask2', StringTask) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/attributes/HasAttributes.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.attributes;
    
    /**
     * Represents something that carries attributes by utilizing an
     * {@link AttributeContainer}
     *
     * @since 3.3
     */
    public interface HasAttributes {
    
        /**
         * Returns the attributes
         */
        AttributeContainer getAttributes();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:53 UTC 2018
    - 894 bytes
    - Viewed (0)
Back to top