Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 587 for admitted (0.13 sec)

  1. pkg/config/analysis/analyzers/testdata/envoy-filter-patch-operation.yaml

                   },
                  "authorize call",
                  5000)
                end
      # The second patch adds the cluster that is referenced by the Lua code
      # cds match is omitted as a new cluster is being added
      - applyTo: CLUSTER
        match:
          context: SIDECAR_OUTBOUND
        patch:
          operation: REPLACE
          value: # cluster specification
            name: "lua_cluster"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 5K bytes
    - Viewed (0)
  2. samples/tcp-echo/tcp-echo.yaml

    apiVersion: v1
    kind: Service
    metadata:
      name: tcp-echo
      labels:
        app: tcp-echo
        service: tcp-echo
    spec:
      ports:
      - name: tcp
        port: 9000
      - name: tcp-other
        port: 9001
      # Port 9002 is omitted intentionally for testing the pass through filter chain.
      selector:
        app: tcp-echo
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: tcp-echo
    spec:
      replicas: 1
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. pkg/kubelet/lifecycle/admission_failure_handler_stub.go

    	return &AdmissionFailureHandlerStub{}
    }
    
    // HandleAdmissionFailure simply passes admission rejection on, with no special handling.
    func (n *AdmissionFailureHandlerStub) HandleAdmissionFailure(admitPod *v1.Pod, failureReasons []PredicateFailureReason) ([]PredicateFailureReason, error) {
    	return failureReasons, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jun 21 01:44:54 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/domain-model/settings.gradle

    // == Define locations for build logic ==
    pluginManagement {
        repositories {
            gradlePluginPortal() // if pluginManagement.repositories looks like this, it can be omitted as this is the default
        }
        includeBuild('../build-logic')
    }
    
    // == Define locations for components ==
    dependencyResolutionManagement {
        repositories {
            mavenCentral()
        }
    }
    includeBuild('../platforms')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 607 bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractConsoleDeprecationMessageGroupedTaskFunctionalTest.groovy

    abstract class AbstractConsoleDeprecationMessageGroupedTaskFunctionalTest extends AbstractConsoleGroupedTaskFunctionalTest {
    
        private static final String JAVA_SRC_DIR_PATH = 'src/main/java'
    
        def "compiler warnings emitted from compilation task are grouped"() {
            given:
            def javaSourceFile = file("$JAVA_SRC_DIR_PATH/MyClass.java")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. pkg/kubelet/eviction/memory_threshold_notifier_test.go

    				}
    			}
    			for _, omitted := range tc.omittedSubstrings {
    				if strings.Contains(desc, omitted) {
    					t.Errorf("expected description for notifier with threshold %+v NOT to contain %s, but it did", tc.evictionThreshold, omitted)
    				}
    			}
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationProgressNotification.java

        /**
         * The operation ID.
         *
         * Must be logically equal to a {@link BuildOperationStartedNotification#getNotificationOperationId()} value
         * of a previously emitted started notification.
         */
        Object getNotificationOperationId();
    
        /**
         * The time that the event occurred.
         *
         * @since 4.4
         */
        long getNotificationOperationProgressTimestamp();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. samples/tcp-echo/tcp-echo-dual-stack.yaml

        service: tcp-echo
    spec:
      ipFamilyPolicy: RequireDualStack
      ipFamilies:
      - IPv6
      - IPv4
      ports:
      - name: tcp
        port: 9000
      - name: tcp-other
        port: 9001
      # Port 9002 is omitted intentionally for testing the pass through filter chain.
      selector:
        app: tcp-echo
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: tcp-echo
    spec:
      replicas: 1
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. samples/tcp-echo/tcp-echo-ipv6.yaml

        app: tcp-echo
        service: tcp-echo
    spec:
      ipFamilyPolicy: SingleStack
      ipFamilies:
      - IPv6
      ports:
      - name: tcp
        port: 9000
      - name: tcp-other
        port: 9001
      # Port 9002 is omitted intentionally for testing the pass through filter chain.
      selector:
        app: tcp-echo
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: tcp-echo
    spec:
      replicas: 1
      selector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 16 22:03:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/utils/topological_sort.h

    namespace mlir {
    namespace TF {
    
    // A function that determines which op to emit next in the case of ties.
    // The predecessor (which can be null) is the last op we emitted,
    // and op is the candidate we're considering. A larger returned integer
    // means the op has a higher chance of being emitted first.
    typedef int (*PriorityFunction)(Operation *predecessor, Operation *op);
    
    // A function that returns extra dependencies for each op. These might
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 08 17:01:11 UTC 2022
    - 3.2K bytes
    - Viewed (0)
Back to top