Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 17 for identical (0.16 sec)

  1. doc/go1.17_spec.html

    	    the same array length.</li>
    
    	<li>Two slice types are identical if they have identical element types.</li>
    
    	<li>Two struct types are identical if they have the same sequence of fields,
    	    and if corresponding fields have the same names, and identical types,
    	    and identical tags.
    	    <a href="#Exported_identifiers">Non-exported</a> field names from different
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/transforms/optimize.cc

              is_depthwise);
        }
      }
      return false;
    }
    
    // Returns true if we can eliminate the GatherNdOp or ScatterNdOp. When the
    // value of `indices` are from 0 to n-1, the output tensor are identical to the
    // `params`.
    bool CanOptimizeIdentityGatherNdOrScatterNdOp(Value params,
                                                  DenseIntElementsAttr indices,
                                                  Type output_type) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. src/reflect/value.go

    	// Copy return values.
    	//
    	// This is somewhat simpler because both ABIs have an identical
    	// return value ABI (the types are identical). As a result, register
    	// results can simply be copied over. Stack-allocated values are laid
    	// out the same, but are at different offsets from the start of the frame
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. cmd/site-replication.go

    		return false
    	}
    	return true
    }
    
    // isIAMPolicyReplicated returns true if count of replicated IAM policies matches total
    // number of sites and IAM policies are identical.
    func isIAMPolicyReplicated(cntReplicated, total int, policies []*policy.Policy) bool {
    	if cntReplicated > 0 && cntReplicated != total {
    		return false
    	}
    	// check if policies match between sites
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  5. pkg/scheduler/schedule_one_test.go

    		},
    		{
    			name: "Should not make patch request if pod condition already exists and is identical and nominated node name is not set",
    			currentPodConditions: []v1.PodCondition{
    				{
    					Type:               "currentType",
    					Status:             "currentStatus",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  6. pkg/config/validation/validation.go

    					reportIneffective(matchHTTPRoutes[rIndex].RouteStr, prefixMatchA, prefixMatchB)
    				}
    			}
    		}
    	}
    }
    
    // NOTE: This method identical to analyzeUnreachableHTTPRules.
    func analyzeUnreachableTCPRules(routes []*networking.TCPRoute,
    	reportUnreachable func(ruleno, reason string), reportIneffective func(ruleno, matchno, dupno string),
    ) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  7. src/crypto/x509/verify_test.go

    		return true
    	}
    
    	// Every expected chain should match one (or more) returned chain. We tolerate multiple
    	// matches, as due to root store semantics it is plausible that (at least on the system
    	// verifiers) multiple identical (looking) chains may be returned when two roots with the
    	// same subject are present.
    	for _, expectedChain := range test.expectedChains {
    		var match bool
    		for _, chain := range chains {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    // shape, ranked shapes are compatible if their respective dimensions are
    // compatible, dynamic dimensions are compatible with any size, static
    // dimensions must be equal to be compatible) and identical element types.
    bool VerifyCompatibleShapesSameElementType(TypeRange lhs, TypeRange rhs) {
      if (lhs.size() != rhs.size() || lhs.size() != 1) return false;
      if (failed(mlir::verifyCompatibleShape(lhs[0], rhs[0]))) return false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  9. cmd/bucket-replication.go

    		"X-Amz-Object-Lock-Retain-Until-Date",
    		"X-Amz-Object-Lock-Legal-Hold",
    		"X-Amz-Website-Redirect-Location",
    		"X-Amz-Meta-",
    	}
    
    	// compare metadata on both maps to see if meta is identical
    	compareMeta1 := make(map[string]string)
    	for k, v := range oi1.UserDefined {
    		var found bool
    		for _, prefix := range compareKeys {
    			if !stringsHasPrefixFold(k, prefix) {
    				continue
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    	// from db and determine if it must prepare the stmt again by
    	// inspecting css.
    	cg   stmtConnGrabber
    	cgds *driverStmt
    
    	// parentStmt is set when a transaction-specific statement
    	// is requested from an identical statement prepared on the same
    	// conn. parentStmt is used to track the dependency of this statement
    	// on its originating ("parent") statement so that parentStmt may
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top