Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for unsat (0.21 sec)

  1. pkg/printers/internalversion/printers_test.go

    				},
    				Status: api.PersistentVolumeStatus{
    					Phase: api.VolumeBound,
    				},
    			},
    			expected: []metav1.TableRow{{Cells: []interface{}{"test1", "4Gi", "ROX", "", "Bound", "default/test", "", "<unset>", "", "<unknown>", "<unset>"}}},
    		},
    		{
    			// Test failed
    			pv: api.PersistentVolume{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "test2",
    				},
    				Spec: api.PersistentVolumeSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers.go

    	phase := obj.Status.Phase
    	if obj.ObjectMeta.DeletionTimestamp != nil {
    		phase = "Terminating"
    	}
    	volumeMode := "<unset>"
    	if obj.Spec.VolumeMode != nil {
    		volumeMode = string(*obj.Spec.VolumeMode)
    	}
    
    	volumeAttributeClass := "<unset>"
    	if obj.Spec.VolumeAttributesClassName != nil {
    		volumeAttributeClass = *obj.Spec.VolumeAttributesClassName
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/LocalCache.java

      /** Singleton placeholder that indicates a value is being loaded. */
      @SuppressWarnings("unchecked") // impl never uses a parameter or returns any non-null value
      static <K, V> ValueReference<K, V> unset() {
        return (ValueReference<K, V>) UNSET;
      }
    
      private enum NullEntry implements ReferenceEntry<Object, Object> {
        INSTANCE;
    
        @CheckForNull
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/LocalCache.java

      /** Singleton placeholder that indicates a value is being loaded. */
      @SuppressWarnings("unchecked") // impl never uses a parameter or returns any non-null value
      static <K, V> ValueReference<K, V> unset() {
        return (ValueReference<K, V>) UNSET;
      }
    
      private enum NullEntry implements ReferenceEntry<Object, Object> {
        INSTANCE;
    
        @CheckForNull
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    					if sHost != "" && sHost != "127.0.0.1" && sHost != "0.0.0.0" && sHost != "::1" && sHost != "::" {
    						errMsg := "sidecar: defaultEndpoint must be of form 127.0.0.1:<port>,0.0.0.0:<port>,[::1]:port,[::]:port,unix://filepath or unset"
    						errs = AppendValidation(errs, fmt.Errorf(errMsg))
    					}
    					port, err := strconv.Atoi(sPort)
    					if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. pkg/apis/apps/validation/validation_test.go

    		from: apps.DeploymentStatus{
    			CollisionCount: &collisionCount,
    		},
    		to: apps.DeploymentStatus{
    			CollisionCount: &collisionCount,
    		},
    		expectedErr: false,
    	}, {
    		name: "unset: invalid update",
    		from: apps.DeploymentStatus{
    			CollisionCount: &collisionCount,
    		},
    		to: apps.DeploymentStatus{
    			CollisionCount: nil,
    		},
    		expectedErr: true,
    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/cluster_test.go

    	cases := []struct {
    		name      string
    		rule      ConfigType
    		keepalive *core.TcpKeepalive
    	}{
    		{
    			// Do not set tcp_keepalive anywhere
    			"unset",
    			None,
    			nil,
    		},
    		{
    			// Set mesh wide default for tcp_keepalive.
    			"mesh",
    			Mesh,
    			&core.TcpKeepalive{KeepaliveTime: &wrappers.UInt32Value{Value: uint32(MeshWideTCPKeepaliveSeconds)}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    }
    
    // Sets the `index` bit of `val`.
    template <class T>
    constexpr void Set(T &val, unsigned index) {
      val |= (1 << index);
    }
    
    // Unset the `index` bit of `val`.
    template <class T>
    constexpr void Unset(T &val, unsigned index) {
      val &= ~(1 << index);
    }
    
    // Copy the `src_index` bit of `src` to `dst_index` bit of `dst`.
    template <class T>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/s390x/asmz.go

    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-SP.
    				a.Reg = obj.REG_NONE
    			}
    			c.instoffset = int64(c.autosize) + a.Offset
    			if c.instoffset >= -BIG && c.instoffset < BIG {
    				return C_SAUTO
    			}
    			return C_LAUTO
    
    		case obj.NAME_PARAM:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/asm7.go

    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    				// a.Offset is still relative to pseudo-SP.
    				a.Reg = obj.REG_NONE
    			}
    			// The frame top 8 or 16 bytes are for FP
    			c.instoffset = int64(c.autosize) + a.Offset - int64(c.extrasize)
    			return autoclass(c.instoffset)
    
    		case obj.NAME_PARAM:
    			if a.Reg == REGSP {
    				// unset base register for better printing, since
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top