Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. maven-builder-support/src/main/java/org/apache/maven/building/ProblemCollector.java

         * @param severity The severity of the problem, must not be {@code null}.
         * @param message The detail message of the problem, may be {@code null}.
         * @param line The one-based index of the line containing the problem or {@code -1} if unknown.
         * @param column The one-based index of the column containing the problem or {@code -1} if unknown.
         * @param cause The cause of the problem, may be {@code null}.
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. releasenotes/notes/25818.yaml

    area: security
    
    # releaseNotes is a markdown listing of any user facing changes. This will appear in the
    # release notes.
    releaseNotes:
      - |
        **Fixed** an issue preventing the use of source principal based authorization at Istio Gateway when the Server's TLS mode is ISTIO_MUTUAL.
    
    # securityNotes is a markdown listing of any changes related to the security of
    # Istio.
    securityNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/escape/CharEscaperBuilder.java

    /**
     * Simple helper class to build a "sparse" array of objects based on the indexes that were added to
     * it. The array will be from 0 to the maximum index given. All non-set indexes will contain null
     * (so it's not really a sparse array, just a pseudo sparse array). The builder can also return a
     * CharEscaper based on the generated array.
     *
     * @author Sven Mawson
     * @since 15.0
     */
    @GwtCompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 18 20:55:09 UTC 2022
    - 4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top