Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,043 for Always2 (0.27 sec)

  1. pkg/kube/inject/testdata/inject/hello-always.yaml.injected

            - name: ISTIO_META_MESH_ID
              value: cluster.local
            - name: TRUST_DOMAIN
              value: cluster.local
            image: gcr.io/istio-testing/proxyv2:latest
            imagePullPolicy: Always
            name: istio-proxy
            ports:
            - containerPort: 15090
              name: http-envoy-prom
              protocol: TCP
            readinessProbe:
              failureThreshold: 4
              httpGet:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation_test.go

    			core.PullIfNotPresent,
    		},
    		"Always1": {
    			core.Container{Name: "123", Image: "image:latest", ImagePullPolicy: "Always"},
    			core.PullAlways,
    		},
    		"Always2": {
    			core.Container{Name: "1234", Image: "image", ImagePullPolicy: "Always"},
    			core.PullAlways,
    		},
    		"Never1": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 857.7K bytes
    - Viewed (0)
  3. test/chan/select3.go

    	// sending to a closed channel panics.
    	testPanic(always, func() {
    		closedch <- 7
    	})
    
    	// receiving from a non-ready channel always blocks
    	testBlock(always, func() {
    		ch := make(chan int)
    		<-ch
    	})
    
    	// empty selects always block
    	testBlock(always, func() {
    		select {}
    	})
    
    	// selects with only nil channels always block
    	testBlock(always, func() {
    		select {
    		case <-nilch:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jul 08 02:10:12 UTC 2017
    - 4.1K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/s390x/condition_code.go

    	GreaterOrUnordered CCMask = Greater | Unordered // not less and not equal
    
    	// 3-bit masks
    	NotEqual     CCMask = Always ^ Equal
    	NotLess      CCMask = Always ^ Less
    	NotGreater   CCMask = Always ^ Greater
    	NotUnordered CCMask = Always ^ Unordered
    
    	// 4-bit mask
    	Always CCMask = Equal | Less | Greater | Unordered
    
    	// useful aliases
    	Carry    CCMask = GreaterOrUnordered
    	NoCarry  CCMask = LessOrEqual
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 08 01:46:31 UTC 2020
    - 3.2K bytes
    - Viewed (0)
  5. pkg/volume/util/hostutil/hostutil_unsupported.go

    // DeviceOpened always returns an error on unsupported platforms
    func (hu *HostUtil) DeviceOpened(pathname string) (bool, error) {
    	return false, errUnsupported
    }
    
    // PathIsDevice always returns an error on unsupported platforms
    func (hu *HostUtil) PathIsDevice(pathname string) (bool, error) {
    	return true, errUnsupported
    }
    
    // GetDeviceNameFromMount always returns an error on unsupported platforms
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 10:17:38 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/inline/inlheur/function_properties.go

    	ResultNoInfo ResultPropBits = 0
    	// This result always contains allocated memory.
    	ResultIsAllocatedMem ResultPropBits = 1 << iota
    	// This result is always a single concrete type that is
    	// implicitly converted to interface.
    	ResultIsConcreteTypeConvertedToInterface
    	// Result is always the same non-composite compile time constant.
    	ResultAlwaysSameConstant
    	// Result is always the same function or closure.
    	ResultAlwaysSameFunc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 18:52:53 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/UnmodifiableListIterator.java

      /**
       * Guaranteed to throw an exception and leave the underlying data unmodified.
       *
       * @throws UnsupportedOperationException always
       * @deprecated Unsupported operation.
       */
      @Deprecated
      @Override
      @DoNotCall("Always throws UnsupportedOperationException")
      public final void add(@ParametricNullness E e) {
        throw new UnsupportedOperationException();
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jul 09 17:31:04 UTC 2021
    - 2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/wait/poll.go

    }
    
    // Poll tries a condition func until it returns true, an error, or the timeout
    // is reached.
    //
    // Poll always waits the interval before the run of 'condition'.
    // 'condition' will always be invoked at least once.
    //
    // Some intervals may be missed if the condition takes too long or the time
    // window is too short.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 26 06:13:35 UTC 2023
    - 14K bytes
    - Viewed (0)
  9. guava/src/com/google/common/reflect/ImmutableTypeToInstanceMap.java

      }
    
      /**
       * Guaranteed to throw an exception and leave the map unmodified.
       *
       * @deprecated unsupported operation
       * @throws UnsupportedOperationException always
       */
      @CanIgnoreReturnValue
      @Deprecated
      @Override
      @DoNotCall("Always throws UnsupportedOperationException")
      @CheckForNull
      public <T extends B> T putInstance(TypeToken<T> type, T value) {
        throw new UnsupportedOperationException();
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 01 20:46:24 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_init_invalid_major.txt

    ! go mod init gopkg.in/pkg
    stderr '(?s)^go: invalid module path "gopkg.in/pkg": module paths beginning with gopkg.in/ must always have a major version suffix in the form of .vN(.*)go mod init gopkg.in/pkg.v1$'
    
    ! go mod init gopkg.in/user/pkg
    stderr '(?s)^go: invalid module path "gopkg.in/user/pkg": module paths beginning with gopkg.in/ must always have a major version suffix in the form of .vN(.*)go mod init gopkg.in/user/pkg.v1$'
    
    ! go mod init gopkg.in/user/pkg/v0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 17 21:34:32 UTC 2021
    - 5.5K bytes
    - Viewed (0)
Back to top