Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for identical (0.22 sec)

  1. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * as you might expect the <code>list</code> method will list the available
     * shares on this server.
     * </td></tr>
     * 
     * <tr><td width="20%"><code>smb1://myworkgroup/</code></td><td>
     * This syntactically is identical to the above example. However if
     * <code>myworkgroup</code> happends to be a workgroup(which is indeed
     * suggested by the name) the <code>list</code> method will return
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "items": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top