Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 8,903 for usedBy (0.31 sec)

  1. docs/distributed/DECOMMISSION.md

    │ ID  │ Pools                           │ Capacity                         │ Status │
    │ 1st │ http://minio{1...2}/data{1...4} │ 439 GiB (used) / 561 GiB (total) │ Active │
    │ 2nd │ http://minio{3...4}/data{1...4} │ 329 GiB (used) / 421 GiB (total) │ Active │
    └─────┴─────────────────────────────────┴──────────────────────────────────┴────────┘
    ```
    
    ### Decommissioning status
    
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 11 14:59:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaPluginExtension.java

     * the {@code JvmPluginExtension} extension.  It is used to configure many of the project's
     * JVM-related settings and behavior.
     *
     * @since 4.10
     */
    public interface JavaPluginExtension {
    
        /**
         * Returns the source compatibility used for compiling Java sources.
         */
        JavaVersion getSourceCompatibility();
    
        /**
         * Sets the source compatibility used for compiling Java sources.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.4K bytes
    - Viewed (1)
  3. test/fixedbugs/bug381.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 2276.
    
    // Check that the error messages says 
    //	bug381.go:29: unsafe.Alignof(0) not used
    // and not
    //	bug381.go:29: 4 not used
    
    // Issue 2768: previously got
    //    bug381.go:30: cannot use 3 (type time.Weekday) as type int in function argument
    // want
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 747 bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/groovy/scripts/StatementLabelsIntegrationTest.groovy

            failure.assertThatCause(CoreMatchers.containsString("build file '${buildFile}': 2: Statement labels may not be used in build scripts."))
            failure.assertThatCause(CoreMatchers.containsString("build file '${buildFile}': 4: Statement labels may not be used in build scripts."))
        }
    
        def "nested use of statement label in build script is reported"() {
            buildFile << """
    def foo() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 21 07:18:30 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  5. build-logic-commons/basics/build.gradle.kts

        api(platform(project(":build-platform")))
    
        implementation("com.google.guava:guava") {
            because("Used by class analysis")
        }
        implementation("org.ow2.asm:asm") {
            because("Used by class analysis")
        }
        implementation("org.ow2.asm:asm-commons") {
            because("Used by class analysis")
        }
    
        implementation(kotlin("compiler-embeddable") as String) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 05:01:36 UTC 2024
    - 1022 bytes
    - Viewed (0)
  6. src/internal/poll/fd.go

    // This supports I/O operations that block only a goroutine, not a thread.
    // This is used by the net and os packages.
    // It uses a poller built into the runtime, with support from the
    // runtime scheduler.
    package poll
    
    import (
    	"errors"
    )
    
    // errNetClosing is the type of the variable ErrNetClosing.
    // This is used to implement the net.Error interface.
    type errNetClosing struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 23:16:28 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/ntlmssp/NtlmFlags.java

     */
    
    package jcifs.ntlmssp;
    
    
    /**
     * Flags used during negotiation of NTLMSSP authentication.
     */
    public interface NtlmFlags {
    
        /**
         * Indicates whether Unicode strings are supported or used.
         */
        public static final int NTLMSSP_NEGOTIATE_UNICODE = 0x00000001;
    
        /**
         * Indicates whether OEM strings are supported or used.
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/core/v1/resourcequotastatus.go

    	return b
    }
    
    // WithUsed sets the Used field in the declarative configuration to the given value
    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the Used field is set to the value of the last call.
    func (b *ResourceQuotaStatusApplyConfiguration) WithUsed(value v1.ResourceList) *ResourceQuotaStatusApplyConfiguration {
    	b.Used = &value
    	return b
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2K bytes
    - Viewed (0)
  9. pkg/test/framework/components/echo/common/deployment/namespace.go

    	Namespace namespace.Instance
    
    	// Standard echo app to be used by tests
    	A echo.Instances
    	// Standard echo app to be used by tests
    	B echo.Instances
    	// Standard echo app to be used by tests
    	C echo.Instances
    	// Dual-stack echo app to be used by tests if running in dual-stack mode
    	D echo.Instances
    	// IPv6 only echo app to be used by tests if running in dual-stack mode
    	E echo.Instances
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/tasks/SourceSet.java

         *
         * @return The name. Never returns null.
         */
        String getName();
    
        /**
         * Returns the classpath used to compile this source.
         *
         * @return The classpath. Never returns null.
         */
        FileCollection getCompileClasspath();
    
        /**
         * Sets the classpath used to compile this source.
         *
         * @param classpath The classpath. Should not be null.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 12.8K bytes
    - Viewed (0)
Back to top