Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 234 for IsSame (0.06 sec)

  1. src/runtime/memmove_loong64.s

    TEXT runtime·memmove<ABIInternal>(SB), NOSPLIT|NOFRAME, $0-24
    	BNE	R6, check
    	RET
    
    check:
    	SGTU	R4, R5, R7
    	BNE	R7, backward
    
    	ADDV	R4, R6, R9 // end pointer
    
    	// if the two pointers are not of same alignments, do byte copying
    	SUBVU	R5, R4, R7
    	AND	$7, R7
    	BNE	R7, out
    
    	// if less than 8 bytes, do byte copying
    	SGTU	$8, R6, R7
    	BNE	R7, out
    
    	// do one byte at a time until 8-aligned
    	AND	$7, R4, R8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. releasenotes/notes/48814.yaml

    kind: bug-fix
    area: traffic-management
    issues:
    - 48814
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 14:00:48 UTC 2024
    - 338 bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

         * in the dependencies of a given configuration.
         * For example, some other dependency, which does not have any exclude rules,
         * might pull in exactly the same transitive dependency.
         * To guarantee that the transitive dependency is excluded from the entire configuration
         * please use per-configuration exclude rules: {@link Configuration#getExcludeRules()}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. pilot/pkg/model/destination_rule.go

    			// at the same time added as a unique entry in the processedDestRules.
    			if bothWithoutSelector || (rule.GetWorkloadSelector() != nil && selectorsMatch) {
    				addRuleToProcessedDestRules = false
    			}
    
    			// Deep copy destination rule, to prevent mutate it later when merge with a new one.
    			// This can happen when there are more than one destination rule of same host in one namespace.
    			copied := mdr.rule.DeepCopy()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceentry/store.go

    		// if it already exist. This can happen if two Service Entries are created with same host name,
    		// resolution as DNS_ROUND_ROBIN and with same/different endpoints.
    		if instance.Service.Resolution == model.DNSRoundRobinLB &&
    			s.instancesByHostAndPort.Contains(hostPort) {
    			log.Debugf("skipping service %s from service entry %s with DnsRoundRobinLB. A service entry with the same host "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  6. tensorflow/c/tf_tensor.h

    // data type. On success, *status is set to TF_OK and the two tensors share the
    // same data buffer.
    //
    // This call requires that the `from` tensor and the given type and shape (dims
    // and num_dims) are "compatible" (i.e. they occupy the same number of bytes).
    // Specifically, given from_type_size = TF_DataTypeSize(TF_TensorType(from)):
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 16:40:30 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. src/runtime/mksizeclasses.go

    		allocsize := pageSize
    		for allocsize%size > allocsize/8 {
    			allocsize += pageSize
    		}
    		npages := allocsize / pageSize
    
    		// If the previous sizeclass chose the same
    		// allocation size and fit the same number of
    		// objects into the page, we might as well
    		// use just this size instead of having two
    		// different sizes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/troubleshooting/version_catalog_problems.adoc

    == Accessor name clash
    
    This error indicates that your version catalog contains (at least) two aliases which are mapped to the same accessor.
    Given an alias like `some.alias`, Gradle implements a mapping strategy to a _getter_ for type-checked accessors.
    In this case, it means that two aliases are in conflict because they result in the same getter being created.
    
    To fix this problem, you must choose different aliases.
    
    [[too_many_entries]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 13 21:49:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. src/internal/weak/pointer.go

    // after the object referenced by the pointer used to create a weak reference
    // is reclaimed.
    //
    // If multiple weak pointers are made to different offsets within same object
    // (for example, pointers to different fields of the same struct), those pointers
    // will not compare equal.
    // If a weak pointer is created from an object that becomes reachable again due
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:13:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. src/internal/types/testdata/check/decls2/decls2a.go

    func (x *T1) f /* ERROR "field and method with the same name f" */ () {}
    
    // Conflict between embedded field and method name,
    // with the embedded field being a basic type.
    type T1b struct {
    	int
    }
    
    func (T1b) int /* ERROR "field and method" */ () {}
    
    type T1c struct {
    	time.Time
    }
    
    func (T1c) Time /* ERROR "field and method with the same name Time" */ () int { return 0 }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top