Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 618 for band (0.04 sec)

  1. common-protos/k8s.io/api/certificates/v1beta1/generated.proto

      // +optional
      optional k8s.io.apimachinery.pkg.apis.meta.v1.ObjectMeta metadata = 1;
    
      // spec contains the certificate request, and is immutable after creation.
      // Only the request, signerName, expirationSeconds, and usages fields can be set on creation.
      // Other fields are derived by Kubernetes and cannot be modified by users.
      optional CertificateSigningRequestSpec spec = 2;
    
      // Derived information about the request.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_unix.go

    // single '\0' and the return value will indicate zero bytes sent.
    //
    // The Go function Recvmsg, if called with an empty p and a non-empty oob,
    // will read and ignore this additional '\0'.  If the message is received by
    // code that does not use Recvmsg, or that does not use Go at all, that code
    // will need to be written to expect and ignore the additional '\0'.
    //
    // If you need to send non-empty oob with p actually empty, and if the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/certificates/v1beta1/types.go

    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    	// spec contains the certificate request, and is immutable after creation.
    	// Only the request, signerName, expirationSeconds, and usages fields can be set on creation.
    	// Other fields are derived by Kubernetes and cannot be modified by users.
    	Spec CertificateSigningRequestSpec `json:"spec" protobuf:"bytes,2,opt,name=spec"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 10.4K bytes
    - Viewed (0)
  4. src/runtime/signal_windows.go

    	// system stack limits when we resume from exception.
    	// Store the resume SP and PC in alternate registers
    	// and return to sigresume on the g0 stack.
    	// sigresume makes no use of the stack at all,
    	// loading SP from RX and jumping to RY, being RX and RY two scratch registers.
    	// Note that blindly smashing RX and RY is only safe because we know sigpanic
    	// will not actually return to the original frame, so the registers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 20:32:29 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_downgrade_and_exclude.adoc

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[downgrading_versions_and_excluding_dependencies]]
    = Downgrading versions and excluding dependencies
    
    [[sec:enforcing_dependency_version]]
    == Overriding transitive dependency versions
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.proto

      map<string, PortList> services = 22;
    
      // A list of authorization policies applicable to this workload.
      // NOTE: this *only* includes Selector based policies. Namespace and global polices
      // are returned out of band.
      // Authorization policies are only valid for workloads with `addresses` rather than `hostname`.
      repeated string authorization_policies = 16;
    
      WorkloadStatus status = 17;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. pkg/registry/core/service/allocator/bitmap_test.go

    		} else {
    			allocated++
    		}
    	}
    
    	// there should be only one free value
    	if f := m.Free(); f != 1 {
    		t.Errorf("expect to get %d, but got %d", 1, f)
    	}
    	// check if the last free value is in the lower band
    	count := 0
    	for i := 0; i < dynamicOffset; i++ {
    		if !m.Has(i) {
    			count++
    		}
    	}
    	if count != 1 {
    		t.Errorf("expected one remaining free value, got %d", count)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 10 08:56:31 UTC 2022
    - 13.3K bytes
    - Viewed (0)
  8. cni/pkg/iptables/iptables.go

    	// This should be fine, as the host binaries are all we have to work with here anyway,
    	// as we are running within a privileged container - and we don't want to take the time to
    	// redetect for each pod anyway.
    	//
    	// Extreme corner case:
    	// If for some reason your host had both binaries, and you were injecting out-of-band
    	// iptables rules within a pod context into `legacy` tables, but your host context preferred
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  9. pkg/kubelet/images/image_gc_manager.go

    	// Currently gated by MaximumImageGCAge feature gate and Kubelet configuration.
    	// If 0, the feature is disabled.
    	MaxAge time.Duration
    }
    
    type realImageGCManager struct {
    	// Container runtime
    	runtime container.Runtime
    
    	// Records of images and their use. Indexed by ImageId.
    	// If RuntimeClassInImageCriAPI feature gate is enabled, imageRecords
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. pkg/controller/endpointslice/endpointslice_controller.go

    	// serviceLister is able to list/get services and is populated by the
    	// shared informer passed to NewController
    	serviceLister corelisters.ServiceLister
    	// servicesSynced returns true if the service shared informer has been synced at least once.
    	// Added as a member to the struct to allow injection for testing.
    	servicesSynced cache.InformerSynced
    
    	// podLister is able to list/get pods and is populated by the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top