Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 5,637 for need (0.07 sec)

  1. plugin/pkg/admission/network/defaultingressclass/admission.go

    		return errors.NewInternalError(fmt.Errorf("Expected Ingress resource, got: %v", attr.GetKind()))
    	}
    
    	// IngressClassName field has been set, no need to set a default value.
    	if ingress.Spec.IngressClassName != nil {
    		return nil
    	}
    
    	// Ingress class annotation has been set, no need to set a default value.
    	if _, ok := ingress.Annotations[networkingv1beta1.AnnotationIngressClass]; ok {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 11 01:48:45 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  2. maven-core/src/test/projects/project-builder/it0063/jdk/jre/placeholder.txt

    need it so that empty directory does not get deleted...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jul 19 21:45:50 UTC 2021
    - 53 bytes
    - Viewed (0)
  3. architecture/ambient/ztunnel.md

    ## Configuration protocol
    
    Ztunnel, of course, needs to be dynamically configured in order to make decisions on how it should handle traffic.
    For this purpose, we chose to use xDS transport protocol due to our expertise and existing infrastructure, and because the protocol is well suited to our needs.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaCompileSpec.java

         * These classes are deleted before a compilation and are not passed to Java compiler (their sources are passed to a compiler).
         * We only need them in {@link CompilationClassBackupService} so we know what files don't need a backup.
         */
        Set<String> getClassesToCompile();
    
        List<File> getModulePath();
    
        void setModulePath(List<File> modulePath);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 13:38:58 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/transforms/cost_model.h

    #include "tensorflow/compiler/mlir/lite/experimental/tac/common/targets.h"
    
    namespace mlir {
    namespace TFL {
    namespace tac {
    
    // TODO(renjieliu): We need to come up with a better strategy to do cost
    // estimatation. Maybe build a big lookup table for all the ops.
    
    // TODO(renjieliu): We need to consider what's the default value if we cannot
    // analyze the cost.
    
    // ================== Interface  ========================
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 19 00:13:50 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/operations/DefaultBuildOperationQueue.java

                            // holds without causing a deadlock. This in turn implies that this thread does not need to release the project locks it holds while
                            // blocking waiting for an operation to complete and does not need to deal with another thread stealing its project lock(s) while blocking.
                            //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 31 15:18:20 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. docs/contribute/concurrency.md

    So we have a dedicated thread for every socket that just reads frames and dispatches them.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
  8. docs/en/docs/advanced/events.md

    This can be very useful for setting up **resources** that you need to use for the whole app, and that are **shared** among requests, and/or that you need to **clean up** afterwards. For example, a database connection pool, or loading a shared machine learning model.
    
    ## Use Case
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. tests/integration/GKE.md

    make docker
    
    # Push images to docker registry
    make push
    ```
    
    On MacOS, you need to set the target operating system before building the images
    
    ```bash
    GOOS=linux make docker push
    ```
    
    ### Option 2: Use pre-built Istio images
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 20 23:19:43 UTC 2020
    - 4.1K bytes
    - Viewed (0)
  10. futures/failureaccess/src/com/google/common/util/concurrent/internal/InternalFutureFailureAccess.java

     *
     * <p>This class is used only for micro-optimization. Standard {@code Future} utilities benefit from
     * this optimization, so there is no need to specialize methods to return or accept this type
     * instead of {@code ListenableFuture}.
     *
     * <p>This class is GWT-compatible.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top