Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 190 for admitted (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. test/fixedbugs/issue26340.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // gccgo did not permit omitting the type of a composite literal
    // element when one of the middle omitted types was a pointer type.
    
    package p
    
    type S []T
    type T struct { x int }
    
    var _ = map[string]*S{
    	"a": {
    		{ 1 },
    	},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 05:29:12 UTC 2018
    - 426 bytes
    - Viewed (0)
  9. 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)
  10. src/compress/flate/dict_decoder.go

    //     Any valid stream must start with a literal insertion if no preset dictionary
    //     is used.
    //
    //   - Backward copies: Runs of one or more symbols are copied from previously
    //     emitted data. Backward copies come as the tuple (dist, length) where dist
    //     determines how far back in the stream to copy from and length determines how
    //     many bytes to copy. Note that it is valid for the length to be greater than
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 6K bytes
    - Viewed (0)
Back to top