Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Forever (0.24 sec)

  1. doc/go_spec.html

    higher-dimensional objects.
    With arrays of arrays, the inner arrays are, by construction, always the same length;
    however with slices of slices (or arrays of slices), the inner lengths may vary dynamically.
    Moreover, the inner slices must be initialized individually.
    </p>
    
    <h3 id="Struct_types">Struct types</h3>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (1)
  2. prow/config/calico.yaml

                - name: CNI_MTU
                  valueFrom:
                    configMapKeyRef:
                      name: calico-config
                      key: veth_mtu
                # Prevents the container from sleeping forever.
                - name: SLEEP
                  value: "false"
              volumeMounts:
                - mountPath: /host/opt/cni/bin
                  name: cni-bin-dir
                - mountPath: /host/etc/cni/net.d
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.25.md

    - PersistentVolumeClaim objects are no longer left with storage class set to `nil` forever, but will be updated retroactively once any StorageClass is set or created as default. ([#111467](https://github.com/kubernetes/kubernetes/pull/111467), [@RomanBednar](https://github.com/RomanBednar))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 09:23:20 UTC 2024
    - 419.1K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// TolerationSeconds represents the period of time the toleration (which must be
    	// of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,
    	// it is not set, which means tolerate the taint forever (do not evict). Zero and
    	// negative values will be treated as 0 (evict immediately) by the system.
    	// +optional
    	TolerationSeconds *int64
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"tolerationSeconds": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.",
    }
    
    func (Toleration) SwaggerDoc() map[string]string {
    	return map_Toleration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // TolerationSeconds represents the period of time the toleration (which must be
      // of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,
      // it is not set, which means tolerate the taint forever (do not evict). Zero and
      // negative values will be treated as 0 (evict immediately) by the system.
      // +optional
      optional int64 tolerationSeconds = 5;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// TolerationSeconds represents the period of time the toleration (which must be
    	// of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default,
    	// it is not set, which means tolerate the taint forever (do not evict). Zero and
    	// negative values will be treated as 0 (evict immediately) by the system.
    	// +optional
    	TolerationSeconds *int64 `json:"tolerationSeconds,omitempty" protobuf:"varint,5,opt,name=tolerationSeconds"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "description": "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.",
                "format": "int64",
                "type": "integer"
              },
              "value": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. src/net/http/h2_bundle.go

    	// field names or values. Required pseudo header fields may be
    	// missing, however. Use the MetaHeadersFrame.Pseudo accessor
    	// method access pseudo headers.
    	Fields []hpack.HeaderField
    
    	// Truncated is whether the max header list size limit was hit
    	// and Fields is incomplete. The hpack decoder state is still
    	// valid, however.
    	Truncated bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    	// What's going on: large 64-bit "unsigned" looks like
    	// negative number to hardware's integer-to-float
    	// conversion. However, because the mantissa is only
    	// 63 bits, we don't need the LSB, so instead we do an
    	// unsigned right shift (divide by two), convert, and
    	// double. However, before we do that, we need to be
    	// sure that we do not lose a "1" if that made the
    	// difference in the resulting rounding. Therefore, we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top