Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/registry/ModelRegistry.java

         * <p>
         * This method effectively validates that all references bind (i.e. all rules are executable).
         * It should be called when the model registry is at some kind of logical checkpoint, in that it is reasonable
         * to expect that all rules have been discovered.
         * <p>
         * However, it does not prevent rules from being added after being called.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. src/runtime/trace/annotation.go

    }
    
    func fromContext(ctx context.Context) *Task {
    	if s, ok := ctx.Value(traceContextKey{}).(*Task); ok {
    		return s
    	}
    	return &bgTask
    }
    
    // Task is a data type for tracing a user-defined, logical operation.
    type Task struct {
    	id uint64
    	// TODO(hyangah): record parent id?
    }
    
    // End marks the end of the operation represented by the [Task].
    func (t *Task) End() {
    	userTaskEnd(t.id)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. test-site/activator.bat

      )
    )
    if "%_JAVACCMD%"=="" set _JAVACCMD=javac
    for /F %%j in ('"%_JAVACCMD%" -version 2^>^&1') do (
      if %%~j==javac set JAVACINSTALLED=1
    )
    
    rem BAT has no logical or, so we do it OLD SCHOOL! Oppan Redmond Style
    set JAVAOK=true
    if not defined JAVAINSTALLED set JAVAOK=false
    if not defined JAVACINSTALLED set JAVAOK=false
    
    if "%JAVAOK%"=="false" (
      echo.
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Mon Apr 20 08:41:37 UTC 2015
    - 7.2K bytes
    - Viewed (0)
Back to top