Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 185 for NOR (0.1 sec)

  1. platforms/documentation/docs/src/docs/userguide/optimizing-performance/project_properties.adoc

    ----
    ====
    
    This feature is useful when you don't have admin rights to a continuous integration server and you need to set property values that should not be easily visible.
    Since you cannot use the `-P` option in that scenario nor change the system-level configuration files, the correct strategy is to change the configuration of your continuous integration build job, adding an environment variable setting that matches an expected pattern.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 10:46:34 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/doc.go

    //
    // A call to Printf must have as many operands as there are "verbs" in
    // the format string, not too few:
    //
    //	fmt.Printf("%d") // fmt.Printf format reads arg 1, but call has 0 args
    //
    // nor too many:
    //
    //	fmt.Printf("%d", 1, 2) // fmt.Printf call needs 1 arg, but has 2 args
    //
    // Explicit argument indexes must be no greater than the number of
    // arguments:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. src/runtime/checkptr.go

    	if uintptr(ptr) >= -(size - 1) {
    		return true
    	}
    	end := add(ptr, size-1)
    
    	// TODO(mdempsky): Detect when [ptr, end] contains Go allocations,
    	// but neither ptr nor end point into one themselves.
    
    	return checkptrBase(ptr) != checkptrBase(end)
    }
    
    func checkptrArithmetic(p unsafe.Pointer, originals []unsafe.Pointer) {
    	if 0 < uintptr(p) && uintptr(p) < minLegalPointer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. cni/pkg/util/podutil.go

    	if !(namespace.GetLabels()[constants.DataplaneModeLabel] == constants.DataplaneModeAmbient ||
    		pod.GetLabels()[constants.DataplaneModeLabel] == constants.DataplaneModeAmbient) {
    		// Neither namespace nor pod has ambient mode enabled
    		return false
    	}
    	if podHasSidecar(pod) {
    		// Ztunnel and sidecar for a single pod is currently not supported; opt out.
    		return false
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 17:18:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. tests/integration/tests.mk

    # If $(INTEGRATION_TEST_KUBECONFIG) not specified, use $(KUBECONFIG).
    ifeq ($(_INTEGRATION_TEST_KUBECONFIG),)
        _INTEGRATION_TEST_KUBECONFIG = $(KUBECONFIG)
    endif
    
    # If neither $(INTEGRATION_TEST_KUBECONFIG) nor $(KUBECONFIG) specified, use default.
    ifeq ($(_INTEGRATION_TEST_KUBECONFIG),)
        _INTEGRATION_TEST_KUBECONFIG = ~/.kube/config
    endif
    
    _INTEGRATION_TEST_TOPOLOGY_FILE ?= $(INTEGRATION_TEST_TOPOLOGY_FILE)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 10 20:33:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    	// In VetxOnly mode, analyzers are only for their facts,
    	// so we can skip any analysis that neither produces facts
    	// nor depends on any analysis that produces facts.
    	//
    	// TODO(adonovan): fix: the command (and logic!) here are backwards.
    	// It should say "...nor is required by any...". (Issue 443099)
    	//
    	// Also build a map to hold working state and result.
    	type action struct {
    		once        sync.Once
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/dot_general.cc

      const DimensionVector& contracting_dimensions() const {
        return contracting_dimensions_;
      }
      // Out dimensions are any dimensions that are neither batch nor contracting
      // dimensions, hence will be propagated to output shape.
      const DimensionVector& out_dimensions() const { return out_dimensions_; }
    
      // Returns the total dimension size after flattening all contracting
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. src/os/zero_copy_linux.go

    	if err == nil {
    		err = rerr
    	}
    
    	return written, handled, wrapSyscallError("sendfile", err)
    }
    
    func (f *File) readFrom(r io.Reader) (written int64, handled bool, err error) {
    	// Neither copy_file_range(2) nor splice(2) supports destinations opened with
    	// O_APPEND, so don't bother to try zero-copy with these system calls.
    	//
    	// Visit https://man7.org/linux/man-pages/man2/copy_file_range.2.html#ERRORS and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. cmd/batch-rotate.go

    		return nil
    	}
    	sseKMS := crypto.S3KMS.IsEncrypted(objInfo.UserDefined)
    	sseS3 := crypto.S3.IsEncrypted(objInfo.UserDefined)
    	if !sseKMS && !sseS3 { // neither sse-s3 nor sse-kms disallowed
    		return errInvalidEncryptionParameters
    	}
    	if sseKMS && r.Encryption.Type == sses3 { // previously encrypted with sse-kms, now sse-s3 disallowed
    		return errInvalidEncryptionParameters
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. src/internal/runtime/atomic/atomic_mipsx.s

    	MOVW	$~3, R3
    	AND	R1, R3
    #ifdef GOARCH_mips
    	// Big endian.  ptr = ptr ^ 3
    	XOR	$3, R1
    #endif
    	AND	$3, R1, R4	// R4 = ((ptr & 3) * 8)
    	SLL	$3, R4
    	MOVW	$0xFF, R5
    	SLL	R4, R2
    	SLL	R4, R5
    	NOR	R0, R5
    	OR	R5, R2	// Shift val for aligned ptr. R2 = val << R4 | ^(0xFF << R4)
    	SYNC
    try_and8:
    	LL	(R3), R4	// R4 = *R3
    	AND	R2, R4
    	SC	R4, (R3)	// *R3 = R4
    	BEQ	R4, try_and8
    	SYNC
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 21:29:34 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top