Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 164 for LOGICAL (0.11 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    	Not              *NestedValueValidation
    }
    
    // +k8s:deepcopy-gen=true
    
    // NestedValueValidation contains value validations, items and properties usable when nested
    // under a logical junctor, and catch all structs for generic and vendor extensions schema fields.
    type NestedValueValidation struct {
    	ValueValidation
    	ValidationExtensions
    
    	Items                *NestedValueValidation
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  2. pkg/kubelet/winstats/perfcounter_nodestats.go

    		SystemUUID:     systemUUID,
    		BootID:         bootId,
    	}, nil
    }
    
    // runtime.NumCPU() will only return the information for a single Processor Group.
    // Since a single group can only hold 64 logical processors, this
    // means when there are more they will be divided into multiple groups.
    // For the above reason, procGetActiveProcessorCount is used to get the
    // cpu count for all processor groups of the windows node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 18:37:21 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1/types.go

    type NetworkPolicyIngressRule struct {
    	// ports is a list of ports which should be made accessible on the pods selected for
    	// this rule. Each item in this list is combined using a logical OR. If this field is
    	// empty or missing, this rule matches all ports (traffic not restricted by port).
    	// If this field is present and contains at least one item, then this rule allows
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/discovery/v1/generated.proto

    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/discovery/v1";
    
    // Endpoint represents a single logical "backend" implementing a service.
    message Endpoint {
      // addresses of this endpoint. The contents of this field are interpreted
      // according to the corresponding EndpointSlice addressType field. Consumers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/discovery/v1beta1/generated.proto

    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/discovery/v1beta1";
    
    // Endpoint represents a single logical "backend" implementing a service.
    message Endpoint {
      // addresses of this endpoint. The contents of this field are interpreted
      // according to the corresponding EndpointSlice addressType field. Consumers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

        /**
         * Returns the project version.
         */
        @Nonnull
        String getVersion();
    
        /**
         * Returns the project packaging.
         * <p>
         * Note: unlike in legacy code, logical checks against string representing packaging (returned by this method)
         * are NOT recommended (code like {@code "pom".equals(project.getPackaging)} must be avoided). Use method
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:42:51 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/mips.s

    	//	}
    	MOVW	R1, M1
    	MOVW	R1, M1
    
    	//	LMOVW mreg ',' rreg
    	//	{
    	//		outcode(int($1), &$2, 0, &$4);
    	//	}
    	MOVW	M1, R1
    	MOVW	M1, R1
    
    
    	//
    	// integer operations
    	// logical instructions
    	// shift instructions
    	// unary instructions
    	//
    	//	LADDW rreg ',' sreg ',' rreg
    	//	{
    	//		outcode(int($1), &$2, int($4), &$6);
    	//	}
    	ADD	R1, R2, R3
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/discovery/v1beta1/types_swagger_doc_generated.go

    //
    // Those methods can be generated by using hack/update-codegen.sh
    
    // AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT.
    var map_Endpoint = map[string]string{
    	"":           "Endpoint represents a single logical \"backend\" implementing a service.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  9. src/archive/tar/common.go

    }
    
    // fileState tracks the number of logical (includes sparse holes) and physical
    // (actual in tar archive) bytes remaining for the current file.
    //
    // Invariant: logicalRemaining >= physicalRemaining
    type fileState interface {
    	logicalRemaining() int64
    	physicalRemaining() int64
    }
    
    // allowedFormats determines which formats can be used.
    // The value returned is the logical OR of multiple possible formats.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. src/runtime/traceback_system_test.go

    // by GOTRACEBACK=system (see traceback2) contains a complete,
    // parseable list of program counters for the running goroutine that
    // can be parsed and fed to runtime.CallersFrames to obtain accurate
    // information about the logical call stack, even in the presence of
    // inlining.
    //
    // The test is a distillation of the crash monitor in
    // golang.org/x/telemetry/crashmonitor.
    func TestTracebackSystem(t *testing.T) {
    	testenv.MustHaveExec(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top