Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 4,047 for based (0.04 sec)

  1. android/guava/src/com/google/common/eventbus/SubscriberExceptionContext.java

      private final Object subscriber;
      private final Method subscriberMethod;
    
      /**
       * @param eventBus The {@link EventBus} that handled the event and the subscriber. Useful for
       *     broadcasting a new event based on the error.
       * @param event The event object that caused the subscriber to throw.
       * @param subscriber The source subscriber context.
       * @param subscriberMethod the subscribed method.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  2. pkg/volume/util/fsquota/quota.go

    	// and return it.
    	AssignQuota(m mount.Interface, path string, poduid types.UID, bytes *resource.Quantity) error
    
    	// Get the quota-based storage consumption for the path
    	GetConsumption(path string) (*resource.Quantity, error)
    
    	// Get the quota-based inode consumption for the path
    	GetInodes(path string) (*resource.Quantity, error)
    
    	// Remove the quota from a path
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 28 06:09:31 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. docs/en/docs/project-generation.md

    - 🔑 JWT token authentication.
    - 📫 Email based password recovery.
    - ✅ Tests with [Pytest](https://pytest.org).
    - 📞 [Traefik](https://traefik.io) as a reverse proxy / load balancer.
    - 🚢 Deployment instructions using Docker Compose, including how to set up a frontend Traefik proxy to handle automatic HTTPS certificates.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Mar 21 21:12:21 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/core-plugins/plugin_reference.adoc

    <<xctest_plugin.adoc#xctest_plugin,XCTest>>::
    Provides support for building and running XCTest-based tests on Linux and macOS.
    
    == Packaging and distribution
    
    <<application_plugin.adoc#application_plugin,Application>>::
    Provides support for building JVM-based, runnable applications.
    
    <<war_plugin.adoc#war_plugin,WAR>>::
    Provides support for building and packaging WAR-based Java web applications.
    
    <<ear_plugin.adoc#ear_plugin,EAR>>::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. pkg/controlplane/reconcilers/none.go

    limitations under the License.
    */
    
    // Package reconcilers a noop based reconciler
    package reconcilers
    
    import (
    	"net"
    
    	corev1 "k8s.io/api/core/v1"
    )
    
    // NoneEndpointReconciler allows for the endpoint reconciler to be disabled
    type noneEndpointReconciler struct{}
    
    // NewNoneEndpointReconciler creates a new EndpointReconciler that reconciles based on a
    // nothing. It is a no-op.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 11:45:48 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_get_pseudo_prefix.txt

    env GO111MODULE=on
    env GOPROXY=direct
    env GOSUMDB=off
    
    # Testing that a pseudo-version is based on the semantically-latest
    # prefixed tag in any commit that is a parent of the commit supplied
    # to 'go get', when using a repo with go.mod in a sub directory.
    
    [short] skip
    [!git] skip
    
    # For this test repository go.mod resides in sub/ (only):
    #  master is not tagged
    #  tag v0.2.0 is most recent tag before master
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. LICENSE

    your rights to work written entirely by you; rather, the intent is to
    exercise the right to control the distribution of derivative or
    collective works based on the Library.
    
    In addition, mere aggregation of another work not based on the Library
    with the Library (or with a work based on the Library) on a volume of
    a storage or distribution medium does not bring the other work under
    the scope of this License.
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Jan 18 20:25:38 UTC 2016
    - 25.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/test/inst_test.go

    		t.Fatalf("Failed: %v:\nOutput: %s\n", err, output)
    	}
    
    	// Test that there is exactly one shape-based instantiation of Sort in
    	// the executable.
    	cmd = testenv.Command(t, gotool, "tool", "nm", dest)
    	if output, err = cmd.CombinedOutput(); err != nil {
    		t.Fatalf("Failed: %v:\nOut: %s\n", err, output)
    	}
    	// Look for shape-based instantiation of Sort, but ignore any extra wrapper
    	// ending in "-tramp" (which are created on riscv).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 18:07:35 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/CharSequenceExtensions.kt

    }
    
    
    /**
     * Computes the 1-based line and column numbers from the given [range].
     */
    internal
    fun CharSequence.lineAndColumnFromRange(range: IntRange): Pair<Int, Int> {
        require(range.endInclusive <= lastIndex)
        return lineAndColumnFor(range.start)
    }
    
    
    /**
     * Computes the 1-based line and column numbers for the given [index].
     */
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/attributes/AttributeMatchingStrategy.java

        CompatibilityRuleChain<T> getCompatibilityRules();
    
        DisambiguationRuleChain<T> getDisambiguationRules();
    
        /**
         * <p>A short-hand way to define both a compatibility rule and
         * a disambiguation rule based on an order defined by the provided
         * {@link Comparator}.</p>
         *
         * <p>All provider values which are lower than or equal the consumer value are
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:53 UTC 2018
    - 2.2K bytes
    - Viewed (0)
Back to top